enju_biblio 0.1.0.pre56 → 0.1.0.pre57

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/agent_import_files_controller.rb +1 -1
  3. data/app/controllers/agent_import_results_controller.rb +30 -6
  4. data/app/controllers/agent_relationship_types_controller.rb +74 -4
  5. data/app/controllers/agent_relationships_controller.rb +92 -10
  6. data/app/controllers/agent_types_controller.rb +74 -3
  7. data/app/controllers/carrier_types_controller.rb +1 -1
  8. data/app/controllers/content_types_controller.rb +74 -4
  9. data/app/controllers/countries_controller.rb +66 -4
  10. data/app/controllers/create_types_controller.rb +74 -3
  11. data/app/controllers/extents_controller.rb +74 -4
  12. data/app/controllers/form_of_works_controller.rb +74 -4
  13. data/app/controllers/frequencies_controller.rb +74 -4
  14. data/app/controllers/identifier_types_controller.rb +4 -5
  15. data/app/controllers/import_requests_controller.rb +1 -1
  16. data/app/controllers/languages_controller.rb +66 -4
  17. data/app/controllers/licenses_controller.rb +74 -3
  18. data/app/controllers/manifestation_relationship_types_controller.rb +74 -3
  19. data/app/controllers/manifestation_relationships_controller.rb +92 -9
  20. data/app/controllers/medium_of_performances_controller.rb +74 -3
  21. data/app/controllers/picture_files_controller.rb +34 -10
  22. data/app/controllers/produce_types_controller.rb +74 -3
  23. data/app/controllers/realize_types_controller.rb +74 -3
  24. data/app/controllers/resource_import_files_controller.rb +2 -1
  25. data/app/controllers/resource_import_results_controller.rb +31 -11
  26. data/app/models/agent_import_file.rb +1 -1
  27. data/app/models/agent_import_result.rb +0 -2
  28. data/app/models/carrier_type.rb +1 -1
  29. data/app/models/identifier.rb +5 -0
  30. data/app/models/item.rb +1 -1
  31. data/app/models/manifestation.rb +13 -8
  32. data/app/models/resource_import_file.rb +73 -79
  33. data/app/views/agent_import_files/index.html.erb +1 -0
  34. data/app/views/agent_relationship_types/index.html.erb +5 -4
  35. data/app/views/agent_types/index.html.erb +5 -4
  36. data/app/views/carrier_types/index.html.erb +2 -1
  37. data/app/views/content_types/index.html.erb +1 -0
  38. data/app/views/countries/show.html.erb +5 -0
  39. data/app/views/create_types/index.html.erb +5 -4
  40. data/app/views/extents/index.html.erb +2 -1
  41. data/app/views/form_of_works/index.html.erb +2 -1
  42. data/app/views/frequencies/index.html.erb +2 -1
  43. data/app/views/identifier_types/index.html.erb +12 -5
  44. data/app/views/import_requests/index.html.erb +1 -0
  45. data/app/views/items/show.html.erb +3 -7
  46. data/app/views/languages/_form.html.erb +19 -4
  47. data/app/views/languages/index.html.erb +6 -5
  48. data/app/views/languages/show.html.erb +19 -4
  49. data/app/views/layouts/manifestations.html.erb +2 -1
  50. data/app/views/licenses/index.html.erb +2 -1
  51. data/app/views/manifestation_relationship_types/index.html.erb +5 -4
  52. data/app/views/manifestations/_call_number.html.erb +1 -1
  53. data/app/views/manifestations/_edit_detail.html.erb +4 -1
  54. data/app/views/manifestations/_form.html.erb +5 -5
  55. data/app/views/manifestations/_show_detail_librarian.html.erb +8 -3
  56. data/app/views/manifestations/_show_detail_user.html.erb +8 -3
  57. data/app/views/medium_of_performances/index.html.erb +2 -1
  58. data/app/views/notifier/manifestation_info.en.text.erb +1 -1
  59. data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
  60. data/app/views/picture_files/_index.html.erb +1 -0
  61. data/app/views/picture_files/_index_agent.html.erb +1 -0
  62. data/app/views/picture_files/_index_manifestation.html.erb +1 -0
  63. data/app/views/picture_files/show.html.erb +15 -7
  64. data/app/views/produce_types/index.html.erb +5 -4
  65. data/app/views/realize_types/index.html.erb +5 -4
  66. data/app/views/resource_import_files/index.html.erb +1 -0
  67. data/app/views/series_statements/_index.html.erb +1 -0
  68. data/app/views/series_statements/_index_series_statement_merge_list.html.erb +1 -0
  69. data/config/locales/translation_en.yml +70 -1
  70. data/config/locales/translation_ja.yml +77 -8
  71. data/db/migrate/20140817155043_add_extent_of_text_to_manifestation.rb +5 -0
  72. data/lib/enju_biblio/biblio_helper.rb +13 -0
  73. data/lib/enju_biblio/engine.rb +0 -2
  74. data/lib/enju_biblio/version.rb +1 -1
  75. data/lib/generators/enju_biblio/setup/templates/db/fixtures/content_types.yml +1 -1
  76. data/lib/generators/enju_biblio/setup/templates/db/fixtures/identifier_types.yml +24 -3
  77. data/lib/tasks/enju_biblio_tasks.rake +2 -0
  78. data/lib/tasks/identifier_type.rb +12 -0
  79. data/lib/tasks/item.rb +1 -1
  80. data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_utf-8/should_send_message_when_import_is_completed.yml +433 -0
  81. data/spec/controllers/agent_import_files_controller_spec.rb +35 -35
  82. data/spec/controllers/agent_import_results_controller_spec.rb +11 -11
  83. data/spec/controllers/agent_relationship_types_controller_spec.rb +51 -51
  84. data/spec/controllers/agent_relationships_controller_spec.rb +53 -53
  85. data/spec/controllers/agent_types_controller_spec.rb +15 -15
  86. data/spec/controllers/agents_controller_spec.rb +96 -96
  87. data/spec/controllers/carrier_types_controller_spec.rb +15 -15
  88. data/spec/controllers/content_types_controller_spec.rb +15 -15
  89. data/spec/controllers/countries_controller_spec.rb +25 -25
  90. data/spec/controllers/create_types_controller_spec.rb +15 -15
  91. data/spec/controllers/creates_controller_spec.rb +50 -50
  92. data/spec/controllers/donates_controller_spec.rb +49 -49
  93. data/spec/controllers/extents_controller_spec.rb +15 -15
  94. data/spec/controllers/form_of_works_controller_spec.rb +15 -15
  95. data/spec/controllers/frequencies_controller_spec.rb +6 -6
  96. data/spec/controllers/identifier_types_controller_spec.rb +15 -15
  97. data/spec/controllers/import_requests_controller_spec.rb +50 -50
  98. data/spec/controllers/items_controller_spec.rb +72 -72
  99. data/spec/controllers/languages_controller_spec.rb +18 -18
  100. data/spec/controllers/licenses_controller_spec.rb +15 -15
  101. data/spec/controllers/manifestation_relationship_types_controller_spec.rb +51 -51
  102. data/spec/controllers/manifestation_relationships_controller_spec.rb +53 -53
  103. data/spec/controllers/manifestations_controller_spec.rb +108 -108
  104. data/spec/controllers/medium_of_performances_controller_spec.rb +15 -15
  105. data/spec/controllers/owns_controller_spec.rb +52 -52
  106. data/spec/controllers/picture_files_controller_spec.rb +52 -52
  107. data/spec/controllers/produce_types_controller_spec.rb +15 -15
  108. data/spec/controllers/produces_controller_spec.rb +50 -50
  109. data/spec/controllers/realize_types_controller_spec.rb +15 -15
  110. data/spec/controllers/realizes_controller_spec.rb +51 -51
  111. data/spec/controllers/resource_export_files_controller_spec.rb +38 -38
  112. data/spec/controllers/resource_import_files_controller_spec.rb +38 -38
  113. data/spec/controllers/resource_import_results_controller_spec.rb +15 -15
  114. data/spec/controllers/series_statements_controller_spec.rb +54 -54
  115. data/spec/dummy/db/development.sqlite3 +0 -0
  116. data/spec/dummy/db/schema.rb +2 -3
  117. data/spec/dummy/db/test.sqlite3 +0 -0
  118. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample1.tsv +19 -19
  119. data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample2.tsv +19 -19
  120. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-53863-1jz1wlr.txt +147 -0
  121. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-55246-1rvhs1s.txt +147 -0
  122. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-60268-1psjqua.txt +147 -0
  123. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-60996-1cy28m2.txt +147 -0
  124. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-67507-19qjhj3.txt +147 -0
  125. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-69234-1cllrec.txt +147 -0
  126. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140818-76875-1os6joy.txt +147 -0
  127. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-1148-136brhb.txt +147 -0
  128. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-473-1c326dm.txt +147 -0
  129. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-93795-1x882ik.txt +147 -0
  130. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-94274-1xr9d9e.txt +147 -0
  131. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-94643-1fjcept.txt +147 -0
  132. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-97947-mfqh5b.txt +147 -0
  133. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-98488-126cvb4.txt +147 -0
  134. data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140819-98849-1lg47mm.txt +147 -0
  135. data/spec/dummy/solr/test/data/index/segments.gen +0 -0
  136. data/spec/dummy/solr/test/data/index/segments_5ur +0 -0
  137. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007580 +0 -0
  138. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007581 +0 -0
  139. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007582 +0 -0
  140. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007583 +0 -0
  141. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007584 +0 -0
  142. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000007585 +0 -0
  143. data/spec/dummy/tmp/cache/ACB/B20/manifestation_search_total +0 -0
  144. data/spec/dummy/tmp/cache/stdout +2554 -0
  145. data/spec/dummy/tmp/pids/redis-test.pid +1 -1
  146. data/spec/fixtures/agent_import_results.yml +0 -3
  147. data/spec/fixtures/carrier_types.yml +16 -16
  148. data/spec/fixtures/content_types.yml +78 -29
  149. data/spec/fixtures/frequencies.yml +32 -62
  150. data/spec/fixtures/manifestations.yml +1 -1
  151. data/spec/models/agent_import_result_spec.rb +0 -2
  152. data/spec/models/manifestation_spec.rb +1 -1
  153. data/spec/models/resource_import_file_spec.rb +30 -3
  154. data/spec/views/manifestations/show.html.erb_spec.rb +1 -1
  155. metadata +68 -103
  156. data/app/views/picture_files/_index_event.html.erb +0 -53
  157. data/app/views/picture_files/_index_shelf.html.erb +0 -53
  158. data/db/migrate/20121116033446_add_doi_to_manifestation.rb +0 -6
  159. data/spec/dummy/solr/test/data/index/_20i.fdt +0 -0
  160. data/spec/dummy/solr/test/data/index/_20i.fdx +0 -0
  161. data/spec/dummy/solr/test/data/index/_20i.fnm +0 -0
  162. data/spec/dummy/solr/test/data/index/_20i.nvd +0 -0
  163. data/spec/dummy/solr/test/data/index/_20i.nvm +0 -0
  164. data/spec/dummy/solr/test/data/index/_20i.si +0 -0
  165. data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.doc +0 -0
  166. data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.pos +0 -0
  167. data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.tim +0 -0
  168. data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.tip +0 -0
  169. data/spec/dummy/solr/test/data/index/_20j.fdt +0 -0
  170. data/spec/dummy/solr/test/data/index/_20j.fdx +0 -0
  171. data/spec/dummy/solr/test/data/index/_20j.fnm +0 -0
  172. data/spec/dummy/solr/test/data/index/_20j.nvd +0 -0
  173. data/spec/dummy/solr/test/data/index/_20j.nvm +0 -0
  174. data/spec/dummy/solr/test/data/index/_20j.si +0 -0
  175. data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.doc +0 -0
  176. data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.pos +0 -0
  177. data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.tim +0 -0
  178. data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.tip +0 -0
  179. data/spec/dummy/solr/test/data/index/_20k.fdt +0 -0
  180. data/spec/dummy/solr/test/data/index/_20k.fdx +0 -0
  181. data/spec/dummy/solr/test/data/index/_20k.fnm +0 -0
  182. data/spec/dummy/solr/test/data/index/_20k.nvd +0 -0
  183. data/spec/dummy/solr/test/data/index/_20k.nvm +0 -0
  184. data/spec/dummy/solr/test/data/index/_20k.si +0 -0
  185. data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.doc +0 -0
  186. data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.pos +0 -0
  187. data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.tim +0 -0
  188. data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.tip +0 -0
  189. data/spec/dummy/solr/test/data/index/segments_2uc +0 -0
  190. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000003680 +0 -0
  191. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000003681 +0 -0
  192. data/spec/dummy/solr/test/data/tlog/tlog.0000000000000003682 +0 -0
@@ -0,0 +1,147 @@
1
+ manifestation_id original_title creator publisher pub_date price isbn item_identifier call_number item_price acquired_at bookstore budget_type circulation_status shelf library
2
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00001 Available On Shelf web web
3
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00004 Available On Shelf web web
4
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00007 Available On Shelf web web
5
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00010 Available On Shelf web web
6
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00011 Available On Shelf web web
7
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00018 On Loan web web
8
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00019 Available On Shelf web web
9
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00020 Recalled web web
10
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00002 Available On Shelf web web
11
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00005 Available On Shelf web web
12
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00008 Available On Shelf web web
13
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00012 Circulation Status Undefined web web
14
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00013 On Loan web web
15
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00014 On Loan web web
16
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00015 On Loan web web
17
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00003 Available On Shelf web web
18
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00006 Available On Shelf web web
19
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00009 Available On Shelf third_shelf hachioji
20
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00016 On Loan web web
21
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00017 On Loan web web
22
+ 4 THE BIOTECH INVESTOR'S BIBLE Administrator//Kosuke Tanabe 0471412791
23
+ 5 顧客満足型マーケティングの構図 Administrator//Librarian1
24
+ 6 仕組み革新の時代
25
+ 7 dictionary of e-business 0470844701
26
+ 8 Webサービス完全解説 4798101028
27
+ 9 逐条解説不正競争防止法 4641143331
28
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 9784774127804
29
+ 11 Webサービス完全構築ガイド 00021 Available On Shelf web web
30
+ 11 Webサービス完全構築ガイド 00022 Available On Shelf web web
31
+ 11 Webサービス完全構築ガイド 00023 Removed first_shelf kamata
32
+ 22 YouTube - Open Source ILS Song
33
+ 23 世界の美しい図書館集めてみた【第一弾】
34
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 テスト正式名称
35
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 作者ダミー
36
+ 103 Perlクックブック. v.2 作者ダミー
37
+ 104 Perlクックブック. v.1 作者ダミー
38
+ 105 初めてのPerl. 続
39
+ 106 Perl & XML
40
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集
41
+ 108 Perl 5パワフルテクニック大全集
42
+ 109 CGI/Perlパワープログラミング
43
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング
44
+ 111 すぐわかるPerl
45
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう
46
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java
47
+ 114 Rubyを256倍使うための本. 魔道編 2001-03-20 9784756137470
48
+ 115 入門Perl
49
+ 116 sed & awkプログラミング : UNIX power tools 1991-12-24 9784756100917
50
+ 117 Perlの達人
51
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死
52
+ 119 Perl基礎講座
53
+ 120 Rubyプログラミング入門 オーム社 2000-10-01 9784274063855
54
+ 121 Django×Python
55
+ 122 みんなのPython
56
+ 123 Rubyでgroonga使って全文検索 - ラングバ
57
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)
58
+ 125 Ruby on Rails入門 : 優しいRailsの育て方
59
+ 126 Ruby Cookbook
60
+ 127 CGI programming on the World Wide Web
61
+ 128 Genomic Perl
62
+ 129 Indians of the Pacific Northwest
63
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M
64
+ 131 International Symposium Genes and Chromosomes Structure and Function
65
+ 132 Perl black book, 2nd edition
66
+ 133 Python scripting for computational science
67
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills
68
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm
69
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words
70
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond
71
+ 138 CGI programming with Perl
72
+ 139 Python and XML / Python & XML / XML processing with Python
73
+ 140 Perl cookbook / Solutions and examples for Perl programmers
74
+ 141 Mastering Perl/Tk / Perl/Tk
75
+ 142 Mastering algorithms with Perl / Practical programming through computer science
76
+ 143 Programming Perl
77
+ 144 Fort Worth & Tarrant County / Fort Worth and Tarrant County
78
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)
79
+ 146 AWK programming language
80
+ 147 Toting the lead row
81
+ 148 Afro-American blues and game songs
82
+ 149 Perl/Tk pocket reference
83
+ 150 politics of improving urban air quality
84
+ 151 Perl developer's dictionary
85
+ 152 Andrテδゥ Poitiers
86
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide
87
+ 154 Python tutorial
88
+ 155 Line shapes of paramagnetic resonances in ruby
89
+ 156 Perl programmer's reference
90
+ 157 Technological capabilities in developing countries
91
+ 158 phenomena of vagueness
92
+ 159 theory of consumer's demand
93
+ 160 theory of consumer's demand
94
+ 161 Monty Python, Shakespeare, and English Renaissance drama
95
+ 162 Analyzing computer system performance with PERL::PDQ
96
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide
97
+ 164 Stimulated optical emission in ruby
98
+ 165 Strategic planning and risk analysis
99
+ 166 Performance assertion checking
100
+ 167 Spin-lattice relaxation time of ruby
101
+ 168 Mourning Ruby
102
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s
103
+ 170 Professional Perl programming / Perl programming
104
+ 171 Perl in a nutshell
105
+ 172 Programming Web services with Perl
106
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles
107
+ 174 Europeras 3 & 4 / Europera
108
+ 175 Retreats from realism in recent English drama
109
+ 176 Python programming patterns
110
+ 177 Beginning Perl for bioinformatics
111
+ 178 Learning Perl
112
+ 179 Effective awk programming
113
+ 180 Python standard library / Annotated reference for Python 2.0
114
+ 181 Programming Python
115
+ 182 Perl CD bookshelf
116
+ 183 Programming Perl
117
+ 184 Sed & awk pocket reference / Sed and awk pocket reference
118
+ 185 Perl power!
119
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com
120
+ 187 Welcome ― Ruby Enterprise Edition
121
+ 188 Pythonクックブック
122
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python
123
+ 190 Django | The Web framework for perfectionists with deadlines
124
+ 191 fac-back-opac - Google Code
125
+ 192 Rubyクックブック 2007-04-27 9784873113241
126
+ 193 Rubyレシピブック 2007-02-01 4797340045
127
+ 194 初めてのPerl 第3版
128
+ 195 続・初めてのPerl 改訂版
129
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング 2006-08-05 9784797336610
130
+ 197 Ruby
131
+ 198 紅玉の本 Ruby社
132
+ 201 テスト雑誌2005年1月号 出版社テスト
133
+ 202 テスト雑誌2月号 出版社テスト
134
+ 203 テスト単行本記事2005
135
+ 204 テスト雑誌1月号の記事1 2005 試験用会社
136
+ 205 テスト雑誌1月号の記事2 試験用会社
137
+ 206 テスト雑誌2月号の記事1 試験用会社
138
+ 207 試験単行本 出版社テスト
139
+ 208 ある出版物 テスト正式名称
140
+ 209 権限確認Admin専用1
141
+ 210 権限確認Admin専用2
142
+ 211 権限確認Librarian以上用1
143
+ 212 権限確認Librarian以上用2
144
+ 213 権限確認User以上用1
145
+ 214 権限確認User以上用2
146
+ 215 権限確認
147
+ 216 権限確認
@@ -0,0 +1,147 @@
1
+ manifestation_id original_title creator publisher pub_date price isbn item_identifier call_number item_price acquired_at bookstore budget_type circulation_status shelf library
2
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00001 Available On Shelf web web
3
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00004 Available On Shelf web web
4
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00007 Available On Shelf web web
5
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00010 Available On Shelf web web
6
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00011 Available On Shelf web web
7
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00018 On Loan web web
8
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00019 Available On Shelf web web
9
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00020 Recalled web web
10
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00002 Available On Shelf web web
11
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00005 Available On Shelf web web
12
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00008 Available On Shelf web web
13
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00012 Circulation Status Undefined web web
14
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00013 On Loan web web
15
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00014 On Loan web web
16
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00015 On Loan web web
17
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00003 Available On Shelf web web
18
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00006 Available On Shelf web web
19
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00009 Available On Shelf third_shelf hachioji
20
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00016 On Loan web web
21
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00017 On Loan web web
22
+ 4 THE BIOTECH INVESTOR'S BIBLE Administrator//Kosuke Tanabe 0471412791
23
+ 5 顧客満足型マーケティングの構図 Administrator//Librarian1
24
+ 6 仕組み革新の時代
25
+ 7 dictionary of e-business 0470844701
26
+ 8 Webサービス完全解説 4798101028
27
+ 9 逐条解説不正競争防止法 4641143331
28
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 9784774127804
29
+ 11 Webサービス完全構築ガイド 00021 Available On Shelf web web
30
+ 11 Webサービス完全構築ガイド 00022 Available On Shelf web web
31
+ 11 Webサービス完全構築ガイド 00023 Removed first_shelf kamata
32
+ 22 YouTube - Open Source ILS Song
33
+ 23 世界の美しい図書館集めてみた【第一弾】
34
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 テスト正式名称
35
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 作者ダミー
36
+ 103 Perlクックブック. v.2 作者ダミー
37
+ 104 Perlクックブック. v.1 作者ダミー
38
+ 105 初めてのPerl. 続
39
+ 106 Perl & XML
40
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集
41
+ 108 Perl 5パワフルテクニック大全集
42
+ 109 CGI/Perlパワープログラミング
43
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング
44
+ 111 すぐわかるPerl
45
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう
46
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java
47
+ 114 Rubyを256倍使うための本. 魔道編 2001-03-20 9784756137470
48
+ 115 入門Perl
49
+ 116 sed & awkプログラミング : UNIX power tools 1991-12-24 9784756100917
50
+ 117 Perlの達人
51
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死
52
+ 119 Perl基礎講座
53
+ 120 Rubyプログラミング入門 オーム社 2000-10-01 9784274063855
54
+ 121 Django×Python
55
+ 122 みんなのPython
56
+ 123 Rubyでgroonga使って全文検索 - ラングバ
57
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)
58
+ 125 Ruby on Rails入門 : 優しいRailsの育て方
59
+ 126 Ruby Cookbook
60
+ 127 CGI programming on the World Wide Web
61
+ 128 Genomic Perl
62
+ 129 Indians of the Pacific Northwest
63
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M
64
+ 131 International Symposium Genes and Chromosomes Structure and Function
65
+ 132 Perl black book, 2nd edition
66
+ 133 Python scripting for computational science
67
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills
68
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm
69
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words
70
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond
71
+ 138 CGI programming with Perl
72
+ 139 Python and XML / Python & XML / XML processing with Python
73
+ 140 Perl cookbook / Solutions and examples for Perl programmers
74
+ 141 Mastering Perl/Tk / Perl/Tk
75
+ 142 Mastering algorithms with Perl / Practical programming through computer science
76
+ 143 Programming Perl
77
+ 144 Fort Worth & Tarrant County / Fort Worth and Tarrant County
78
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)
79
+ 146 AWK programming language
80
+ 147 Toting the lead row
81
+ 148 Afro-American blues and game songs
82
+ 149 Perl/Tk pocket reference
83
+ 150 politics of improving urban air quality
84
+ 151 Perl developer's dictionary
85
+ 152 Andrテδゥ Poitiers
86
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide
87
+ 154 Python tutorial
88
+ 155 Line shapes of paramagnetic resonances in ruby
89
+ 156 Perl programmer's reference
90
+ 157 Technological capabilities in developing countries
91
+ 158 phenomena of vagueness
92
+ 159 theory of consumer's demand
93
+ 160 theory of consumer's demand
94
+ 161 Monty Python, Shakespeare, and English Renaissance drama
95
+ 162 Analyzing computer system performance with PERL::PDQ
96
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide
97
+ 164 Stimulated optical emission in ruby
98
+ 165 Strategic planning and risk analysis
99
+ 166 Performance assertion checking
100
+ 167 Spin-lattice relaxation time of ruby
101
+ 168 Mourning Ruby
102
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s
103
+ 170 Professional Perl programming / Perl programming
104
+ 171 Perl in a nutshell
105
+ 172 Programming Web services with Perl
106
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles
107
+ 174 Europeras 3 & 4 / Europera
108
+ 175 Retreats from realism in recent English drama
109
+ 176 Python programming patterns
110
+ 177 Beginning Perl for bioinformatics
111
+ 178 Learning Perl
112
+ 179 Effective awk programming
113
+ 180 Python standard library / Annotated reference for Python 2.0
114
+ 181 Programming Python
115
+ 182 Perl CD bookshelf
116
+ 183 Programming Perl
117
+ 184 Sed & awk pocket reference / Sed and awk pocket reference
118
+ 185 Perl power!
119
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com
120
+ 187 Welcome ― Ruby Enterprise Edition
121
+ 188 Pythonクックブック
122
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python
123
+ 190 Django | The Web framework for perfectionists with deadlines
124
+ 191 fac-back-opac - Google Code
125
+ 192 Rubyクックブック 2007-04-27 9784873113241
126
+ 193 Rubyレシピブック 2007-02-01 4797340045
127
+ 194 初めてのPerl 第3版
128
+ 195 続・初めてのPerl 改訂版
129
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング 2006-08-05 9784797336610
130
+ 197 Ruby
131
+ 198 紅玉の本 Ruby社
132
+ 201 テスト雑誌2005年1月号 出版社テスト
133
+ 202 テスト雑誌2月号 出版社テスト
134
+ 203 テスト単行本記事2005
135
+ 204 テスト雑誌1月号の記事1 2005 試験用会社
136
+ 205 テスト雑誌1月号の記事2 試験用会社
137
+ 206 テスト雑誌2月号の記事1 試験用会社
138
+ 207 試験単行本 出版社テスト
139
+ 208 ある出版物 テスト正式名称
140
+ 209 権限確認Admin専用1
141
+ 210 権限確認Admin専用2
142
+ 211 権限確認Librarian以上用1
143
+ 212 権限確認Librarian以上用2
144
+ 213 権限確認User以上用1
145
+ 214 権限確認User以上用2
146
+ 215 権限確認
147
+ 216 権限確認
@@ -0,0 +1,147 @@
1
+ manifestation_id original_title creator publisher pub_date price isbn item_identifier call_number item_price acquired_at bookstore budget_type circulation_status shelf library
2
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00001 Available On Shelf web web
3
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00004 Available On Shelf web web
4
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00007 Available On Shelf web web
5
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00010 Available On Shelf web web
6
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00011 Available On Shelf web web
7
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00018 On Loan web web
8
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00019 Available On Shelf web web
9
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00020 Recalled web web
10
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00002 Available On Shelf web web
11
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00005 Available On Shelf web web
12
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00008 Available On Shelf web web
13
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00012 Circulation Status Undefined web web
14
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00013 On Loan web web
15
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00014 On Loan web web
16
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00015 On Loan web web
17
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00003 Available On Shelf web web
18
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00006 Available On Shelf web web
19
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00009 Available On Shelf third_shelf hachioji
20
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00016 On Loan web web
21
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00017 On Loan web web
22
+ 4 THE BIOTECH INVESTOR'S BIBLE Administrator//Kosuke Tanabe 0471412791
23
+ 5 顧客満足型マーケティングの構図 Administrator//Librarian1
24
+ 6 仕組み革新の時代
25
+ 7 dictionary of e-business 0470844701
26
+ 8 Webサービス完全解説 4798101028
27
+ 9 逐条解説不正競争防止法 4641143331
28
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 9784774127804
29
+ 11 Webサービス完全構築ガイド 00021 Available On Shelf web web
30
+ 11 Webサービス完全構築ガイド 00022 Available On Shelf web web
31
+ 11 Webサービス完全構築ガイド 00023 Removed first_shelf kamata
32
+ 22 YouTube - Open Source ILS Song
33
+ 23 世界の美しい図書館集めてみた【第一弾】
34
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 テスト正式名称
35
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 作者ダミー
36
+ 103 Perlクックブック. v.2 作者ダミー
37
+ 104 Perlクックブック. v.1 作者ダミー
38
+ 105 初めてのPerl. 続
39
+ 106 Perl & XML
40
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集
41
+ 108 Perl 5パワフルテクニック大全集
42
+ 109 CGI/Perlパワープログラミング
43
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング
44
+ 111 すぐわかるPerl
45
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう
46
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java
47
+ 114 Rubyを256倍使うための本. 魔道編 2001-03-20 9784756137470
48
+ 115 入門Perl
49
+ 116 sed & awkプログラミング : UNIX power tools 1991-12-24 9784756100917
50
+ 117 Perlの達人
51
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死
52
+ 119 Perl基礎講座
53
+ 120 Rubyプログラミング入門 オーム社 2000-10-01 9784274063855
54
+ 121 Django×Python
55
+ 122 みんなのPython
56
+ 123 Rubyでgroonga使って全文検索 - ラングバ
57
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)
58
+ 125 Ruby on Rails入門 : 優しいRailsの育て方
59
+ 126 Ruby Cookbook
60
+ 127 CGI programming on the World Wide Web
61
+ 128 Genomic Perl
62
+ 129 Indians of the Pacific Northwest
63
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M
64
+ 131 International Symposium Genes and Chromosomes Structure and Function
65
+ 132 Perl black book, 2nd edition
66
+ 133 Python scripting for computational science
67
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills
68
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm
69
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words
70
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond
71
+ 138 CGI programming with Perl
72
+ 139 Python and XML / Python & XML / XML processing with Python
73
+ 140 Perl cookbook / Solutions and examples for Perl programmers
74
+ 141 Mastering Perl/Tk / Perl/Tk
75
+ 142 Mastering algorithms with Perl / Practical programming through computer science
76
+ 143 Programming Perl
77
+ 144 Fort Worth & Tarrant County / Fort Worth and Tarrant County
78
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)
79
+ 146 AWK programming language
80
+ 147 Toting the lead row
81
+ 148 Afro-American blues and game songs
82
+ 149 Perl/Tk pocket reference
83
+ 150 politics of improving urban air quality
84
+ 151 Perl developer's dictionary
85
+ 152 Andrテδゥ Poitiers
86
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide
87
+ 154 Python tutorial
88
+ 155 Line shapes of paramagnetic resonances in ruby
89
+ 156 Perl programmer's reference
90
+ 157 Technological capabilities in developing countries
91
+ 158 phenomena of vagueness
92
+ 159 theory of consumer's demand
93
+ 160 theory of consumer's demand
94
+ 161 Monty Python, Shakespeare, and English Renaissance drama
95
+ 162 Analyzing computer system performance with PERL::PDQ
96
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide
97
+ 164 Stimulated optical emission in ruby
98
+ 165 Strategic planning and risk analysis
99
+ 166 Performance assertion checking
100
+ 167 Spin-lattice relaxation time of ruby
101
+ 168 Mourning Ruby
102
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s
103
+ 170 Professional Perl programming / Perl programming
104
+ 171 Perl in a nutshell
105
+ 172 Programming Web services with Perl
106
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles
107
+ 174 Europeras 3 & 4 / Europera
108
+ 175 Retreats from realism in recent English drama
109
+ 176 Python programming patterns
110
+ 177 Beginning Perl for bioinformatics
111
+ 178 Learning Perl
112
+ 179 Effective awk programming
113
+ 180 Python standard library / Annotated reference for Python 2.0
114
+ 181 Programming Python
115
+ 182 Perl CD bookshelf
116
+ 183 Programming Perl
117
+ 184 Sed & awk pocket reference / Sed and awk pocket reference
118
+ 185 Perl power!
119
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com
120
+ 187 Welcome ― Ruby Enterprise Edition
121
+ 188 Pythonクックブック
122
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python
123
+ 190 Django | The Web framework for perfectionists with deadlines
124
+ 191 fac-back-opac - Google Code
125
+ 192 Rubyクックブック 2007-04-27 9784873113241
126
+ 193 Rubyレシピブック 2007-02-01 4797340045
127
+ 194 初めてのPerl 第3版
128
+ 195 続・初めてのPerl 改訂版
129
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング 2006-08-05 9784797336610
130
+ 197 Ruby
131
+ 198 紅玉の本 Ruby社
132
+ 201 テスト雑誌2005年1月号 出版社テスト
133
+ 202 テスト雑誌2月号 出版社テスト
134
+ 203 テスト単行本記事2005
135
+ 204 テスト雑誌1月号の記事1 2005 試験用会社
136
+ 205 テスト雑誌1月号の記事2 試験用会社
137
+ 206 テスト雑誌2月号の記事1 試験用会社
138
+ 207 試験単行本 出版社テスト
139
+ 208 ある出版物 テスト正式名称
140
+ 209 権限確認Admin専用1
141
+ 210 権限確認Admin専用2
142
+ 211 権限確認Librarian以上用1
143
+ 212 権限確認Librarian以上用2
144
+ 213 権限確認User以上用1
145
+ 214 権限確認User以上用2
146
+ 215 権限確認
147
+ 216 権限確認
@@ -0,0 +1,147 @@
1
+ manifestation_id original_title creator publisher pub_date price isbn item_identifier call_number item_price acquired_at bookstore budget_type circulation_status shelf library
2
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00001 Available On Shelf web web
3
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00004 Available On Shelf web web
4
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00007 Available On Shelf web web
5
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00010 Available On Shelf web web
6
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00011 Available On Shelf web web
7
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00018 On Loan web web
8
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00019 Available On Shelf web web
9
+ 1 よくわかる最新Webサービス技術 Administrator//Librarian1 Administrator//Kosuke Tanabe 4798002062 00020 Recalled web web
10
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00002 Available On Shelf web web
11
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00005 Available On Shelf web web
12
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00008 Available On Shelf web web
13
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00012 Circulation Status Undefined web web
14
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00013 On Loan web web
15
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00014 On Loan web web
16
+ 2 情報通信ハンドブック2005 Administrator Librarian1//Administrator 4915724824 00015 On Loan web web
17
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00003 Available On Shelf web web
18
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00006 Available On Shelf web web
19
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00009 Available On Shelf third_shelf hachioji
20
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00016 On Loan web web
21
+ 3 これからの生命科学研究者のためのバイオ特許入門講座 Kosuke Tanabe//Librarian1 4897063590 00017 On Loan web web
22
+ 4 THE BIOTECH INVESTOR'S BIBLE Administrator//Kosuke Tanabe 0471412791
23
+ 5 顧客満足型マーケティングの構図 Administrator//Librarian1
24
+ 6 仕組み革新の時代
25
+ 7 dictionary of e-business 0470844701
26
+ 8 Webサービス完全解説 4798101028
27
+ 9 逐条解説不正競争防止法 4641143331
28
+ 10 Apache Lucene入門 : Java・オープンソース・全文検索システムの構築 9784774127804
29
+ 11 Webサービス完全構築ガイド 00021 Available On Shelf web web
30
+ 11 Webサービス完全構築ガイド 00022 Available On Shelf web web
31
+ 11 Webサービス完全構築ガイド 00023 Removed first_shelf kamata
32
+ 22 YouTube - Open Source ILS Song
33
+ 23 世界の美しい図書館集めてみた【第一弾】
34
+ 101 CGI基礎講座 : Perl・プログラミング・日本語処理 テスト正式名称
35
+ 102 CGIレスキュー実践Perlプログラミング : Web裏技 作者ダミー
36
+ 103 Perlクックブック. v.2 作者ダミー
37
+ 104 Perlクックブック. v.1 作者ダミー
38
+ 105 初めてのPerl. 続
39
+ 106 Perl & XML
40
+ 107 はじめてのPerlモジュール : 厳選実用モジュール集
41
+ 108 Perl 5パワフルテクニック大全集
42
+ 109 CGI/Perlパワープログラミング
43
+ 110 Ruby/GTKプログラミング入門 : Rubyで作って遊ぶGUIプログラミング
44
+ 111 すぐわかるPerl
45
+ 112 CGIのための実践入門Perl : 対話的・動きのあるWebページを作ろう
46
+ 113 プログラミングは難しくない! : ウェブではじめるJavaScript/Perl/Java
47
+ 114 Rubyを256倍使うための本. 魔道編 2001-03-20 9784756137470
48
+ 115 入門Perl
49
+ 116 sed & awkプログラミング : UNIX power tools 1991-12-24 9784756100917
50
+ 117 Perlの達人
51
+ 118 ナチ強制・絶滅収容所 : 18施設内の生と死
52
+ 119 Perl基礎講座
53
+ 120 Rubyプログラミング入門 オーム社 2000-10-01 9784274063855
54
+ 121 Django×Python
55
+ 122 みんなのPython
56
+ 123 Rubyでgroonga使って全文検索 - ラングバ
57
+ 124 まちづくり三鷹図書館(Ruby図書館情報システム デモサイト)
58
+ 125 Ruby on Rails入門 : 優しいRailsの育て方
59
+ 126 Ruby Cookbook
60
+ 127 CGI programming on the World Wide Web
61
+ 128 Genomic Perl
62
+ 129 Indians of the Pacific Northwest
63
+ 130 Massachusetts acid rain monitoring project / Massachusetts acid rain monitoring project A.R.M
64
+ 131 International Symposium Genes and Chromosomes Structure and Function
65
+ 132 Perl black book, 2nd edition
66
+ 133 Python scripting for computational science
67
+ 134 Tests on a gold ore from the Ruby Basin, Black Hills
68
+ 135 Official guide to programming with CGI.pm / Programming with CGI.pm / Official guide to programming with CGI.pm
69
+ 136 Three little words [sound recording] / Nevertheless (I'm in love with you) / I love you so much / All alone Monday / Where did you get that girl? / Thinking of you / I wanna be loved by you / Who's sorry now? / My sunny Tennessee / So long Oolong / Three little words
70
+ 137 Femtosecond time-resolved spectroscopy of organic molecular crystals / Time-resolved spectroscopy of organic molecular crystals, Femtosecond
71
+ 138 CGI programming with Perl
72
+ 139 Python and XML / Python & XML / XML processing with Python
73
+ 140 Perl cookbook / Solutions and examples for Perl programmers
74
+ 141 Mastering Perl/Tk / Perl/Tk
75
+ 142 Mastering algorithms with Perl / Practical programming through computer science
76
+ 143 Programming Perl
77
+ 144 Fort Worth & Tarrant County / Fort Worth and Tarrant County
78
+ 145 Monty Python's Spamalot [sound recording] / Spamalot / Spamalot / Monty Python and the Holy Grail (Motion picture)
79
+ 146 AWK programming language
80
+ 147 Toting the lead row
81
+ 148 Afro-American blues and game songs
82
+ 149 Perl/Tk pocket reference
83
+ 150 politics of improving urban air quality
84
+ 151 Perl developer's dictionary
85
+ 152 Andrテδゥ Poitiers
86
+ 153 PERL and CGI for the World Wide Web [electronic resource] / Visual QuickStart guide
87
+ 154 Python tutorial
88
+ 155 Line shapes of paramagnetic resonances in ruby
89
+ 156 Perl programmer's reference
90
+ 157 Technological capabilities in developing countries
91
+ 158 phenomena of vagueness
92
+ 159 theory of consumer's demand
93
+ 160 theory of consumer's demand
94
+ 161 Monty Python, Shakespeare, and English Renaissance drama
95
+ 162 Analyzing computer system performance with PERL::PDQ
96
+ 163 equilibrium of the reaction between the manganate, permanganate, and hydroxide of potassium, and manganese dioxide
97
+ 164 Stimulated optical emission in ruby
98
+ 165 Strategic planning and risk analysis
99
+ 166 Performance assertion checking
100
+ 167 Spin-lattice relaxation time of ruby
101
+ 168 Mourning Ruby
102
+ 169 statistical analysis of banking performance in the Eastern Caribbean Currency Union in the 1990s
103
+ 170 Professional Perl programming / Perl programming
104
+ 171 Perl in a nutshell
105
+ 172 Programming Web services with Perl
106
+ 173 Proceedings of the Trieste Workshop on the search for New Elementary Particles / International journal of modern physics / Search for new elementary particles
107
+ 174 Europeras 3 & 4 / Europera
108
+ 175 Retreats from realism in recent English drama
109
+ 176 Python programming patterns
110
+ 177 Beginning Perl for bioinformatics
111
+ 178 Learning Perl
112
+ 179 Effective awk programming
113
+ 180 Python standard library / Annotated reference for Python 2.0
114
+ 181 Programming Python
115
+ 182 Perl CD bookshelf
116
+ 183 Programming Perl
117
+ 184 Sed & awk pocket reference / Sed and awk pocket reference
118
+ 185 Perl power!
119
+ 186 ATOKダイレクト API for Perl / Ruby?|?さらに使いこなす?|?ATOK.com
120
+ 187 Welcome ― Ruby Enterprise Edition
121
+ 188 Pythonクックブック
122
+ 189 みんなのPython インデントの世界へようこそ! object oriented-lightweight language Python
123
+ 190 Django | The Web framework for perfectionists with deadlines
124
+ 191 fac-back-opac - Google Code
125
+ 192 Rubyクックブック 2007-04-27 9784873113241
126
+ 193 Rubyレシピブック 2007-02-01 4797340045
127
+ 194 初めてのPerl 第3版
128
+ 195 続・初めてのPerl 改訂版
129
+ 196 たのしいRuby 第2版 Rubyではじめる気軽なプログラミング 2006-08-05 9784797336610
130
+ 197 Ruby
131
+ 198 紅玉の本 Ruby社
132
+ 201 テスト雑誌2005年1月号 出版社テスト
133
+ 202 テスト雑誌2月号 出版社テスト
134
+ 203 テスト単行本記事2005
135
+ 204 テスト雑誌1月号の記事1 2005 試験用会社
136
+ 205 テスト雑誌1月号の記事2 試験用会社
137
+ 206 テスト雑誌2月号の記事1 試験用会社
138
+ 207 試験単行本 出版社テスト
139
+ 208 ある出版物 テスト正式名称
140
+ 209 権限確認Admin専用1
141
+ 210 権限確認Admin専用2
142
+ 211 権限確認Librarian以上用1
143
+ 212 権限確認Librarian以上用2
144
+ 213 権限確認User以上用1
145
+ 214 権限確認User以上用2
146
+ 215 権限確認
147
+ 216 権限確認