enju_leaf 1.1.0.rc15 → 1.1.0.rc16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +2 -2
  3. data/app/assets/javascripts/mobile.js +1 -1
  4. data/app/assets/stylesheets/mobile.css +1 -1
  5. data/app/controllers/my_accounts_controller.rb +5 -5
  6. data/app/controllers/page_controller.rb +10 -2
  7. data/app/models/profile.rb +15 -5
  8. data/app/models/user_export_file.rb +1 -1
  9. data/app/models/user_import_file.rb +2 -2
  10. data/app/views/my_accounts/_edit_credential.html.erb +10 -0
  11. data/app/views/my_accounts/edit.html.erb +2 -4
  12. data/app/views/page/_header.html.erb +3 -3
  13. data/app/views/page/_menu.html.erb +3 -0
  14. data/app/views/page/configuration.html.erb +3 -0
  15. data/app/views/page/opensearch.xml.builder +1 -1
  16. data/app/views/page/system_information.html.erb +23 -0
  17. data/app/views/profiles/_edit_credential.html.erb +10 -0
  18. data/app/views/profiles/edit.html.erb +3 -4
  19. data/app/views/profiles/index.html.erb +4 -4
  20. data/app/views/profiles/new.html.erb +10 -0
  21. data/config/locales/translation_en.yml +3 -0
  22. data/config/locales/translation_ja.yml +3 -0
  23. data/config/routes.rb +1 -0
  24. data/db/migrate/20140524074813_create_user_import_file_transitions.rb +5 -1
  25. data/db/migrate/20140709113905_create_user_export_file_transitions.rb +5 -1
  26. data/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
  27. data/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
  28. data/lib/enju_leaf/controller.rb +4 -4
  29. data/lib/enju_leaf/helper.rb +7 -0
  30. data/lib/enju_leaf/version.rb +1 -1
  31. data/lib/enju_leaf.rb +0 -48
  32. data/lib/generators/enju_leaf/quick_install/quick_install_generator.rb +1 -1
  33. data/lib/generators/enju_leaf/setup/setup_generator.rb +9 -0
  34. data/lib/generators/enju_leaf/setup/templates/Procfile +1 -1
  35. data/lib/tasks/enju_leaf_tasks.rake +6 -0
  36. data/lib/tasks/profile.rb +1 -1
  37. data/spec/controllers/page_controller_spec.rb +15 -0
  38. data/spec/dummy/config/database.yml +23 -18
  39. data/spec/dummy/db/migrate/001_create_agents.rb +0 -2
  40. data/spec/dummy/db/migrate/005_create_manifestations.rb +1 -2
  41. data/spec/dummy/db/migrate/006_create_items.rb +0 -2
  42. data/spec/dummy/db/migrate/035_create_reserves.rb +0 -1
  43. data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
  44. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
  45. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +0 -1
  46. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +0 -3
  47. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +0 -1
  48. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +0 -1
  49. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +0 -1
  50. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +0 -4
  51. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +0 -1
  52. data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +5 -1
  53. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +5 -1
  54. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +5 -1
  55. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +5 -1
  56. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +5 -1
  57. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +5 -1
  58. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +5 -1
  59. data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +5 -1
  60. data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +5 -1
  61. data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +5 -1
  62. data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +5 -1
  63. data/spec/dummy/db/migrate/20140529014410_create_item_transitions.rb +5 -1
  64. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +5 -1
  65. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  66. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  67. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  68. data/spec/dummy/db/migrate/{20140810061942_add_user_id_to_stat.rb → 20140810061942_add_user_id_to_user_checkout_stat.rb} +1 -1
  69. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
  70. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +5 -0
  71. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +5 -0
  72. data/spec/dummy/db/migrate/20141014065831_add_shelf_id_to_checkout.rb +6 -0
  73. data/spec/dummy/db/schema.rb +674 -663
  74. data/spec/fixtures/agent_import_results.yml +0 -3
  75. data/spec/fixtures/agents.yml +0 -12
  76. data/spec/fixtures/checked_items.yml +4 -4
  77. data/spec/fixtures/checkouts.yml +12 -12
  78. data/spec/fixtures/manifestation_checkout_stats.yml +0 -3
  79. data/spec/fixtures/manifestation_reserve_stats.yml +0 -3
  80. data/spec/fixtures/manifestations.yml +114 -114
  81. data/spec/fixtures/reserves.yml +17 -17
  82. data/spec/fixtures/user_checkout_stats.yml +0 -3
  83. data/spec/fixtures/user_reserve_stats.yml +0 -3
  84. data/spec/fixtures/users.yml +1 -1
  85. data/spec/spec_helper.rb +2 -0
  86. data/vendor/assets/javascripts/{jquery.mobile-1.4.3.js → jquery.mobile-1.4.4.js} +191 -116
  87. data/vendor/assets/stylesheets/{jquery.mobile-1.4.3.css → jquery.mobile-1.4.4.css} +10 -2
  88. metadata +79 -264
  89. data/app/models/local_patron.rb +0 -27
  90. data/lib/enju_leaf/bookmark_url.rb +0 -45
  91. data/spec/dummy/db/development.sqlite3 +0 -0
  92. data/spec/dummy/db/migrate/20111020063828_remove_dsbl_from_library_group.rb +0 -11
  93. data/spec/dummy/db/migrate/20130303104849_add_state_index_to_reserve.rb +0 -5
  94. data/spec/dummy/db/test.sqlite3 +0 -0
  95. data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_delete_file.tsv +0 -4
  96. data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_import_file_sample.tsv +0 -7
  97. data/spec/dummy/private/system/user_import_files/user_imports/980/190/963/original/user_update_file.tsv +0 -4
  98. data/spec/dummy/private/system/user_import_files/user_imports/980/190/964/original/user_delete_file.tsv +0 -4
  99. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-3963-1s1td26.txt +0 -8
  100. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140815-69229-i0rcty.txt +0 -8
  101. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140816-21120-1w731r8.txt +0 -8
  102. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-59118-14fm7df.txt +0 -8
  103. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-59989-vmovk5.txt +0 -8
  104. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75062-kpzjyb.txt +0 -8
  105. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75773-1lhgyub.txt +0 -8
  106. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140818-75927-j8wteq.txt +0 -8
  107. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140820-9103-mfcugd.txt +0 -8
  108. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140822-13160-wz7o56.txt +0 -8
  109. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140824-39018-fw3fdj.txt +0 -8
  110. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140828-69043-tbwoqv.txt +0 -8
  111. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-22971-1jmyywh.txt +0 -8
  112. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-23153-j4x3ru.txt +0 -8
  113. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140915-67244-1uo8pkb.txt +0 -8
  114. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80298-14af9pc.txt +0 -8
  115. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80450-1qhv5cf.txt +0 -8
  116. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80529-1hahtrn.txt +0 -8
  117. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-80725-tqmhnv.txt +0 -8
  118. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81018-wl1hgj.txt +0 -8
  119. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81246-wll5s.txt +0 -8
  120. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-81371-8uz50r.txt +0 -8
  121. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140922-84122-1u96hw6.txt +0 -8
  122. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20140926-7716-bbs13d.txt +0 -8
  123. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57000-yu6qop.txt +0 -8
  124. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57206-2j8sg2.txt +0 -8
  125. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57328-p8lryh.txt +0 -8
  126. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141002-57609-1j3dd67.txt +0 -8
  127. data/spec/dummy/public/system/user_export_files/user_exports/000/000/003/original/user_export_file_20141003-78097-dw5i2k.txt +0 -8
  128. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-28652-1dj3e98.txt +0 -148
  129. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140711-29117-13jb6ol.txt +0 -148
  130. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140721-65743-1tnagd4.txt +0 -8
  131. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-3963-1kk8o87.txt +0 -8
  132. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140815-69229-188nwub.txt +0 -8
  133. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140816-21120-twzfb6.txt +0 -8
  134. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-59118-1lhrtka.txt +0 -8
  135. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-59989-1prz707.txt +0 -8
  136. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75062-10bxh78.txt +0 -8
  137. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75773-ekgeho.txt +0 -8
  138. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140818-75927-uay97k.txt +0 -8
  139. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140820-9103-tuuox.txt +0 -8
  140. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140822-13160-17b5dbh.txt +0 -8
  141. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140824-39018-o12xa4.txt +0 -8
  142. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-22971-d4ul8o.txt +0 -8
  143. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-23153-1qmzqi6.txt +0 -8
  144. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140915-67244-1ps1qsi.txt +0 -8
  145. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80298-121rh7h.txt +0 -8
  146. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80450-wdetsg.txt +0 -8
  147. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80529-lmet02.txt +0 -8
  148. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-80725-1l6tliy.txt +0 -8
  149. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81018-azm74f.txt +0 -8
  150. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81246-1rjpksn.txt +0 -8
  151. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-81371-aroaof.txt +0 -8
  152. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140922-84122-7d6kls.txt +0 -8
  153. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20140926-7716-1nap0l.txt +0 -8
  154. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57000-3nb1bj.txt +0 -8
  155. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57206-197ca0p.txt +0 -8
  156. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57328-1kra77f.txt +0 -8
  157. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141002-57609-iymry0.txt +0 -8
  158. data/spec/dummy/public/system/user_export_files/user_exports/000/000/004/original/user_export_file_20141003-78097-1ocngi2.txt +0 -8
  159. data/spec/dummy/solr/conf/admin-extra.html +0 -31
  160. data/spec/dummy/solr/conf/elevate.xml +0 -36
  161. data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +0 -246
  162. data/spec/dummy/solr/conf/protwords.txt +0 -21
  163. data/spec/dummy/solr/conf/schema.xml +0 -255
  164. data/spec/dummy/solr/conf/scripts.conf +0 -24
  165. data/spec/dummy/solr/conf/solrconfig.xml +0 -667
  166. data/spec/dummy/solr/conf/spellings.txt +0 -2
  167. data/spec/dummy/solr/conf/stopwords.txt +0 -58
  168. data/spec/dummy/solr/conf/synonyms.txt +0 -31
  169. data/spec/dummy/solr/default/data/index/_7b.fdt +0 -0
  170. data/spec/dummy/solr/default/data/index/_7b.fdx +0 -0
  171. data/spec/dummy/solr/default/data/index/_7b.fnm +0 -0
  172. data/spec/dummy/solr/default/data/index/_7b.nvd +0 -0
  173. data/spec/dummy/solr/default/data/index/_7b.nvm +0 -0
  174. data/spec/dummy/solr/default/data/index/_7b.si +0 -0
  175. data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.doc +0 -0
  176. data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.pos +0 -0
  177. data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.tim +0 -0
  178. data/spec/dummy/solr/default/data/index/_7b_Lucene41_0.tip +0 -0
  179. data/spec/dummy/solr/default/data/index/segments.gen +0 -0
  180. data/spec/dummy/solr/default/data/index/segments_ev +0 -0
  181. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000524 +0 -0
  182. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000525 +0 -0
  183. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000526 +0 -0
  184. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000527 +0 -0
  185. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000528 +0 -0
  186. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000529 +0 -0
  187. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000530 +0 -0
  188. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000531 +0 -0
  189. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000532 +0 -0
  190. data/spec/dummy/solr/default/data/tlog/tlog.0000000000000000533 +0 -0
  191. data/spec/dummy/solr/development/data/index/segments.gen +0 -0
  192. data/spec/dummy/solr/development/data/index/segments_1 +0 -0
  193. data/spec/dummy/solr/solr.xml +0 -8
  194. data/spec/dummy/solr/test/data/index/segments.gen +0 -0
  195. data/spec/dummy/solr/test/data/index/segments_1 +0 -0
  196. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  197. data/spec/dummy/tmp/cache/ACB/B20/manifestation_search_total +0 -0
  198. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  199. data/spec/dummy/tmp/cache/assets/test/sprockets/154f7b83f2da0e86effbe25f32135177 +0 -0
  200. data/spec/dummy/tmp/cache/assets/test/sprockets/1b984bdbd3204a51a82d0e01a1569e2d +0 -0
  201. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  202. data/spec/dummy/tmp/cache/assets/test/sprockets/3054c50144654f9c7e57bb0639a276e9 +0 -0
  203. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  204. data/spec/dummy/tmp/cache/assets/test/sprockets/3bd7a263237ba366f64d938fe5303757 +0 -0
  205. data/spec/dummy/tmp/cache/assets/test/sprockets/62899096da1a3e67660f3b88068be8c9 +0 -0
  206. data/spec/dummy/tmp/cache/assets/test/sprockets/65b2e4f67eab21b30217e29075f433b2 +0 -0
  207. data/spec/dummy/tmp/cache/assets/test/sprockets/87d24a3f43f175d4d17babe9203c79a7 +0 -0
  208. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  209. data/spec/dummy/tmp/cache/assets/test/sprockets/d38d8658b30de1d068603968227680d4 +0 -0
  210. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  211. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  212. data/spec/dummy/tmp/cache/stdout +0 -1653
  213. data/spec/dummy/tmp/pids/redis-test.pid +0 -1
@@ -207,7 +207,7 @@ manifestation_00101:
207
207
  id: 101
208
208
  height:
209
209
  width:
210
- created_at: 2010-02-21 15:47:09 UTC
210
+ created_at: 2010-02-21 15:47:09 +9:00
211
211
  manifestation_00102:
212
212
  carrier_type_id: 1
213
213
  language_id: 1
@@ -221,7 +221,7 @@ manifestation_00102:
221
221
  id: 102
222
222
  height:
223
223
  width:
224
- created_at: 2010-02-21 14:57:08 UTC
224
+ created_at: 2010-02-21 14:57:08 +9:00
225
225
  manifestation_00103:
226
226
  carrier_type_id: 1
227
227
  language_id: 1
@@ -235,7 +235,7 @@ manifestation_00103:
235
235
  id: 103
236
236
  height:
237
237
  width:
238
- created_at: 2010-02-21 10:51:48 UTC
238
+ created_at: 2010-02-21 10:51:48 +9:00
239
239
  manifestation_00104:
240
240
  carrier_type_id: 1
241
241
  language_id: 1
@@ -249,7 +249,7 @@ manifestation_00104:
249
249
  id: 104
250
250
  height:
251
251
  width:
252
- created_at: 2010-02-21 10:51:33 UTC
252
+ created_at: 2010-02-21 10:51:33 +9:00
253
253
  manifestation_00105:
254
254
  carrier_type_id: 1
255
255
  language_id: 1
@@ -263,7 +263,7 @@ manifestation_00105:
263
263
  id: 105
264
264
  height:
265
265
  width:
266
- created_at: 2010-02-21 10:48:14 UTC
266
+ created_at: 2010-02-21 10:48:14 +9:00
267
267
  manifestation_00106:
268
268
  carrier_type_id: 1
269
269
  language_id: 1
@@ -277,7 +277,7 @@ manifestation_00106:
277
277
  id: 106
278
278
  height:
279
279
  width:
280
- created_at: 2010-02-21 10:45:48 UTC
280
+ created_at: 2010-02-21 10:45:48 +9:00
281
281
  manifestation_00107:
282
282
  carrier_type_id: 1
283
283
  language_id: 1
@@ -291,7 +291,7 @@ manifestation_00107:
291
291
  id: 107
292
292
  height:
293
293
  width:
294
- created_at: 2010-02-21 09:59:01 UTC
294
+ created_at: 2010-02-21 09:59:01 +9:00
295
295
  manifestation_00108:
296
296
  carrier_type_id: 1
297
297
  language_id: 1
@@ -305,7 +305,7 @@ manifestation_00108:
305
305
  id: 108
306
306
  height:
307
307
  width:
308
- created_at: 2010-02-21 08:13:17 UTC
308
+ created_at: 2010-02-21 08:13:17 +9:00
309
309
  manifestation_00109:
310
310
  carrier_type_id: 1
311
311
  language_id: 1
@@ -319,7 +319,7 @@ manifestation_00109:
319
319
  id: 109
320
320
  height:
321
321
  width:
322
- created_at: 2010-02-20 17:26:08 UTC
322
+ created_at: 2010-02-20 17:26:08 +9:00
323
323
  manifestation_00110:
324
324
  carrier_type_id: 1
325
325
  language_id: 1
@@ -333,7 +333,7 @@ manifestation_00110:
333
333
  id: 110
334
334
  height:
335
335
  width:
336
- created_at: 2010-02-19 13:09:56 UTC
336
+ created_at: 2010-02-19 13:09:56 +9:00
337
337
  manifestation_00111:
338
338
  carrier_type_id: 1
339
339
  language_id: 1
@@ -347,7 +347,7 @@ manifestation_00111:
347
347
  id: 111
348
348
  height:
349
349
  width:
350
- created_at: 2010-02-19 13:07:28 UTC
350
+ created_at: 2010-02-19 13:07:28 +9:00
351
351
  manifestation_00112:
352
352
  carrier_type_id: 1
353
353
  language_id: 1
@@ -361,7 +361,7 @@ manifestation_00112:
361
361
  id: 112
362
362
  height:
363
363
  width:
364
- created_at: 2010-02-19 13:06:51 UTC
364
+ created_at: 2010-02-19 13:06:51 +9:00
365
365
  manifestation_00113:
366
366
  carrier_type_id: 1
367
367
  language_id: 1
@@ -375,7 +375,7 @@ manifestation_00113:
375
375
  id: 113
376
376
  height:
377
377
  width:
378
- created_at: 2010-02-19 11:02:27 UTC
378
+ created_at: 2010-02-19 11:02:27 +9:00
379
379
  manifestation_00114:
380
380
  carrier_type_id: 1
381
381
  language_id: 1
@@ -389,7 +389,7 @@ manifestation_00114:
389
389
  id: 114
390
390
  height:
391
391
  width:
392
- created_at: 2010-02-19 05:46:08 UTC
392
+ created_at: 2010-02-19 05:46:08 +9:00
393
393
  manifestation_00115:
394
394
  carrier_type_id: 1
395
395
  language_id: 1
@@ -403,7 +403,7 @@ manifestation_00115:
403
403
  id: 115
404
404
  height:
405
405
  width:
406
- created_at: 2010-02-19 05:40:17 UTC
406
+ created_at: 2010-02-19 05:40:17 +9:00
407
407
  manifestation_00116:
408
408
  carrier_type_id: 1
409
409
  language_id: 1
@@ -417,7 +417,7 @@ manifestation_00116:
417
417
  id: 116
418
418
  height:
419
419
  width:
420
- created_at: 2010-02-19 05:39:01 UTC
420
+ created_at: 2010-02-19 05:39:01 +9:00
421
421
  manifestation_00117:
422
422
  carrier_type_id: 1
423
423
  language_id: 1
@@ -431,7 +431,7 @@ manifestation_00117:
431
431
  id: 117
432
432
  height:
433
433
  width:
434
- created_at: 2010-02-18 10:23:27 UTC
434
+ created_at: 2010-02-18 10:23:27 +9:00
435
435
  manifestation_00118:
436
436
  carrier_type_id: 1
437
437
  language_id: 1
@@ -445,7 +445,7 @@ manifestation_00118:
445
445
  id: 118
446
446
  height:
447
447
  width:
448
- created_at: 2010-02-17 01:12:08 UTC
448
+ created_at: 2010-02-17 01:12:08 +9:00
449
449
  manifestation_00119:
450
450
  carrier_type_id: 1
451
451
  language_id: 1
@@ -459,7 +459,7 @@ manifestation_00119:
459
459
  id: 119
460
460
  height:
461
461
  width:
462
- created_at: 2010-02-16 04:30:37 UTC
462
+ created_at: 2010-02-16 04:30:37 +9:00
463
463
  manifestation_00120:
464
464
  carrier_type_id: 1
465
465
  language_id: 1
@@ -473,7 +473,7 @@ manifestation_00120:
473
473
  id: 120
474
474
  height:
475
475
  width:
476
- created_at: 2010-02-16 04:29:59 UTC
476
+ created_at: 2010-02-16 04:29:59 +9:00
477
477
  manifestation_00121:
478
478
  carrier_type_id: 1
479
479
  language_id: 1
@@ -487,7 +487,7 @@ manifestation_00121:
487
487
  id: 121
488
488
  height:
489
489
  width:
490
- created_at: 2010-01-30 06:22:35 UTC
490
+ created_at: 2010-01-30 06:22:35 +9:00
491
491
  manifestation_00122:
492
492
  carrier_type_id: 1
493
493
  language_id: 1
@@ -501,7 +501,7 @@ manifestation_00122:
501
501
  id: 122
502
502
  height:
503
503
  width:
504
- created_at: 2010-01-30 06:17:32 UTC
504
+ created_at: 2010-01-30 06:17:32 +9:00
505
505
  manifestation_00123:
506
506
  carrier_type_id: 1
507
507
  language_id: 1
@@ -515,7 +515,7 @@ manifestation_00123:
515
515
  id: 123
516
516
  height:
517
517
  width:
518
- created_at: 2009-10-25 13:20:34 UTC
518
+ created_at: 2009-10-25 13:20:34 +9:00
519
519
  manifestation_00124:
520
520
  carrier_type_id: 1
521
521
  language_id: 1
@@ -529,7 +529,7 @@ manifestation_00124:
529
529
  id: 124
530
530
  height:
531
531
  width:
532
- created_at: 2009-10-20 13:46:44 UTC
532
+ created_at: 2009-10-20 13:46:44 +9:00
533
533
  manifestation_00125:
534
534
  carrier_type_id: 1
535
535
  language_id: 1
@@ -543,7 +543,7 @@ manifestation_00125:
543
543
  id: 125
544
544
  height:
545
545
  width:
546
- created_at: 2009-10-16 05:16:48 UTC
546
+ created_at: 2009-10-16 05:16:48 +9:00
547
547
  manifestation_00126:
548
548
  carrier_type_id: 1
549
549
  language_id: 1
@@ -557,7 +557,7 @@ manifestation_00126:
557
557
  id: 126
558
558
  height:
559
559
  width:
560
- created_at: 2009-06-29 12:44:11 UTC
560
+ created_at: 2009-06-29 12:44:11 +9:00
561
561
  manifestation_00127:
562
562
  carrier_type_id: 1
563
563
  language_id: 1
@@ -571,7 +571,7 @@ manifestation_00127:
571
571
  id: 127
572
572
  height:
573
573
  width:
574
- created_at: 2009-06-19 13:45:14 UTC
574
+ created_at: 2009-06-19 13:45:14 +9:00
575
575
  manifestation_00128:
576
576
  carrier_type_id: 1
577
577
  language_id: 1
@@ -585,7 +585,7 @@ manifestation_00128:
585
585
  id: 128
586
586
  height:
587
587
  width:
588
- created_at: 2009-06-19 13:27:46 UTC
588
+ created_at: 2009-06-19 13:27:46 +9:00
589
589
  manifestation_00129:
590
590
  carrier_type_id: 1
591
591
  language_id: 1
@@ -599,7 +599,7 @@ manifestation_00129:
599
599
  id: 129
600
600
  height:
601
601
  width:
602
- created_at: 2009-06-19 12:16:23 UTC
602
+ created_at: 2009-06-19 12:16:23 +9:00
603
603
  manifestation_00130:
604
604
  carrier_type_id: 1
605
605
  language_id: 1
@@ -613,7 +613,7 @@ manifestation_00130:
613
613
  id: 130
614
614
  height:
615
615
  width:
616
- created_at: 2009-06-19 12:03:29 UTC
616
+ created_at: 2009-06-19 12:03:29 +9:00
617
617
  manifestation_00131:
618
618
  carrier_type_id: 1
619
619
  language_id: 1
@@ -627,7 +627,7 @@ manifestation_00131:
627
627
  id: 131
628
628
  height:
629
629
  width:
630
- created_at: 2009-06-19 12:02:48 UTC
630
+ created_at: 2009-06-19 12:02:48 +9:00
631
631
  manifestation_00132:
632
632
  carrier_type_id: 1
633
633
  language_id: 1
@@ -641,7 +641,7 @@ manifestation_00132:
641
641
  id: 132
642
642
  height:
643
643
  width:
644
- created_at: 2009-06-19 11:42:02 UTC
644
+ created_at: 2009-06-19 11:42:02 +9:00
645
645
  manifestation_00133:
646
646
  carrier_type_id: 1
647
647
  language_id: 1
@@ -655,7 +655,7 @@ manifestation_00133:
655
655
  id: 133
656
656
  height:
657
657
  width:
658
- created_at: 2009-06-19 11:18:01 UTC
658
+ created_at: 2009-06-19 11:18:01 +9:00
659
659
  manifestation_00134:
660
660
  carrier_type_id: 1
661
661
  language_id: 1
@@ -669,7 +669,7 @@ manifestation_00134:
669
669
  id: 134
670
670
  height:
671
671
  width:
672
- created_at: 2009-06-19 11:06:07 UTC
672
+ created_at: 2009-06-19 11:06:07 +9:00
673
673
  manifestation_00135:
674
674
  carrier_type_id: 1
675
675
  language_id: 1
@@ -683,7 +683,7 @@ manifestation_00135:
683
683
  id: 135
684
684
  height:
685
685
  width:
686
- created_at: 2009-06-19 10:54:21 UTC
686
+ created_at: 2009-06-19 10:54:21 +9:00
687
687
  manifestation_00136:
688
688
  carrier_type_id: 1
689
689
  language_id: 1
@@ -697,7 +697,7 @@ manifestation_00136:
697
697
  id: 136
698
698
  height:
699
699
  width:
700
- created_at: 2009-06-19 10:46:46 UTC
700
+ created_at: 2009-06-19 10:46:46 +9:00
701
701
  manifestation_00137:
702
702
  carrier_type_id: 1
703
703
  language_id: 1
@@ -711,7 +711,7 @@ manifestation_00137:
711
711
  id: 137
712
712
  height:
713
713
  width:
714
- created_at: 2009-06-19 10:18:59 UTC
714
+ created_at: 2009-06-19 10:18:59 +9:00
715
715
  manifestation_00138:
716
716
  carrier_type_id: 1
717
717
  language_id: 1
@@ -725,7 +725,7 @@ manifestation_00138:
725
725
  id: 138
726
726
  height:
727
727
  width:
728
- created_at: 2009-06-19 09:19:08 UTC
728
+ created_at: 2009-06-19 09:19:08 +9:00
729
729
  manifestation_00139:
730
730
  carrier_type_id: 1
731
731
  language_id: 1
@@ -739,7 +739,7 @@ manifestation_00139:
739
739
  id: 139
740
740
  height:
741
741
  width:
742
- created_at: 2009-06-19 09:19:02 UTC
742
+ created_at: 2009-06-19 09:19:02 +9:00
743
743
  manifestation_00140:
744
744
  carrier_type_id: 1
745
745
  language_id: 1
@@ -753,7 +753,7 @@ manifestation_00140:
753
753
  id: 140
754
754
  height:
755
755
  width:
756
- created_at: 2009-06-19 09:19:01 UTC
756
+ created_at: 2009-06-19 09:19:01 +9:00
757
757
  manifestation_00141:
758
758
  carrier_type_id: 1
759
759
  language_id: 1
@@ -767,7 +767,7 @@ manifestation_00141:
767
767
  id: 141
768
768
  height:
769
769
  width:
770
- created_at: 2009-06-19 09:19:00 UTC
770
+ created_at: 2009-06-19 09:19:00 +9:00
771
771
  manifestation_00142:
772
772
  carrier_type_id: 1
773
773
  language_id: 1
@@ -781,7 +781,7 @@ manifestation_00142:
781
781
  id: 142
782
782
  height:
783
783
  width:
784
- created_at: 2009-06-19 09:18:58 UTC
784
+ created_at: 2009-06-19 09:18:58 +9:00
785
785
  manifestation_00143:
786
786
  carrier_type_id: 1
787
787
  language_id: 1
@@ -795,7 +795,7 @@ manifestation_00143:
795
795
  id: 143
796
796
  height:
797
797
  width:
798
- created_at: 2009-06-19 09:18:45 UTC
798
+ created_at: 2009-06-19 09:18:45 +9:00
799
799
  manifestation_00144:
800
800
  carrier_type_id: 1
801
801
  language_id: 1
@@ -809,7 +809,7 @@ manifestation_00144:
809
809
  id: 144
810
810
  height:
811
811
  width:
812
- created_at: 2009-06-19 07:49:42 UTC
812
+ created_at: 2009-06-19 07:49:42 +9:00
813
813
  manifestation_00145:
814
814
  carrier_type_id: 1
815
815
  language_id: 1
@@ -823,7 +823,7 @@ manifestation_00145:
823
823
  id: 145
824
824
  height:
825
825
  width:
826
- created_at: 2009-06-19 06:44:35 UTC
826
+ created_at: 2009-06-19 06:44:35 +9:00
827
827
  manifestation_00146:
828
828
  carrier_type_id: 1
829
829
  language_id: 1
@@ -837,7 +837,7 @@ manifestation_00146:
837
837
  id: 146
838
838
  height:
839
839
  width:
840
- created_at: 2009-06-19 06:28:27 UTC
840
+ created_at: 2009-06-19 06:28:27 +9:00
841
841
  manifestation_00147:
842
842
  carrier_type_id: 1
843
843
  language_id: 1
@@ -851,7 +851,7 @@ manifestation_00147:
851
851
  id: 147
852
852
  height:
853
853
  width:
854
- created_at: 2009-06-19 02:16:22 UTC
854
+ created_at: 2009-06-19 02:16:22 +9:00
855
855
  manifestation_00148:
856
856
  carrier_type_id: 1
857
857
  language_id: 1
@@ -865,7 +865,7 @@ manifestation_00148:
865
865
  id: 148
866
866
  height:
867
867
  width:
868
- created_at: 2009-06-19 02:09:17 UTC
868
+ created_at: 2009-06-19 02:09:17 +9:00
869
869
  manifestation_00149:
870
870
  carrier_type_id: 1
871
871
  language_id: 1
@@ -879,7 +879,7 @@ manifestation_00149:
879
879
  id: 149
880
880
  height:
881
881
  width:
882
- created_at: 2009-06-19 01:10:56 UTC
882
+ created_at: 2009-06-19 01:10:56 +9:00
883
883
  manifestation_00150:
884
884
  carrier_type_id: 1
885
885
  language_id: 1
@@ -893,7 +893,7 @@ manifestation_00150:
893
893
  id: 150
894
894
  height:
895
895
  width:
896
- created_at: 2009-06-19 00:42:38 UTC
896
+ created_at: 2009-06-19 00:42:38 +9:00
897
897
  manifestation_00151:
898
898
  carrier_type_id: 1
899
899
  language_id: 1
@@ -907,7 +907,7 @@ manifestation_00151:
907
907
  id: 151
908
908
  height:
909
909
  width:
910
- created_at: 2009-06-19 00:13:13 UTC
910
+ created_at: 2009-06-19 00:13:13 +9:00
911
911
  manifestation_00152:
912
912
  carrier_type_id: 1
913
913
  language_id: 1
@@ -921,7 +921,7 @@ manifestation_00152:
921
921
  id: 152
922
922
  height:
923
923
  width:
924
- created_at: 2009-06-18 23:58:14 UTC
924
+ created_at: 2009-06-18 23:58:14 +9:00
925
925
  manifestation_00153:
926
926
  carrier_type_id: 1
927
927
  language_id: 1
@@ -935,7 +935,7 @@ manifestation_00153:
935
935
  id: 153
936
936
  height:
937
937
  width:
938
- created_at: 2009-06-18 23:43:08 UTC
938
+ created_at: 2009-06-18 23:43:08 +9:00
939
939
  manifestation_00154:
940
940
  carrier_type_id: 1
941
941
  language_id: 1
@@ -949,7 +949,7 @@ manifestation_00154:
949
949
  id: 154
950
950
  height:
951
951
  width:
952
- created_at: 2009-06-18 23:17:40 UTC
952
+ created_at: 2009-06-18 23:17:40 +9:00
953
953
  manifestation_00155:
954
954
  carrier_type_id: 1
955
955
  language_id: 1
@@ -963,7 +963,7 @@ manifestation_00155:
963
963
  id: 155
964
964
  height:
965
965
  width:
966
- created_at: 2009-06-18 22:44:00 UTC
966
+ created_at: 2009-06-18 22:44:00 +9:00
967
967
  manifestation_00156:
968
968
  carrier_type_id: 1
969
969
  language_id: 1
@@ -977,7 +977,7 @@ manifestation_00156:
977
977
  id: 156
978
978
  height:
979
979
  width:
980
- created_at: 2009-06-18 22:19:34 UTC
980
+ created_at: 2009-06-18 22:19:34 +9:00
981
981
  manifestation_00157:
982
982
  carrier_type_id: 1
983
983
  language_id: 1
@@ -991,7 +991,7 @@ manifestation_00157:
991
991
  id: 157
992
992
  height:
993
993
  width:
994
- created_at: 2009-06-18 21:58:42 UTC
994
+ created_at: 2009-06-18 21:58:42 +9:00
995
995
  manifestation_00158:
996
996
  carrier_type_id: 1
997
997
  language_id: 1
@@ -1005,7 +1005,7 @@ manifestation_00158:
1005
1005
  id: 158
1006
1006
  height:
1007
1007
  width:
1008
- created_at: 2009-06-18 21:44:38 UTC
1008
+ created_at: 2009-06-18 21:44:38 +9:00
1009
1009
  manifestation_00159:
1010
1010
  carrier_type_id: 1
1011
1011
  language_id: 1
@@ -1019,7 +1019,7 @@ manifestation_00159:
1019
1019
  id: 159
1020
1020
  height:
1021
1021
  width:
1022
- created_at: 2009-06-18 21:10:02 UTC
1022
+ created_at: 2009-06-18 21:10:02 +9:00
1023
1023
  manifestation_00160:
1024
1024
  carrier_type_id: 1
1025
1025
  language_id: 1
@@ -1033,7 +1033,7 @@ manifestation_00160:
1033
1033
  id: 160
1034
1034
  height:
1035
1035
  width:
1036
- created_at: 2009-06-18 21:10:01 UTC
1036
+ created_at: 2009-06-18 21:10:01 +9:00
1037
1037
  manifestation_00161:
1038
1038
  carrier_type_id: 1
1039
1039
  language_id: 1
@@ -1047,7 +1047,7 @@ manifestation_00161:
1047
1047
  id: 161
1048
1048
  height:
1049
1049
  width:
1050
- created_at: 2009-06-18 20:37:58 UTC
1050
+ created_at: 2009-06-18 20:37:58 +9:00
1051
1051
  manifestation_00162:
1052
1052
  carrier_type_id: 1
1053
1053
  language_id: 1
@@ -1061,7 +1061,7 @@ manifestation_00162:
1061
1061
  id: 162
1062
1062
  height:
1063
1063
  width:
1064
- created_at: 2009-06-18 20:29:54 UTC
1064
+ created_at: 2009-06-18 20:29:54 +9:00
1065
1065
  manifestation_00163:
1066
1066
  carrier_type_id: 1
1067
1067
  language_id: 1
@@ -1075,7 +1075,7 @@ manifestation_00163:
1075
1075
  id: 163
1076
1076
  height:
1077
1077
  width:
1078
- created_at: 2009-06-18 20:16:44 UTC
1078
+ created_at: 2009-06-18 20:16:44 +9:00
1079
1079
  manifestation_00164:
1080
1080
  carrier_type_id: 1
1081
1081
  language_id: 1
@@ -1089,7 +1089,7 @@ manifestation_00164:
1089
1089
  id: 164
1090
1090
  height:
1091
1091
  width:
1092
- created_at: 2009-06-18 20:05:25 UTC
1092
+ created_at: 2009-06-18 20:05:25 +9:00
1093
1093
  manifestation_00165:
1094
1094
  carrier_type_id: 1
1095
1095
  language_id: 1
@@ -1103,7 +1103,7 @@ manifestation_00165:
1103
1103
  id: 165
1104
1104
  height:
1105
1105
  width:
1106
- created_at: 2009-06-18 17:41:41 UTC
1106
+ created_at: 2009-06-18 17:41:41 +9:00
1107
1107
  manifestation_00166:
1108
1108
  carrier_type_id: 1
1109
1109
  language_id: 1
@@ -1117,7 +1117,7 @@ manifestation_00166:
1117
1117
  id: 166
1118
1118
  height:
1119
1119
  width:
1120
- created_at: 2009-06-18 17:34:03 UTC
1120
+ created_at: 2009-06-18 17:34:03 +9:00
1121
1121
  manifestation_00167:
1122
1122
  carrier_type_id: 1
1123
1123
  language_id: 1
@@ -1131,7 +1131,7 @@ manifestation_00167:
1131
1131
  id: 167
1132
1132
  height:
1133
1133
  width:
1134
- created_at: 2009-06-18 16:26:38 UTC
1134
+ created_at: 2009-06-18 16:26:38 +9:00
1135
1135
  manifestation_00168:
1136
1136
  carrier_type_id: 1
1137
1137
  language_id: 1
@@ -1145,7 +1145,7 @@ manifestation_00168:
1145
1145
  id: 168
1146
1146
  height:
1147
1147
  width:
1148
- created_at: 2009-06-18 16:25:25 UTC
1148
+ created_at: 2009-06-18 16:25:25 +9:00
1149
1149
  manifestation_00169:
1150
1150
  carrier_type_id: 1
1151
1151
  language_id: 1
@@ -1159,7 +1159,7 @@ manifestation_00169:
1159
1159
  id: 169
1160
1160
  height:
1161
1161
  width:
1162
- created_at: 2009-06-18 15:53:44 UTC
1162
+ created_at: 2009-06-18 15:53:44 +9:00
1163
1163
  manifestation_00170:
1164
1164
  carrier_type_id: 1
1165
1165
  language_id: 1
@@ -1173,7 +1173,7 @@ manifestation_00170:
1173
1173
  id: 170
1174
1174
  height:
1175
1175
  width:
1176
- created_at: 2009-06-18 15:52:50 UTC
1176
+ created_at: 2009-06-18 15:52:50 +9:00
1177
1177
  manifestation_00171:
1178
1178
  carrier_type_id: 1
1179
1179
  language_id: 1
@@ -1187,7 +1187,7 @@ manifestation_00171:
1187
1187
  id: 171
1188
1188
  height:
1189
1189
  width:
1190
- created_at: 2009-06-18 15:40:53 UTC
1190
+ created_at: 2009-06-18 15:40:53 +9:00
1191
1191
  manifestation_00172:
1192
1192
  carrier_type_id: 1
1193
1193
  language_id: 1
@@ -1201,7 +1201,7 @@ manifestation_00172:
1201
1201
  id: 172
1202
1202
  height:
1203
1203
  width:
1204
- created_at: 2009-06-18 15:34:21 UTC
1204
+ created_at: 2009-06-18 15:34:21 +9:00
1205
1205
  manifestation_00173:
1206
1206
  carrier_type_id: 1
1207
1207
  language_id: 1
@@ -1215,7 +1215,7 @@ manifestation_00173:
1215
1215
  id: 173
1216
1216
  height:
1217
1217
  width:
1218
- created_at: 2009-06-18 15:08:06 UTC
1218
+ created_at: 2009-06-18 15:08:06 +9:00
1219
1219
  manifestation_00174:
1220
1220
  carrier_type_id: 1
1221
1221
  language_id: 1
@@ -1229,7 +1229,7 @@ manifestation_00174:
1229
1229
  id: 174
1230
1230
  height:
1231
1231
  width:
1232
- created_at: 2009-06-18 15:05:43 UTC
1232
+ created_at: 2009-06-18 15:05:43 +9:00
1233
1233
  manifestation_00175:
1234
1234
  carrier_type_id: 1
1235
1235
  language_id: 1
@@ -1243,7 +1243,7 @@ manifestation_00175:
1243
1243
  id: 175
1244
1244
  height:
1245
1245
  width:
1246
- created_at: 2009-06-18 15:03:06 UTC
1246
+ created_at: 2009-06-18 15:03:06 +9:00
1247
1247
  manifestation_00176:
1248
1248
  carrier_type_id: 1
1249
1249
  language_id: 1
@@ -1257,7 +1257,7 @@ manifestation_00176:
1257
1257
  id: 176
1258
1258
  height:
1259
1259
  width:
1260
- created_at: 2009-06-18 14:52:11 UTC
1260
+ created_at: 2009-06-18 14:52:11 +9:00
1261
1261
  manifestation_00177:
1262
1262
  carrier_type_id: 1
1263
1263
  language_id: 1
@@ -1271,7 +1271,7 @@ manifestation_00177:
1271
1271
  id: 177
1272
1272
  height:
1273
1273
  width:
1274
- created_at: 2009-06-18 13:45:13 UTC
1274
+ created_at: 2009-06-18 13:45:13 +9:00
1275
1275
  manifestation_00178:
1276
1276
  carrier_type_id: 1
1277
1277
  language_id: 1
@@ -1285,7 +1285,7 @@ manifestation_00178:
1285
1285
  id: 178
1286
1286
  height:
1287
1287
  width:
1288
- created_at: 2009-06-18 13:45:11 UTC
1288
+ created_at: 2009-06-18 13:45:11 +9:00
1289
1289
  manifestation_00179:
1290
1290
  carrier_type_id: 1
1291
1291
  language_id: 1
@@ -1299,7 +1299,7 @@ manifestation_00179:
1299
1299
  id: 179
1300
1300
  height:
1301
1301
  width:
1302
- created_at: 2009-06-18 13:45:09 UTC
1302
+ created_at: 2009-06-18 13:45:09 +9:00
1303
1303
  manifestation_00180:
1304
1304
  carrier_type_id: 1
1305
1305
  language_id: 1
@@ -1313,7 +1313,7 @@ manifestation_00180:
1313
1313
  id: 180
1314
1314
  height:
1315
1315
  width:
1316
- created_at: 2009-06-18 13:45:04 UTC
1316
+ created_at: 2009-06-18 13:45:04 +9:00
1317
1317
  manifestation_00181:
1318
1318
  carrier_type_id: 1
1319
1319
  language_id: 1
@@ -1327,7 +1327,7 @@ manifestation_00181:
1327
1327
  id: 181
1328
1328
  height:
1329
1329
  width:
1330
- created_at: 2009-06-18 13:45:04 UTC
1330
+ created_at: 2009-06-18 13:45:04 +9:00
1331
1331
  manifestation_00182:
1332
1332
  carrier_type_id: 1
1333
1333
  language_id: 1
@@ -1341,7 +1341,7 @@ manifestation_00182:
1341
1341
  id: 182
1342
1342
  height:
1343
1343
  width:
1344
- created_at: 2009-06-18 13:44:56 UTC
1344
+ created_at: 2009-06-18 13:44:56 +9:00
1345
1345
  manifestation_00183:
1346
1346
  carrier_type_id: 1
1347
1347
  language_id: 1
@@ -1355,7 +1355,7 @@ manifestation_00183:
1355
1355
  id: 183
1356
1356
  height:
1357
1357
  width:
1358
- created_at: 2009-06-18 13:44:55 UTC
1358
+ created_at: 2009-06-18 13:44:55 +9:00
1359
1359
  manifestation_00184:
1360
1360
  carrier_type_id: 1
1361
1361
  language_id: 1
@@ -1369,7 +1369,7 @@ manifestation_00184:
1369
1369
  id: 184
1370
1370
  height:
1371
1371
  width:
1372
- created_at: 2009-06-18 13:44:54 UTC
1372
+ created_at: 2009-06-18 13:44:54 +9:00
1373
1373
  manifestation_00185:
1374
1374
  carrier_type_id: 1
1375
1375
  language_id: 1
@@ -1383,7 +1383,7 @@ manifestation_00185:
1383
1383
  id: 185
1384
1384
  height:
1385
1385
  width:
1386
- created_at: 2009-06-18 13:41:37 UTC
1386
+ created_at: 2009-06-18 13:41:37 +9:00
1387
1387
  manifestation_00186:
1388
1388
  carrier_type_id: 1
1389
1389
  language_id: 1
@@ -1397,7 +1397,7 @@ manifestation_00186:
1397
1397
  id: 186
1398
1398
  height:
1399
1399
  width:
1400
- created_at: 2008-12-19 17:52:47 UTC
1400
+ created_at: 2008-12-19 17:52:47 +9:00
1401
1401
  manifestation_00187:
1402
1402
  carrier_type_id: 1
1403
1403
  language_id: 1
@@ -1411,7 +1411,7 @@ manifestation_00187:
1411
1411
  id: 187
1412
1412
  height:
1413
1413
  width:
1414
- created_at: 2008-10-19 15:58:50 UTC
1414
+ created_at: 2008-10-19 15:58:50 +9:00
1415
1415
  manifestation_00188:
1416
1416
  carrier_type_id: 1
1417
1417
  language_id: 1
@@ -1425,7 +1425,7 @@ manifestation_00188:
1425
1425
  id: 188
1426
1426
  height:
1427
1427
  width:
1428
- created_at: 2008-08-22 00:27:29 UTC
1428
+ created_at: 2008-08-22 00:27:29 +9:00
1429
1429
  manifestation_00189:
1430
1430
  carrier_type_id: 1
1431
1431
  language_id: 1
@@ -1439,7 +1439,7 @@ manifestation_00189:
1439
1439
  id: 189
1440
1440
  height:
1441
1441
  width:
1442
- created_at: 2008-08-22 00:20:59 UTC
1442
+ created_at: 2008-08-22 00:20:59 +9:00
1443
1443
  manifestation_00190:
1444
1444
  carrier_type_id: 1
1445
1445
  language_id: 1
@@ -1453,7 +1453,7 @@ manifestation_00190:
1453
1453
  id: 190
1454
1454
  height:
1455
1455
  width:
1456
- created_at: 2008-05-20 13:06:31 UTC
1456
+ created_at: 2008-05-20 13:06:31 +9:00
1457
1457
  manifestation_00191:
1458
1458
  carrier_type_id: 1
1459
1459
  language_id: 1
@@ -1467,7 +1467,7 @@ manifestation_00191:
1467
1467
  id: 191
1468
1468
  height:
1469
1469
  width:
1470
- created_at: 2008-05-19 22:36:11 UTC
1470
+ created_at: 2008-05-19 22:36:11 +9:00
1471
1471
  manifestation_00192:
1472
1472
  carrier_type_id: 1
1473
1473
  language_id: 1
@@ -1481,7 +1481,7 @@ manifestation_00192:
1481
1481
  id: 192
1482
1482
  height:
1483
1483
  width:
1484
- created_at: 2008-03-05 01:37:55 UTC
1484
+ created_at: 2008-03-05 01:37:55 +9:00
1485
1485
  manifestation_00193:
1486
1486
  carrier_type_id: 1
1487
1487
  language_id: 1
@@ -1495,7 +1495,7 @@ manifestation_00193:
1495
1495
  id: 193
1496
1496
  height:
1497
1497
  width:
1498
- created_at: 2008-03-05 01:30:39 UTC
1498
+ created_at: 2008-03-05 01:30:39 +9:00
1499
1499
  manifestation_00194:
1500
1500
  carrier_type_id: 1
1501
1501
  language_id: 1
@@ -1509,7 +1509,7 @@ manifestation_00194:
1509
1509
  id: 194
1510
1510
  height:
1511
1511
  width:
1512
- created_at: 2007-11-19 17:56:37 UTC
1512
+ created_at: 2007-11-19 17:56:37 +9:00
1513
1513
  manifestation_00195:
1514
1514
  carrier_type_id: 1
1515
1515
  language_id: 1
@@ -1523,7 +1523,7 @@ manifestation_00195:
1523
1523
  id: 195
1524
1524
  height:
1525
1525
  width:
1526
- created_at: 2007-11-19 17:55:42 UTC
1526
+ created_at: 2007-11-19 17:55:42 +9:00
1527
1527
  manifestation_00196:
1528
1528
  carrier_type_id: 1
1529
1529
  language_id: 1
@@ -1537,7 +1537,7 @@ manifestation_00196:
1537
1537
  id: 196
1538
1538
  height:
1539
1539
  width:
1540
- created_at: 2007-11-19 17:55:41 UTC
1540
+ created_at: 2007-11-19 17:55:41 +9:00
1541
1541
  manifestation_00197:
1542
1542
  carrier_type_id: 1
1543
1543
  language_id: 1
@@ -1551,7 +1551,7 @@ manifestation_00197:
1551
1551
  id: 197
1552
1552
  height:
1553
1553
  width:
1554
- created_at: 2007-11-19 17:55:41 UTC
1554
+ created_at: 2007-11-19 17:55:41 +9:00
1555
1555
  manifestation_00198:
1556
1556
  carrier_type_id: 1
1557
1557
  language_id: 1
@@ -1565,7 +1565,7 @@ manifestation_00198:
1565
1565
  id: 198
1566
1566
  height:
1567
1567
  width:
1568
- created_at: 2007-11-19 17:55:41 UTC
1568
+ created_at: 2007-11-19 17:55:41 +9:00
1569
1569
  manifestation_00201:
1570
1570
  carrier_type_id: 1
1571
1571
  language_id: 1
@@ -1579,7 +1579,7 @@ manifestation_00201:
1579
1579
  id: 201
1580
1580
  height:
1581
1581
  width:
1582
- created_at: 2007-11-19 17:55:41 UTC
1582
+ created_at: 2007-11-19 17:55:41 +9:00
1583
1583
  frequency_id: 3
1584
1584
  serial: true
1585
1585
  manifestation_00202:
@@ -1595,7 +1595,7 @@ manifestation_00202:
1595
1595
  id: 202
1596
1596
  height:
1597
1597
  width:
1598
- created_at: 2007-11-19 17:55:41 UTC
1598
+ created_at: 2007-11-19 17:55:41 +9:00
1599
1599
  frequency_id: 3
1600
1600
  serial_number: 2
1601
1601
  volume_number: 1
@@ -1614,7 +1614,7 @@ manifestation_00203:
1614
1614
  id: 203
1615
1615
  height:
1616
1616
  width:
1617
- created_at: 2010-03-03 17:00:00 UTC
1617
+ created_at: 2010-03-03 17:00:00 +9:00
1618
1618
  frequency_id: 1
1619
1619
  serial: false
1620
1620
  manifestation_00204:
@@ -1630,7 +1630,7 @@ manifestation_00204:
1630
1630
  id: 204
1631
1631
  height:
1632
1632
  width:
1633
- created_at: 2010-03-03 20:00:00 UTC
1633
+ created_at: 2010-03-03 20:00:00 +9:00
1634
1634
  serial: true
1635
1635
  manifestation_00205:
1636
1636
  carrier_type_id: 1
@@ -1645,7 +1645,7 @@ manifestation_00205:
1645
1645
  id: 205
1646
1646
  height:
1647
1647
  width:
1648
- created_at: 2010-03-03 20:00:00 UTC
1648
+ created_at: 2010-03-03 20:00:00 +9:00
1649
1649
  manifestation_00206:
1650
1650
  carrier_type_id: 1
1651
1651
  language_id: 1
@@ -1659,7 +1659,7 @@ manifestation_00206:
1659
1659
  id: 206
1660
1660
  height:
1661
1661
  width:
1662
- created_at: 2010-03-03 20:00:00 UTC
1662
+ created_at: 2010-03-03 20:00:00 +9:00
1663
1663
  manifestation_00207:
1664
1664
  carrier_type_id: 1
1665
1665
  language_id: 1
@@ -1673,7 +1673,7 @@ manifestation_00207:
1673
1673
  id: 207
1674
1674
  height:
1675
1675
  width:
1676
- created_at: 2010-03-03 20:00:00 UTC
1676
+ created_at: 2010-03-03 20:00:00 +9:00
1677
1677
  manifestation_00208:
1678
1678
  carrier_type_id: 1
1679
1679
  language_id: 1
@@ -1687,7 +1687,7 @@ manifestation_00208:
1687
1687
  id: 208
1688
1688
  height:
1689
1689
  width:
1690
- created_at: 2010-03-16 11:00:00 UTC
1690
+ created_at: 2010-03-16 11:00:00 +9:00
1691
1691
  manifestation_00209:
1692
1692
  carrier_type_id: 1
1693
1693
  language_id: 1
@@ -1701,7 +1701,7 @@ manifestation_00209:
1701
1701
  id: 209
1702
1702
  height:
1703
1703
  width:
1704
- created_at: 2010-03-19 13:00:00 UTC
1704
+ created_at: 2010-03-19 13:00:00 +9:00
1705
1705
  required_role_id: 4
1706
1706
  manifestation_00210:
1707
1707
  carrier_type_id: 1
@@ -1716,7 +1716,7 @@ manifestation_00210:
1716
1716
  id: 210
1717
1717
  height:
1718
1718
  width:
1719
- created_at: 2010-03-19 13:00:00 UTC
1719
+ created_at: 2010-03-19 13:00:00 +9:00
1720
1720
  required_role_id: 4
1721
1721
  repository_content: true
1722
1722
  manifestation_00211:
@@ -1732,7 +1732,7 @@ manifestation_00211:
1732
1732
  id: 211
1733
1733
  height:
1734
1734
  width:
1735
- created_at: 2010-03-19 13:00:00 UTC
1735
+ created_at: 2010-03-19 13:00:00 +9:00
1736
1736
  required_role_id: 3
1737
1737
  repository_content: true
1738
1738
  manifestation_00212:
@@ -1748,7 +1748,7 @@ manifestation_00212:
1748
1748
  id: 212
1749
1749
  height:
1750
1750
  width:
1751
- created_at: 2010-03-19 13:00:00 UTC
1751
+ created_at: 2010-03-19 13:00:00 +9:00
1752
1752
  required_role_id: 3
1753
1753
  repository_content: true
1754
1754
  manifestation_00213:
@@ -1764,7 +1764,7 @@ manifestation_00213:
1764
1764
  id: 213
1765
1765
  height:
1766
1766
  width:
1767
- created_at: 2010-03-19 13:00:00 UTC
1767
+ created_at: 2010-03-19 13:00:00 +9:00
1768
1768
  required_role_id: 2
1769
1769
  repository_content: true
1770
1770
  manifestation_00214:
@@ -1780,7 +1780,7 @@ manifestation_00214:
1780
1780
  id: 214
1781
1781
  height:
1782
1782
  width:
1783
- created_at: 2010-03-19 13:00:00 UTC
1783
+ created_at: 2010-03-19 13:00:00 +9:00
1784
1784
  required_role_id: 2
1785
1785
  repository_content: false
1786
1786
  manifestation_00215:
@@ -1796,7 +1796,7 @@ manifestation_00215:
1796
1796
  id: 215
1797
1797
  height:
1798
1798
  width:
1799
- created_at: 2010-03-19 13:00:00 UTC
1799
+ created_at: 2010-03-19 13:00:00 +9:00
1800
1800
  required_role_id: 1
1801
1801
  repository_content: true
1802
1802
  manifestation_00216:
@@ -1812,7 +1812,7 @@ manifestation_00216:
1812
1812
  id: 216
1813
1813
  height:
1814
1814
  width:
1815
- created_at: 2010-03-19 13:00:00 UTC
1815
+ created_at: 2010-03-19 13:00:00 +9:00
1816
1816
  required_role_id: 1
1817
1817
  repository_content: false
1818
1818