enju_grid 0.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +8 -0
  4. data/Rakefile +47 -0
  5. data/app/views/layouts/manifestations.html.erb +28 -0
  6. data/app/views/manifestations/_manifestation.html.erb +6 -0
  7. data/app/views/manifestations/index.html.erb +125 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/enju_grid/engine.rb +6 -0
  10. data/lib/enju_grid/version.rb +3 -0
  11. data/lib/enju_grid.rb +5 -0
  12. data/lib/tasks/enju_grid_tasks.rake +4 -0
  13. data/spec/dummy/README.rdoc +261 -0
  14. data/spec/dummy/Rakefile +7 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +8 -0
  18. data/spec/dummy/app/helpers/application_helper.rb +8 -0
  19. data/spec/dummy/app/models/ability.rb +201 -0
  20. data/spec/dummy/app/models/user.rb +9 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/app/views/page/403.html.erb +9 -0
  23. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  24. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  25. data/spec/dummy/app/views/page/404.html.erb +9 -0
  26. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  27. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  28. data/spec/dummy/app/views/page/_footer.html.erb +4 -0
  29. data/spec/dummy/app/views/page/_header.html.erb +2 -0
  30. data/spec/dummy/app/views/page/_include.html.erb +4 -0
  31. data/spec/dummy/app/views/page/_menu.html.erb +2 -0
  32. data/spec/dummy/app/views/page/_select_locale.html.erb +2 -0
  33. data/spec/dummy/config/application.rb +64 -0
  34. data/spec/dummy/config/application.yml +42 -0
  35. data/spec/dummy/config/boot.rb +10 -0
  36. data/spec/dummy/config/database.yml +25 -0
  37. data/spec/dummy/config/environment.rb +5 -0
  38. data/spec/dummy/config/environments/development.rb +37 -0
  39. data/spec/dummy/config/environments/production.rb +67 -0
  40. data/spec/dummy/config/environments/test.rb +38 -0
  41. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/spec/dummy/config/initializers/devise.rb +207 -0
  43. data/spec/dummy/config/initializers/inflections.rb +18 -0
  44. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  45. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  46. data/spec/dummy/config/initializers/session_store.rb +8 -0
  47. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/spec/dummy/config/locales/en.yml +5 -0
  49. data/spec/dummy/config/routes.rb +60 -0
  50. data/spec/dummy/config.ru +4 -0
  51. data/spec/dummy/db/migrate/001_create_agents.rb +50 -0
  52. data/spec/dummy/db/migrate/002_devise_create_users.rb +46 -0
  53. data/spec/dummy/db/migrate/005_create_manifestations.rb +43 -0
  54. data/spec/dummy/db/migrate/006_create_items.rb +21 -0
  55. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  56. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  57. data/spec/dummy/db/migrate/029_create_subjects.rb +27 -0
  58. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  59. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  60. data/spec/dummy/db/migrate/035_create_reserves.rb +26 -0
  61. data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
  62. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  63. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  64. data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
  65. data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
  66. data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
  67. data/spec/dummy/db/migrate/077_create_user_groups.rb +12 -0
  68. data/spec/dummy/db/migrate/080_create_library_groups.rb +17 -0
  69. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  70. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  71. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  72. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  73. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  74. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  75. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  76. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  77. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  78. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  79. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  80. data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
  81. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
  82. data/spec/dummy/db/migrate/142_create_classifications.rb +19 -0
  83. data/spec/dummy/db/migrate/144_create_classification_types.rb +16 -0
  84. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +16 -0
  85. data/spec/dummy/db/migrate/146_create_subject_types.rb +16 -0
  86. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  87. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  88. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +12 -0
  89. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +17 -0
  90. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +14 -0
  91. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  92. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  93. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  94. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  95. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
  96. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
  97. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  98. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  99. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  100. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  101. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +15 -0
  102. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +13 -0
  103. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  104. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +15 -0
  105. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  106. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  107. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +15 -0
  108. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +15 -0
  109. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  110. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +23 -0
  111. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  112. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  113. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  114. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  115. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +12 -0
  116. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  117. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  118. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  119. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  120. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  121. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
  122. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +9 -0
  123. data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
  124. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  125. data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +9 -0
  126. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  127. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  128. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  129. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +12 -0
  130. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
  131. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  132. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
  133. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  134. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +11 -0
  135. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  136. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
  137. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  138. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
  139. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  140. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +11 -0
  141. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  142. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  143. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  144. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  145. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  146. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  147. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  148. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  149. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +11 -0
  150. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  151. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  152. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  153. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  154. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  155. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  156. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  157. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  158. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  159. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  160. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
  161. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  162. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  163. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  164. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  165. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +14 -0
  166. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +5 -0
  167. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  168. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  169. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  170. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  171. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  172. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  173. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  174. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  175. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  176. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  177. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  178. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  179. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  180. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  181. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
  182. data/spec/dummy/db/migrate/20130303124821_add_retained_at_to_reserve.rb +5 -0
  183. data/spec/dummy/db/migrate/20130304015019_add_postponed_at_to_reserve.rb +5 -0
  184. data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +6 -0
  185. data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
  186. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
  187. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  188. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  189. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  190. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
  191. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
  192. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
  193. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
  194. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  195. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  196. data/spec/dummy/db/migrate/20130519065638_add_lock_version_to_reserve.rb +5 -0
  197. data/spec/dummy/db/migrate/20130519065837_add_lock_version_to_checkin.rb +5 -0
  198. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
  199. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
  200. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  201. data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
  202. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +18 -0
  203. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +18 -0
  204. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +18 -0
  205. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +18 -0
  206. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +14 -0
  207. data/spec/dummy/db/migrate/20140524142813_add_taggings_count_to_tag.rb +5 -0
  208. data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
  209. data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
  210. data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
  211. data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
  212. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
  213. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  214. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +18 -0
  215. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
  216. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  217. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  218. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
  219. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +18 -0
  220. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  221. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
  222. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
  223. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  224. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  225. data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
  226. data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
  227. data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
  228. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
  229. data/spec/dummy/db/migrate/20140812093836_add_share_bookmarks_to_profile.rb +5 -0
  230. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
  231. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +14 -0
  232. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +5 -0
  233. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +5 -0
  234. data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +5 -0
  235. data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +9 -0
  236. data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
  237. data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
  238. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +5 -0
  239. data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +5 -0
  240. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +15 -0
  241. data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +5 -0
  242. data/spec/dummy/db/migrate/20150923173139_add_url_to_classification.rb +5 -0
  243. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +13 -0
  244. data/spec/dummy/db/migrate/20150925092505_add_label_to_classification.rb +5 -0
  245. data/spec/dummy/db/schema.rb +1451 -0
  246. data/spec/dummy/public/404.html +26 -0
  247. data/spec/dummy/public/422.html +26 -0
  248. data/spec/dummy/public/500.html +25 -0
  249. data/spec/dummy/public/favicon.ico +0 -0
  250. data/spec/dummy/script/rails +6 -0
  251. data/spec/factories/agent.rb +13 -0
  252. data/spec/factories/agent_relationship.rb +6 -0
  253. data/spec/factories/agent_relationship_type.rb +5 -0
  254. data/spec/factories/agent_type.rb +5 -0
  255. data/spec/factories/basket.rb +5 -0
  256. data/spec/factories/carrier_type.rb +5 -0
  257. data/spec/factories/content_type.rb +5 -0
  258. data/spec/factories/country.rb +8 -0
  259. data/spec/factories/create.rb +6 -0
  260. data/spec/factories/create_types.rb +9 -0
  261. data/spec/factories/donate.rb +6 -0
  262. data/spec/factories/exemplify.rb +6 -0
  263. data/spec/factories/extent.rb +5 -0
  264. data/spec/factories/form_of_work.rb +5 -0
  265. data/spec/factories/frequency.rb +5 -0
  266. data/spec/factories/import_request.rb +5 -0
  267. data/spec/factories/item.rb +7 -0
  268. data/spec/factories/language.rb +8 -0
  269. data/spec/factories/library.rb +13 -0
  270. data/spec/factories/license.rb +5 -0
  271. data/spec/factories/manifestation.rb +6 -0
  272. data/spec/factories/manifestation_relationship.rb +6 -0
  273. data/spec/factories/manifestation_relationship_type.rb +5 -0
  274. data/spec/factories/medium_of_performance.rb +5 -0
  275. data/spec/factories/own.rb +6 -0
  276. data/spec/factories/produce.rb +6 -0
  277. data/spec/factories/produce_types.rb +9 -0
  278. data/spec/factories/profile.rb +10 -0
  279. data/spec/factories/realize.rb +6 -0
  280. data/spec/factories/realize_types.rb +9 -0
  281. data/spec/factories/series_has_manifestation.rb +6 -0
  282. data/spec/factories/series_statement.rb +5 -0
  283. data/spec/factories/series_statement_relationship.rb +8 -0
  284. data/spec/factories/user.rb +46 -0
  285. data/spec/fixtures/agent_relationship_types.yml +34 -0
  286. data/spec/fixtures/agent_relationships.yml +25 -0
  287. data/spec/fixtures/agent_types.yml +35 -0
  288. data/spec/fixtures/agents.yml +327 -0
  289. data/spec/fixtures/baskets.yml +80 -0
  290. data/spec/fixtures/bookstores.yml +107 -0
  291. data/spec/fixtures/budget_types.yml +29 -0
  292. data/spec/fixtures/carrier_types.yml +51 -0
  293. data/spec/fixtures/content_types.yml +36 -0
  294. data/spec/fixtures/countries.yml +2059 -0
  295. data/spec/fixtures/create_types.yml +47 -0
  296. data/spec/fixtures/creates.yml +64 -0
  297. data/spec/fixtures/donates.yml +31 -0
  298. data/spec/fixtures/exemplifies.yml +160 -0
  299. data/spec/fixtures/form_of_works.yml +39 -0
  300. data/spec/fixtures/frequencies.yml +85 -0
  301. data/spec/fixtures/identifier_types.yml +36 -0
  302. data/spec/fixtures/identifiers.yml +113 -0
  303. data/spec/fixtures/import_requests.yml +24 -0
  304. data/spec/fixtures/items.yml +283 -0
  305. data/spec/fixtures/languages.yml +1901 -0
  306. data/spec/fixtures/libraries.yml +102 -0
  307. data/spec/fixtures/library_groups.yml +31 -0
  308. data/spec/fixtures/licenses.yml +29 -0
  309. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  310. data/spec/fixtures/manifestation_relationships.yml +30 -0
  311. data/spec/fixtures/manifestations.yml +1881 -0
  312. data/spec/fixtures/medium_of_performances.yml +29 -0
  313. data/spec/fixtures/owns.yml +26 -0
  314. data/spec/fixtures/picture_files.yml +63 -0
  315. data/spec/fixtures/produce_types.yml +31 -0
  316. data/spec/fixtures/produces.yml +148 -0
  317. data/spec/fixtures/profiles.yml +98 -0
  318. data/spec/fixtures/realize_types.yml +39 -0
  319. data/spec/fixtures/realizes.yml +85 -0
  320. data/spec/fixtures/request_status_types.yml +63 -0
  321. data/spec/fixtures/request_types.yml +55 -0
  322. data/spec/fixtures/reserve_transitions.yml +88 -0
  323. data/spec/fixtures/resource_import_files.yml +43 -0
  324. data/spec/fixtures/resource_import_results.yml +29 -0
  325. data/spec/fixtures/roles.yml +21 -0
  326. data/spec/fixtures/series_statements.yml +56 -0
  327. data/spec/fixtures/shelves.yml +47 -0
  328. data/spec/fixtures/user_groups.yml +51 -0
  329. data/spec/fixtures/user_has_roles.yml +41 -0
  330. data/spec/fixtures/users.yml +51 -0
  331. data/spec/spec_helper.rb +51 -0
  332. data/spec/support/controller_macros.rb +46 -0
  333. data/spec/support/devise.rb +4 -0
  334. data/spec/views/manifestations/index.html.erb_spec.rb +34 -0
  335. data/spec/views/manifestations/show.html.erb_spec.rb +18 -0
  336. data/vendor/assets/stylesheets/images/ajax-loader.gif +0 -0
  337. data/vendor/assets/stylesheets/images/icons-18-black.png +0 -0
  338. data/vendor/assets/stylesheets/images/icons-18-white.png +0 -0
  339. data/vendor/assets/stylesheets/images/icons-36-black.png +0 -0
  340. data/vendor/assets/stylesheets/images/icons-36-white.png +0 -0
  341. metadata +873 -0
@@ -0,0 +1,29 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ one:
4
+ id: 1
5
+ name: Unaccompanied
6
+ display_name: Unaccompanied
7
+ note: MyText
8
+ position: 1
9
+
10
+ two:
11
+ id: 2
12
+ name: Accompanied
13
+ display_name: Accompanied
14
+ note: MyText
15
+ position: 2
16
+
17
+ # == Schema Information
18
+ #
19
+ # Table name: medium_of_performances
20
+ #
21
+ # id :integer not null, primary key
22
+ # name :string(255) not null
23
+ # display_name :text
24
+ # note :text
25
+ # position :integer
26
+ # created_at :datetime not null
27
+ # updated_at :datetime not null
28
+ #
29
+
@@ -0,0 +1,26 @@
1
+ ---
2
+ own_00001:
3
+ item_id: 1
4
+ updated_at: 2007-11-21 21:22:57.654360 +09:00
5
+ agent_id: 1
6
+ id: 1
7
+ created_at: 2007-11-21 21:22:57.654360 +09:00
8
+ own_00002:
9
+ item_id: 2
10
+ updated_at: 2007-11-21 21:22:13.685287 +09:00
11
+ agent_id: 2
12
+ id: 2
13
+ created_at: 2007-11-21 21:22:13.685287 +09:00
14
+
15
+ # == Schema Information
16
+ #
17
+ # Table name: owns
18
+ #
19
+ # id :integer not null, primary key
20
+ # agent_id :integer not null
21
+ # item_id :integer not null
22
+ # position :integer
23
+ # created_at :datetime not null
24
+ # updated_at :datetime not null
25
+ #
26
+
@@ -0,0 +1,63 @@
1
+ ---
2
+ picture_file_00001:
3
+ picture_content_type: image/x-png
4
+ updated_at: 2007-12-22 16:53:25.166728 +09:00
5
+ picture_file_size: 2353
6
+ id: 1
7
+ picture_file_name: test_00001.jpg
8
+ picture_attachable_type: Shelf
9
+ picture_attachable_id: 2
10
+ created_at: 2007-12-22 13:47:41.486807 +09:00
11
+ position: 1
12
+ picture_file_00002:
13
+ picture_content_type: image/pjpeg
14
+ updated_at: 2007-12-22 14:06:40.293209 +09:00
15
+ picture_file_size: 157914
16
+ id: 2
17
+ picture_file_name: test_00001_geometry.jpg
18
+ picture_attachable_type: Manifestation
19
+ picture_attachable_id: 1
20
+ created_at: 2007-12-22 14:06:10.870393 +09:00
21
+ position: 2
22
+ picture_file_00003:
23
+ picture_content_type: image/gif
24
+ updated_at: 2007-12-22 15:06:30.464930 +09:00
25
+ picture_file_size: 7028
26
+ id: 3
27
+ picture_file_name: overlay_spinner.gif
28
+ picture_attachable_type: Shelf
29
+ picture_attachable_id: 2
30
+ created_at: 2007-12-22 15:06:30.464930 +09:00
31
+ position: 3
32
+ picture_file_00004:
33
+ picture_content_type: image/gif
34
+ updated_at: 2007-12-22 15:06:30.464930 +09:00
35
+ picture_file_size: 7028
36
+ id: 4
37
+ picture_file_name: overlay_spinner_geometry.gif
38
+ picture_attachable_type: Agent
39
+ picture_attachable_id: 1
40
+ created_at: 2007-12-22 15:06:30.464930 +09:00
41
+ position: 4
42
+
43
+ # == Schema Information
44
+ #
45
+ # Table name: picture_files
46
+ #
47
+ # id :integer not null, primary key
48
+ # picture_attachable_id :integer
49
+ # picture_attachable_type :string(255)
50
+ # content_type :string(255)
51
+ # title :text
52
+ # thumbnail :string(255)
53
+ # position :integer
54
+ # created_at :datetime not null
55
+ # updated_at :datetime not null
56
+ # picture_file_name :string(255)
57
+ # picture_content_type :string(255)
58
+ # picture_file_size :integer
59
+ # picture_updated_at :datetime
60
+ # picture_meta :text
61
+ # picture_fingerprint :string(255)
62
+ #
63
+
@@ -0,0 +1,31 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ publisher:
4
+ name: publisher
5
+ display_name: "en: Publisher\r\n\
6
+ ja: 出版者"
7
+ note:
8
+ position: 1
9
+ id: 1
10
+
11
+ seller:
12
+ name: seller
13
+ display_name: "en: Seller\r\n\
14
+ ja: 販売者"
15
+ note:
16
+ position: 2
17
+ id: 2
18
+
19
+ # == Schema Information
20
+ #
21
+ # Table name: produce_types
22
+ #
23
+ # id :integer not null, primary key
24
+ # name :string(255)
25
+ # display_name :text
26
+ # note :text
27
+ # position :integer
28
+ # created_at :datetime not null
29
+ # updated_at :datetime not null
30
+ #
31
+
@@ -0,0 +1,148 @@
1
+ ---
2
+ produce_00001:
3
+ updated_at: 2008-01-11 23:28:19.277110 +09:00
4
+ manifestation_id: 1
5
+ agent_id: 1
6
+ id: 1
7
+ position: 1
8
+ created_at: 2008-01-11 23:28:19.277110 +09:00
9
+ produce_00002:
10
+ updated_at: 2008-01-11 23:28:57.068191 +09:00
11
+ manifestation_id: 2
12
+ agent_id: 2
13
+ id: 2
14
+ position: 1
15
+ created_at: 2008-01-11 23:28:57.068191 +09:00
16
+ produce_00003:
17
+ updated_at: 2008-01-11 23:32:03.701425 +09:00
18
+ manifestation_id: 3
19
+ agent_id: 3
20
+ id: 3
21
+ position: 1
22
+ created_at: 2008-01-11 23:32:03.701425 +09:00
23
+ produce_00004:
24
+ updated_at: 2008-01-11 02:34:20.183962 +09:00
25
+ manifestation_id: 4
26
+ agent_id: 1
27
+ id: 4
28
+ position: 1
29
+ created_at: 2008-01-11 02:34:20.183962 +09:00
30
+ produce_00005:
31
+ updated_at: 2008-01-11 02:34:32.352223 +09:00
32
+ manifestation_id: 5
33
+ agent_id: 2
34
+ id: 5
35
+ position: 2
36
+ created_at: 2008-01-11 02:34:32.352223 +09:00
37
+ produce_00006:
38
+ updated_at: 2008-01-11 23:35:36.467584 +09:00
39
+ manifestation_id: 1
40
+ agent_id: 3
41
+ id: 6
42
+ position: 2
43
+ created_at: 2008-01-11 23:35:36.467584 +09:00
44
+ produce_00007:
45
+ updated_at: 2008-01-11 02:40:24.038276 +09:00
46
+ manifestation_id: 2
47
+ agent_id: 1
48
+ id: 7
49
+ position: 1
50
+ created_at: 2008-01-11 02:40:24.038276 +09:00
51
+ produce_00008:
52
+ updated_at: 2008-01-11 02:40:40.316742 +09:00
53
+ manifestation_id: 3
54
+ agent_id: 2
55
+ id: 8
56
+ position: 2
57
+ created_at: 2008-01-11 02:40:40.316742 +09:00
58
+ produce_00009:
59
+ updated_at: 2008-01-11 02:40:55.664604 +09:00
60
+ manifestation_id: 4
61
+ agent_id: 3
62
+ id: 9
63
+ position: 3
64
+ created_at: 2008-01-11 02:40:55.664604 +09:00
65
+ produce_00010:
66
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
67
+ manifestation_id: 5
68
+ agent_id: 1
69
+ id: 10
70
+ position: 1
71
+ created_at: 2008-01-11 02:44:37.135721 +09:00
72
+ produce_00101:
73
+ updated_at: 2010-03-03 20:00:00.135721 +09:00
74
+ manifestation_id: 207
75
+ agent_id: 102
76
+ id: 101
77
+ position: 1
78
+ created_at: 2010-03-03 20:00:00.135721 +09:00
79
+ produce_00102:
80
+ updated_at: 2010-03-03 20:00:00.135721 +09:00
81
+ manifestation_id: 201
82
+ agent_id: 102
83
+ id: 102
84
+ position: 1
85
+ created_at: 2010-03-03 20:00:00.135721 +09:00
86
+ produce_00103:
87
+ updated_at: 2010-03-03 20:00:00.135721 +09:00
88
+ manifestation_id: 202
89
+ agent_id: 102
90
+ id: 103
91
+ position: 1
92
+ created_at: 2010-03-03 20:00:00.135721 +09:00
93
+ produce_00104:
94
+ updated_at: 2010-03-16 11:00:00.135721 +09:00
95
+ manifestation_id: 208
96
+ agent_id: 101
97
+ id: 104
98
+ position: 1
99
+ created_at: 2010-03-16 11:00:00.135721 +09:00
100
+ produce_00105:
101
+ updated_at: 2010-03-16 19:00:00.135721 +09:00
102
+ manifestation_id: 204
103
+ agent_id: 104
104
+ id: 105
105
+ position: 1
106
+ created_at: 2010-03-16 19:00:00.135721 +09:00
107
+ produce_00106:
108
+ updated_at: 2010-03-16 19:00:00.135721 +09:00
109
+ manifestation_id: 205
110
+ agent_id: 104
111
+ id: 106
112
+ position: 1
113
+ created_at: 2010-03-16 19:00:00.135721 +09:00
114
+ produce_00107:
115
+ updated_at: 2010-03-16 19:00:00.135721 +09:00
116
+ manifestation_id: 206
117
+ agent_id: 104
118
+ id: 107
119
+ position: 1
120
+ created_at: 2010-03-16 19:00:00.135721 +09:00
121
+ produce_00201:
122
+ updated_at: 2010-03-15 20:00:00.135721 +09:00
123
+ manifestation_id: 120
124
+ agent_id: 201
125
+ id: 201
126
+ position: 1
127
+ created_at: 2010-03-15 20:00:00.135721 +09:00
128
+ produce_00202:
129
+ updated_at: 2010-03-15 20:00:00.135721 +09:00
130
+ manifestation_id: 198
131
+ agent_id: 202
132
+ id: 202
133
+ position: 1
134
+ created_at: 2010-03-15 20:00:00.135721 +09:00
135
+
136
+ # == Schema Information
137
+ #
138
+ # Table name: produces
139
+ #
140
+ # id :integer not null, primary key
141
+ # agent_id :integer not null
142
+ # manifestation_id :integer not null
143
+ # position :integer
144
+ # created_at :datetime not null
145
+ # updated_at :datetime not null
146
+ # produce_type_id :integer
147
+ #
148
+
@@ -0,0 +1,98 @@
1
+ ---
2
+ admin:
3
+ updated_at: 2008-05-31 13:16:30.163731 +09:00
4
+ user_group_id: 2
5
+ id: 1
6
+ user_id: 1
7
+ note:
8
+ library_id: 2
9
+ created_at: 2007-11-19 16:58:32.111941 +09:00
10
+ required_role_id: 4
11
+ user_number: "00001"
12
+ locale: "ja"
13
+ librarian1:
14
+ updated_at: 2008-05-31 12:41:16.337474 +09:00
15
+ user_group_id: 1
16
+ id: 2
17
+ user_id: 2
18
+ note:
19
+ library_id: 1
20
+ created_at: 2007-11-19 16:58:33.172441 +09:00
21
+ required_role_id: 1
22
+ user_number: "00002"
23
+ locale: "ja"
24
+ user1:
25
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
26
+ user_group_id: 1
27
+ id: 3
28
+ user_id: 3
29
+ note:
30
+ library_id: 2
31
+ created_at: 2007-11-19 16:58:34.637413 +09:00
32
+ required_role_id: 3
33
+ user_number: "00003"
34
+ locale: "ja"
35
+ librarian2:
36
+ updated_at: 2008-05-31 12:42:23.340575 +09:00
37
+ user_group_id: 1
38
+ id: 4
39
+ user_id: 4
40
+ note:
41
+ library_id: 2
42
+ created_at: 2008-01-18 12:24:04.222344 +09:00
43
+ required_role_id: 1
44
+ user_number: "00004"
45
+ locale: "ja"
46
+ user2:
47
+ updated_at: 2008-05-31 12:42:44.711117 +09:00
48
+ user_group_id: 1
49
+ id: 5
50
+ user_id: 5
51
+ note:
52
+ library_id: 1
53
+ created_at: 2008-01-18 13:29:06.922728 +09:00
54
+ required_role_id: 2
55
+ # user_number: '00005'
56
+ locale: "ja"
57
+ user3:
58
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
59
+ user_group_id: 1
60
+ id: 6
61
+ user_id: 6
62
+ note:
63
+ library_id: 2
64
+ created_at: 2007-11-19 16:58:34.637413 +09:00
65
+ required_role_id: 3
66
+ user_number: "00006"
67
+ locale: "ja"
68
+ user4:
69
+ updated_at: 2008-05-31 13:02:25.101261 +09:00
70
+ user_group_id: 1
71
+ id: 7
72
+ user_id: 7
73
+ note:
74
+ library_id: 2
75
+ created_at: 2007-11-19 16:58:34.637413 +09:00
76
+ required_role_id: 3
77
+ user_number: "00007"
78
+ locale: "ja"
79
+
80
+ # == Schema Information
81
+ #
82
+ # Table name: profiles
83
+ #
84
+ # id :integer not null, primary key
85
+ # user_id :integer
86
+ # user_group_id :integer
87
+ # library_id :integer
88
+ # locale :string(255)
89
+ # user_number :string(255)
90
+ # full_name :text
91
+ # note :text
92
+ # keyword_list :text
93
+ # required_role_id :integer
94
+ # created_at :datetime not null
95
+ # updated_at :datetime not null
96
+ # checkout_icalendar_token :string(255)
97
+ # save_checkout_history :boolean default(FALSE), not null
98
+ #
@@ -0,0 +1,39 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ editor:
4
+ name: editor
5
+ display_name: "en: Editor\r\n\
6
+ ja: 編者"
7
+ note:
8
+ position: 1
9
+ id: 1
10
+
11
+ translator:
12
+ name: translator
13
+ display_name: "en: Translator\r\n\
14
+ ja: 訳者"
15
+ note:
16
+ position: 2
17
+ id: 2
18
+
19
+ illustrator:
20
+ name: illustrator
21
+ display_name: "en: Illustrator\r\n\
22
+ ja: 作画者"
23
+ note:
24
+ position: 3
25
+ id: 3
26
+
27
+ # == Schema Information
28
+ #
29
+ # Table name: realize_types
30
+ #
31
+ # id :integer not null, primary key
32
+ # name :string(255)
33
+ # display_name :text
34
+ # note :text
35
+ # position :integer
36
+ # created_at :datetime not null
37
+ # updated_at :datetime not null
38
+ #
39
+
@@ -0,0 +1,85 @@
1
+ ---
2
+ realize_00001:
3
+ updated_at: 2008-01-11 23:28:19.277110 +09:00
4
+ expression_id: 1
5
+ agent_id: 1
6
+ id: 1
7
+ position: 1
8
+ created_at: 2008-01-11 23:28:19.277110 +09:00
9
+ realize_00002:
10
+ updated_at: 2008-01-11 23:28:57.068191 +09:00
11
+ expression_id: 2
12
+ agent_id: 2
13
+ id: 2
14
+ position: 2
15
+ created_at: 2008-01-11 23:28:57.068191 +09:00
16
+ realize_00003:
17
+ updated_at: 2008-01-11 23:32:03.701425 +09:00
18
+ expression_id: 3
19
+ agent_id: 3
20
+ id: 3
21
+ position: 1
22
+ created_at: 2008-01-11 23:32:03.701425 +09:00
23
+ realize_00004:
24
+ updated_at: 2008-01-11 02:34:20.183962 +09:00
25
+ expression_id: 4
26
+ agent_id: 1
27
+ id: 4
28
+ position: 1
29
+ created_at: 2008-01-11 02:34:20.183962 +09:00
30
+ realize_00005:
31
+ updated_at: 2008-01-11 02:34:32.352223 +09:00
32
+ expression_id: 5
33
+ agent_id: 2
34
+ id: 5
35
+ position: 1
36
+ created_at: 2008-01-11 02:34:32.352223 +09:00
37
+ realize_00006:
38
+ updated_at: 2008-01-11 23:35:36.467584 +09:00
39
+ expression_id: 1
40
+ agent_id: 3
41
+ id: 6
42
+ position: 2
43
+ created_at: 2008-01-11 23:35:36.467584 +09:00
44
+ realize_00007:
45
+ updated_at: 2008-01-11 02:40:24.038276 +09:00
46
+ expression_id: 2
47
+ agent_id: 1
48
+ id: 7
49
+ position: 2
50
+ created_at: 2008-01-11 02:40:24.038276 +09:00
51
+ realize_00008:
52
+ updated_at: 2008-01-11 02:40:40.316742 +09:00
53
+ expression_id: 3
54
+ agent_id: 2
55
+ id: 8
56
+ position: 2
57
+ created_at: 2008-01-11 02:40:40.316742 +09:00
58
+ realize_00009:
59
+ updated_at: 2008-01-11 02:40:55.664604 +09:00
60
+ expression_id: 4
61
+ agent_id: 3
62
+ id: 9
63
+ position: 2
64
+ created_at: 2008-01-11 02:40:55.664604 +09:00
65
+ realize_00010:
66
+ updated_at: 2008-01-11 02:44:37.135721 +09:00
67
+ expression_id: 5
68
+ agent_id: 1
69
+ id: 10
70
+ position: 2
71
+ created_at: 2008-01-11 02:44:37.135721 +09:00
72
+
73
+ # == Schema Information
74
+ #
75
+ # Table name: realizes
76
+ #
77
+ # id :integer not null, primary key
78
+ # agent_id :integer not null
79
+ # expression_id :integer not null
80
+ # position :integer
81
+ # created_at :datetime not null
82
+ # updated_at :datetime not null
83
+ # realize_type_id :integer
84
+ #
85
+
@@ -0,0 +1,63 @@
1
+ ---
2
+ request_status_type_00001:
3
+ name: Available For Pickup
4
+ display_name: Available For Pickup
5
+ updated_at: 2008-02-13 18:38:38.553114 +09:00
6
+ id: 1
7
+ position: 1
8
+ note: ""
9
+ created_at: 2008-02-13 18:38:38.553114 +09:00
10
+ request_status_type_00002:
11
+ name: Cannot Fulfill Request
12
+ display_name: Cannot Fulfill Request
13
+ updated_at: 2008-02-13 18:38:51.815755 +09:00
14
+ id: 2
15
+ position: 2
16
+ note: ""
17
+ created_at: 2008-02-13 18:38:51.815755 +09:00
18
+ request_status_type_00003:
19
+ name: Expired
20
+ display_name: Expired
21
+ updated_at: 2008-02-13 18:39:00.878701 +09:00
22
+ id: 3
23
+ position: 3
24
+ note: ""
25
+ created_at: 2008-02-13 18:39:00.878701 +09:00
26
+ request_status_type_00004:
27
+ name: In Process
28
+ display_name: In Process
29
+ updated_at: 2008-02-13 18:39:10.010140 +09:00
30
+ id: 4
31
+ position: 4
32
+ note: ""
33
+ created_at: 2008-02-13 18:39:10.010140 +09:00
34
+ request_status_type_00005:
35
+ name: Need to Accept Conditions
36
+ display_name: Need to Accept Conditions
37
+ updated_at: 2008-02-13 18:39:19.068390 +09:00
38
+ id: 5
39
+ position: 5
40
+ note: ""
41
+ created_at: 2008-02-13 18:39:19.068390 +09:00
42
+ request_status_type_00006:
43
+ name: Requested Via ILL
44
+ display_name: Requested Via ILL
45
+ updated_at: 2008-02-13 18:39:29.382844 +09:00
46
+ id: 6
47
+ position: 6
48
+ note: ""
49
+ created_at: 2008-02-13 18:39:29.382844 +09:00
50
+
51
+ # == Schema Information
52
+ #
53
+ # Table name: request_status_types
54
+ #
55
+ # id :integer not null, primary key
56
+ # name :string(255) not null
57
+ # display_name :text
58
+ # note :text
59
+ # position :integer
60
+ # created_at :datetime
61
+ # updated_at :datetime
62
+ #
63
+
@@ -0,0 +1,55 @@
1
+ ---
2
+ request_type_00005:
3
+ name: Stack Retrieval
4
+ display_name: Stack Retrieval
5
+ updated_at: 2008-02-13 18:44:10.145739 +09:00
6
+ id: 5
7
+ position: 5
8
+ note: ""
9
+ created_at: 2008-02-13 18:44:10.145739 +09:00
10
+ request_type_00001:
11
+ name: Estimate
12
+ display_name: Estimate
13
+ updated_at: 2008-02-13 18:43:33.710810 +09:00
14
+ id: 1
15
+ position: 1
16
+ note: ""
17
+ created_at: 2008-02-13 18:43:33.710810 +09:00
18
+ request_type_00002:
19
+ name: Hold
20
+ display_name: Hold
21
+ updated_at: 2008-02-13 18:43:42.151759 +09:00
22
+ id: 2
23
+ position: 2
24
+ note: ""
25
+ created_at: 2008-02-13 18:43:42.151759 +09:00
26
+ request_type_00003:
27
+ name: Loan
28
+ display_name: Loan
29
+ updated_at: 2008-02-13 18:43:51.940315 +09:00
30
+ id: 3
31
+ position: 3
32
+ note: ""
33
+ created_at: 2008-02-13 18:43:51.940315 +09:00
34
+ request_type_00004:
35
+ name: Non-Returnable Copy
36
+ display_name: Non-Returnable Copy
37
+ updated_at: 2008-02-13 18:44:00.870893 +09:00
38
+ id: 4
39
+ position: 4
40
+ note: ""
41
+ created_at: 2008-02-13 18:44:00.870893 +09:00
42
+
43
+ # == Schema Information
44
+ #
45
+ # Table name: request_types
46
+ #
47
+ # id :integer not null, primary key
48
+ # name :string(255) not null
49
+ # display_name :text
50
+ # note :text
51
+ # position :integer
52
+ # created_at :datetime
53
+ # updated_at :datetime
54
+ #
55
+