blacklight 3.0pre1 → 3.0pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. data/.gitmodules +0 -6
  2. data/README.rdoc +94 -87
  3. data/blacklight.gemspec +1 -1
  4. data/config/routes.rb +1 -1
  5. data/lib/blacklight.rb +2 -2
  6. data/lib/blacklight/catalog.rb +10 -12
  7. data/lib/blacklight/controller.rb +2 -2
  8. data/lib/blacklight/engine.rb +5 -2
  9. data/lib/blacklight/solr/document.rb +1 -1
  10. data/lib/blacklight/solr/document/marc.rb +1 -16
  11. data/lib/blacklight/solr_helper.rb +43 -14
  12. data/lib/blacklight/version.rb +1 -1
  13. data/lib/generators/blacklight/assets_generator.rb +25 -0
  14. data/lib/generators/blacklight/blacklight_generator.rb +16 -1
  15. data/lib/generators/blacklight/jetty_generator.rb +101 -0
  16. data/lib/generators/blacklight/solr_conf_generator.rb +25 -0
  17. data/lib/generators/blacklight/templates/catalog_controller.rb +0 -1
  18. data/lib/generators/blacklight/templates/config/solr.yml +14 -2
  19. data/lib/generators/blacklight/templates/public/images/{blacklight/bg.png → bg.png} +0 -0
  20. data/lib/generators/blacklight/templates/public/images/{blacklight/border.png → border.png} +0 -0
  21. data/lib/generators/blacklight/templates/public/images/{blacklight/bul_sq_gry.gif → bul_sq_gry.gif} +0 -0
  22. data/lib/generators/blacklight/templates/public/images/{blacklight/checkmark.gif → checkmark.gif} +0 -0
  23. data/lib/generators/blacklight/templates/public/images/{blacklight/logo.png → logo.png} +0 -0
  24. data/lib/generators/blacklight/templates/public/images/{blacklight/magnifying_glass.gif → magnifying_glass.gif} +0 -0
  25. data/lib/generators/blacklight/templates/public/images/{blacklight/remove.gif → remove.gif} +0 -0
  26. data/lib/generators/blacklight/templates/public/images/{blacklight/separator.gif → separator.gif} +0 -0
  27. data/lib/generators/blacklight/templates/public/images/{blacklight/start_over.gif → start_over.gif} +0 -0
  28. data/lib/generators/blacklight/templates/public/javascripts/blacklight.js +5 -0
  29. data/lib/generators/blacklight/templates/public/stylesheets/blacklight.css +9 -3
  30. data/lib/generators/blacklight/templates/solr_conf/schema.xml +339 -0
  31. data/lib/generators/blacklight/templates/solr_conf/solrconfig.xml +578 -0
  32. data/lib/railties/all_tests.rake +11 -0
  33. data/lib/railties/blacklight.rake +0 -52
  34. data/lib/railties/blacklight_cucumber.rake +125 -0
  35. data/lib/railties/blacklight_rspec.rake +128 -0
  36. data/lib/railties/{test_solr_server.rb → jetty_solr_server.rb} +22 -45
  37. data/lib/railties/solr_marc.rake +24 -5
  38. data/test_support/.rspec +1 -0
  39. data/test_support/data/test_data.utf8.mrc +1 -0
  40. data/test_support/features/bookmarks.feature +88 -0
  41. data/test_support/features/did_you_mean.feature +129 -0
  42. data/test_support/features/folder.feature +67 -0
  43. data/test_support/features/librarian_view.feature +17 -0
  44. data/test_support/features/record_view.feature +34 -0
  45. data/test_support/features/saved_searches.feature +49 -0
  46. data/test_support/features/search.feature +86 -0
  47. data/test_support/features/search_filters.feature +121 -0
  48. data/test_support/features/search_history.feature +95 -0
  49. data/test_support/features/search_results.feature +61 -0
  50. data/test_support/features/search_sort.feature +29 -0
  51. data/test_support/features/step_definitions/bookmarks_steps.rb +5 -0
  52. data/test_support/features/step_definitions/error_steps.rb +4 -0
  53. data/test_support/features/step_definitions/folder_steps.rb +26 -0
  54. data/test_support/features/step_definitions/general_steps.rb +49 -0
  55. data/test_support/features/step_definitions/record_view_steps.rb +11 -0
  56. data/test_support/features/step_definitions/saved_searches_steps.rb +21 -0
  57. data/test_support/features/step_definitions/search_facets_steps.rb +28 -0
  58. data/test_support/features/step_definitions/search_history_steps.rb +8 -0
  59. data/test_support/features/step_definitions/search_result_steps.rb +113 -0
  60. data/test_support/features/step_definitions/search_steps.rb +102 -0
  61. data/test_support/features/step_definitions/user_steps.rb +4 -0
  62. data/test_support/features/step_definitions/web_steps.rb +211 -0
  63. data/test_support/features/support/env.rb +49 -0
  64. data/test_support/features/support/paths.rb +55 -0
  65. data/test_support/features/support/selectors.rb +39 -0
  66. data/test_support/features/unapi.feature +30 -0
  67. data/test_support/spec/controllers/application_controller_spec.rb +22 -0
  68. data/test_support/spec/controllers/catalog_controller_spec.rb +480 -0
  69. data/test_support/spec/controllers/folder_controller_spec.rb +40 -0
  70. data/test_support/spec/controllers/search_history_controller_spec.rb +45 -0
  71. data/test_support/spec/data/sample_docs.yml +655 -0
  72. data/test_support/spec/data/test_data.utf8.mrc +1 -0
  73. data/test_support/spec/helpers/blacklight_helper_spec.rb +482 -0
  74. data/test_support/spec/helpers/hash_as_hidden_fields_spec.rb +23 -0
  75. data/test_support/spec/helpers/render_constraints_helper_spec.rb +64 -0
  76. data/test_support/spec/helpers/search_history_helper_spec.rb +11 -0
  77. data/test_support/spec/helpers/solr_helper_spec.rb +873 -0
  78. data/test_support/spec/lib/blacklight_email_spec.rb +23 -0
  79. data/test_support/spec/lib/blacklight_sms_spec.rb +23 -0
  80. data/test_support/spec/lib/blacklight_solr_document_dublin_core_spec.rb +41 -0
  81. data/test_support/spec/lib/blacklight_solr_document_marc_spec.rb +88 -0
  82. data/test_support/spec/lib/blacklight_solr_document_spec.rb +173 -0
  83. data/test_support/spec/lib/blacklight_spec.rb +39 -0
  84. data/test_support/spec/lib/configurable_spec.rb +97 -0
  85. data/test_support/spec/lib/facet_paginator_spec.rb +93 -0
  86. data/test_support/spec/lib/marc_export_spec.rb +444 -0
  87. data/test_support/spec/lib/search_fields_spec.rb +105 -0
  88. data/test_support/spec/lib/tasks/blacklight_task_spec.rb +21 -0
  89. data/test_support/spec/lib/tasks/solr_marc_task_spec.rb +59 -0
  90. data/test_support/spec/models/bookmark_spec.rb +37 -0
  91. data/test_support/spec/models/record_mailer_spec.rb +67 -0
  92. data/test_support/spec/models/search_spec.rb +55 -0
  93. data/test_support/spec/models/solr_docment_spec.rb +111 -0
  94. data/test_support/spec/rcov.opts +3 -0
  95. data/test_support/spec/spec.opts +4 -0
  96. data/test_support/spec/spec_helper.rb +38 -0
  97. data/test_support/spec/support/action_controller.rb +42 -0
  98. data/test_support/spec/support/assert_difference.rb +16 -0
  99. data/test_support/spec/support/include_text.rb +20 -0
  100. data/test_support/spec/views/catalog/_constraints_element.html.erb_spec.rb +59 -0
  101. data/test_support/spec/views/catalog/_document_list.html.erb_spec.rb +8 -0
  102. data/test_support/spec/views/catalog/_facets.html.erb_spec.rb +182 -0
  103. data/test_support/spec/views/catalog/_index_partials/_default.erb_spec.rb +70 -0
  104. data/test_support/spec/views/catalog/_show_partials/_default.html.erb_spec.rb +70 -0
  105. data/test_support/spec/views/catalog/index.atom.builder_spec.rb +141 -0
  106. data/test_support/spec/views/catalog/show.html.erb_spec.rb +100 -0
  107. data/test_support/spec/views/catalog/unapi.xml.builder_spec.rb +45 -0
  108. metadata +95 -98
  109. data/lib/blacklight/marc.rb +0 -46
  110. data/lib/blacklight/marc/citation.rb +0 -251
  111. data/lib/railties/cucumber.rake +0 -53
  112. data/lib/railties/rspec.rake +0 -188
  113. data/spec/helpers/catalog_helper_spec.rb +0 -111
  114. data/spec/views/catalog/_sms_form.html.erb_spec.rb +0 -19
@@ -0,0 +1,40 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+ describe FolderController do
3
+ before(:each) do
4
+ request.env["HTTP_REFERER"] = "/"
5
+ end
6
+
7
+ it "should add items to list" do
8
+ get :update, :id =>"77826928"
9
+ session[:folder_document_ids].length.should == 1
10
+ get :update, :id => "94120425"
11
+ session[:folder_document_ids].length.should == 2
12
+ session[:folder_document_ids].should include("77826928")
13
+ get :index
14
+ assigns[:documents].length.should == 2
15
+ assigns[:documents].first.should be_instance_of(SolrDocument)
16
+ end
17
+ it "should delete an item from list" do
18
+ get :update, :id =>"77826928"
19
+ get :update, :id => "94120425"
20
+ get :destroy, :id =>"77826928"
21
+ session[:folder_document_ids].length.should == 1
22
+ session[:folder_document_ids].should_not include("77826928")
23
+ end
24
+ it "should clear list" do
25
+ get :update, :id =>"77826928"
26
+ get :update, :id => "94120425"
27
+ get :clear
28
+ session[:folder_document_ids].length.should == 0
29
+ end
30
+
31
+ it "should generate flash messages for normal requests" do
32
+ get :update, :id => "77826928"
33
+ flash[:notice].length.should_not == 0
34
+ end
35
+ it "should clear flash messages after xhr request" do
36
+ xhr :get, :update, :id => "77826928"
37
+ flash[:notice].should == nil
38
+ end
39
+ end
40
+
@@ -0,0 +1,45 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe SearchHistoryController do
4
+ describe "index" do
5
+ before(:all) do
6
+ @one = Search.create
7
+ @two = Search.create
8
+ @three = Search.create
9
+ end
10
+
11
+ it "should only fetch searches with ids in the session" do
12
+ session[:history] = [@one.id, @three.id]
13
+ get :index
14
+ @searches = assigns(:searches)
15
+ @searches.length.should == 2
16
+ @searches.should include(@one)
17
+ @searches.should include(@three)
18
+ @searches.should_not include(@two)
19
+ end
20
+
21
+ it "should not fetch any searches if there is no history" do
22
+ session[:history] = []
23
+ get :index
24
+ @searches = assigns(:searches)
25
+ @searches.length.should == 0
26
+ end
27
+ end
28
+
29
+ describe "destroy" do
30
+ it "should delete the search by id from the search history not by array index" do
31
+ session[:history] = [1,2,2]
32
+ request.env["HTTP_REFERER"] = "/search_history"
33
+ get :destroy, :id=>1
34
+ session[:history].length.should == 2
35
+ end
36
+ it "should return a flash error if an id that is not in the users search history is deleted" do
37
+ session[:history] = [1,2,3]
38
+ request.env["HTTP_REFERER"] = "/search_history"
39
+ get :destroy, :id=>4
40
+ request.flash[:error].should_not == ""
41
+ end
42
+
43
+ end
44
+
45
+ end
@@ -0,0 +1,655 @@
1
+ ---
2
+ document_list_mash:
3
+ - !map:Mash
4
+ score: 1.0
5
+ format: Book
6
+ author_vern_display: "\xE2\x80\x8F\xD7\xA4\xD7\x99\xD7\xA0\xD7\xA7\xD7\x9C, \xD7\x97\xD7\x99\xD7\x99\xD7\x9D \xD7\x99\xD7\xA2\xD7\xA7\xD7\x91"
7
+ material_type_display:
8
+ - 283 p.
9
+ title_vern_display: "\xE2\x80\x8F\xD7\xA9\xD7\x95\xD7\x93\xD7\x93\xD7\x99\xD6\xBE\xD7\x99\xD7\x9D \xD7\x99\xD7\x94\xD7\x95\xD7\x93\xD7\x99\xD7\x99\xD7\x9D :\xE2\x80\x8F"
10
+ isbn_t:
11
+ - "9650101373"
12
+ pub_date:
13
+ - "1984"
14
+ subtitle_display: "sipurim mafli\xCA\xBCim ha-mevusasim \xCA\xBBal \xCA\xBBuvdot hist\xCC\xA3oriyot"
15
+ id: "86207417"
16
+ lc_callnum_display:
17
+ - G535 .F54 1984
18
+ author_display: Finkel, Chaim Jacob
19
+ language_facet:
20
+ - Hebrew
21
+ published_vern_display:
22
+ - "\xE2\x80\x8F\xD7\x99\xD7\xA8\xD7\x95\xD7\xA9\xD7\x9C\xD7\x99\xD7\x9D :\xE2\x80\x8F"
23
+ subject_topic_facet:
24
+ - Jewish pirates
25
+ - Jewish criminals
26
+ title_display: Shodede-yam Yehudiyim
27
+ published_display:
28
+ - Yerushalayim
29
+ subtitle_vern_display: "\xE2\x80\x8F\xD7\xA1\xD7\xA4\xD7\x95\xD7\xA8\xD7\x99\xD7\x9D \xD7\x9E\xD7\xA4\xD7\x9C\xD7\x99\xD7\x90\xD7\x99\xD7\x9D \xD7\x94\xD7\x9E\xD7\x91\xD7\x95\xD7\xA1\xD7\xA1\xD7\x99\xD7\x9D \xD7\xA2\xD7\x9C \xD7\xA2\xD7\x95\xD7\x91\xD7\x93\xD7\x95\xD7\xAA \xD7\x94\xD7\x99\xD7\xA1\xD7\x98\xD7\x95\xD7\xA8\xD7\x99\xD7\x95\xD7\xAA /\xE2\x80\x8F"
30
+ marc_display: "01657cam a2200337 a 4500001001300000003000400013005001700017008004100034010001700075035002600092040002800118042001400146043002100160050002000181066001100201100004900212245015200261246010000413246005600513260007400569300005100643504003500694650004700729650004300776650003900819880005300858880014800911880010201059880005901161880009901220 87931798 DLC20090121115059.0060428m19869999ir ah b 000 0 per d a 87931798  a(CStRLIN)DCLN06-B3656 aNjPcNjPdUkLSOAdDLC-R alccopycat aa------af------00aBP44b.M88 1986 c(3c(41 6880-01aMuvaḥḥid Abṭaḥī, Ḥujjat.106880-02aĀshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh /cbih qalam-i Ḥujjat Muvaḥḥid Abṭaḥī.3 6880-03aĀshnāyī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh306880-04aḤawzahʹhā-yi ʻilmīyah-ʼi Shīʻah 6880-05aIṣfahān :bḤawzah-i ʻIlmīyah,c1365- [1986- ] av. <1> :bill. (some col.), facsims. ;c25 cm. aBibliography: v. 1, p.451-455. 0aReligious institutionszIslamic countries. 0aShiitesxEducationzIslamic countries. 0aIslamic universities and colleges.1 6100-01/(3/r‏a‏موحد ابطحى، خجة.106245-02/(3/r‏a‏اشنائى با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏c‏بقلم حجة موحد ابطحى.3 6246-03/(3/r‏a‏اشنايى با حوزه‌هاى علميۀ شيعه در طول تاريخ306246-04/(3/r‏a‏حوزه هاى علميۀ شيعه 6260-05/(3/r‏a‏اصفهان :‏b‏حوزۀ علميه،‏c‏‪1365- [1986- ]‬."
31
+ - !map:Mash
32
+ score: 1.0
33
+ format: Book
34
+ material_type_display:
35
+ - v. <1>
36
+ title_vern_display: "\xE2\x80\x8F\xD8\xA7\xD8\xB4\xD9\x86\xD8\xA7\xD8\xA6\xD9\x89 \xD8\xA8\xD8\xA7 \xD8\xAD\xD9\x88\xD8\xB2\xD9\x87\xE2\x80\x8C\xD9\x87\xD8\xA7\xD9\x89 \xD8\xB9\xD9\x84\xD9\x85\xD9\x8A\xDB\x80 \xD8\xB4\xD9\x8A\xD8\xB9\xD9\x87 \xD8\xAF\xD8\xB1 \xD8\xB7\xD9\x88\xD9\x84 \xD8\xAA\xD8\xA7\xD8\xB1\xD9\x8A\xD8\xAE /\xE2\x80\x8F"
37
+ subject_geo_facet:
38
+ - Islamic countries
39
+ pub_date:
40
+ - "1986"
41
+ id: "87931798"
42
+ lc_callnum_display:
43
+ - BP44 .M88 1986
44
+ language_facet:
45
+ - Persian
46
+ published_vern_display:
47
+ - "\xE2\x80\x8F\xD8\xA7\xD8\xB5\xD9\x81\xD9\x87\xD8\xA7\xD9\x86 :\xE2\x80\x8F"
48
+ subject_topic_facet:
49
+ - Religious institutions
50
+ - Shiites
51
+ - Islamic universities and colleges
52
+ title_display: "A\xCC\x84shna\xCC\x84\xCA\xBCi\xCC\x84 ba\xCC\x84 h\xCC\xA3awzah\xCA\xB9ha\xCC\x84-yi \xCA\xBBilmi\xCC\x84yah-\xCA\xBCi Shi\xCC\x84\xCA\xBBah dar t\xCC\xA3u\xCC\x84l-i ta\xCC\x84ri\xCC\x84kh"
53
+ published_display:
54
+ - "Is\xCC\xA3faha\xCC\x84n"
55
+ - !map:Mash
56
+ score: 1.0
57
+ format: Book
58
+ material_type_display:
59
+ - 65 p.
60
+ pub_date:
61
+ - "1975"
62
+ subtitle_display: "t\xCA\xBBeoriul-met\xCA\xBBoduri narkvevi"
63
+ id: "90142413"
64
+ lc_callnum_display:
65
+ - MLCSN 96/3906 (H)
66
+ author_display: "Lomt\xCA\xBBat\xCA\xBBiz\xCC\x87e, C\xCC\x8Cola, 1879-1915"
67
+ language_facet:
68
+ - Georgian
69
+ subject_topic_facet:
70
+ - Industrial workers; life style
71
+ title_display: "Mrecvelobis mus\xCC\x8Cakis c\xCA\xBBxovrebis cesi"
72
+ published_display:
73
+ - "T\xCA\xBBbilisi"
74
+ - !map:Mash
75
+ score: 1.0
76
+ format: Book
77
+ material_type_display:
78
+ - 5 v.
79
+ title_vern_display: !binary |
80
+ 5YyX6Z+T44CA5rOV5Luk6ZuG44CA77yP
81
+
82
+ subject_geo_facet:
83
+ - Korea (North)
84
+ pub_date:
85
+ - "1990"
86
+ id: "92117465"
87
+ lc_callnum_display:
88
+ - KPC13 .K67 1990
89
+ author_display: Korea (North)
90
+ language_facet:
91
+ - Korean
92
+ published_vern_display:
93
+ - !binary |
94
+ 7ISc7Jq444CA5oyB5Yil5biC44CA77ya
95
+
96
+ subject_topic_facet:
97
+ - Law
98
+ title_display: "Pukhan po\xCC\x86mnyo\xCC\x86ngjip"
99
+ published_display:
100
+ - "So\xCC\x86ul T\xCA\xBBu\xCC\x86kpyo\xCC\x86lsi"
101
+ - !map:Mash
102
+ score: 1.0
103
+ format: Book
104
+ author_vern_display: "\xE2\x80\x8F\xD7\x99\xD7\xA9\xD7\xA8\xD7\x90\xD7\x9C \xD7\x9E\xD7\x90\xD7\x99\xD7\xA8,\xE2\x80\x8F \xE2\x80\x8F\xD7\x94\xD7\x9B\xD7\x94\xD7\x9F"
105
+ material_type_display:
106
+ - v. <1-5>
107
+ title_vern_display: "\xE2\x80\x8F\xD7\xA1\xD7\xA4\xD7\xA8 \xD7\x9E\xD7\xA9\xD7\xA0\xD7\x94 \xD7\x91\xD7\xA8\xD7\x95\xD7\xA8\xD7\x94 :\xE2\x80\x8F"
108
+ pub_date:
109
+ - "1992"
110
+ subtitle_display: "v\xCC\xA3e-hu perush yafeh u-menupeh \xCA\xBBal Shulh\xCC\xA3an \xCA\xBBarukh Orah\xCC\xA3 h\xCC\xA3ayim asher h\xCC\xA3iber Yosef K\xCC\xA3aro ... \xCA\xBBim h\xCC\xA3idushe dinim she-hishmit\xCC\xA3 ha-ga\xCA\xBCon ... v\xCC\xA3e-himtsi\xCA\xBCam ... Mosheh Iserlish"
111
+ id: "92828023"
112
+ lc_callnum_display:
113
+ - BM520.88.A53 I88 1992b
114
+ author_display: Israel Meir, ha-Kohen, 1838-1933
115
+ language_facet:
116
+ - Hebrew
117
+ published_vern_display:
118
+ - "\xE2\x80\x8F[Jerusalem? :\xE2\x80\x8F"
119
+ subject_topic_facet:
120
+ - Karo, Joseph ben Ephraim, 1488-1575
121
+ - Jewish law
122
+ - Judaism
123
+ title_display: Sefer Mishnah berurah
124
+ published_display:
125
+ - Jerusalem?
126
+ subtitle_vern_display: "\xE2\x80\x8F\xD7\x95\xD7\x94\xD7\x95\xD7\x90 \xD7\xA4\xD7\x99\xD7\xA8\xD7\x95\xD7\xA9 \xD7\x99\xD7\xA4\xD7\x94 \xD7\x95\xD7\x9E\xD7\xA0\xD7\xA4\xD7\x94 \xD7\xA2\xD7\x9C \xD7\xA9\xD7\x9C\xD7\x97\xD7\x9F \xD7\xA2\xD7\xA8\xD7\x95\xD7\x9A \xD7\x90\xD7\xA8\xD7\x97 \xD7\x97\xD7\x99\xD7\x99\xD7\x9D \xD7\x90\xD7\xA9\xD7\xA8 \xD7\x97\xD7\x91\xD7\xA8 \xD7\x99\xD7\x95\xD7\xA1\xD7\xA3 \xD7\xA7\xD7\x90\xD7\xA8\xD7\x95 ... \xD7\xA2\xD7\x9D \xD7\x97\xD7\x99\xD7\x93\xD7\x95\xD7\xA9\xD7\x99 \xD7\x93\xD7\x99\xD7\xA0\xD7\x99\xD7\x9D \xD7\xA9\xD7\x94\xD7\xA9\xD7\x9E\xD7\x99\xD7\x98 \xD7\x94\xD7\x92\xD7\x90\xD7\x95\xD7\x9F ... \xD7\x95\xD7\x94\xD7\x9E\xD7\xA6\xD7\x99\xD7\x90\xD7\x9D \xD7\x9E\xD7\xA9\xD7\x94 \xD7\x90\xD7\x99\xD7\xA1\xD7\xA8\xD7\x9C\xD7\x99\xD7\xA9 /\xE2\x80\x8F"
127
+ - !map:Mash
128
+ score: 1.0
129
+ format: Book
130
+ author_vern_display: "\xEA\xB9\x80\xE3\x80\x80\xED\x99\x8D\xEC\x8B\xA0, 1947-"
131
+ material_type_display:
132
+ - 289 p.
133
+ title_vern_display: !binary |
134
+ 7JWE7KeB64+E44CA6re465+t44CA7KCA65+t44CA7IKs7Iut64uI6rmM
135
+
136
+ subject_geo_facet:
137
+ - Seoul (Korea)
138
+ - Korea (South)
139
+ pub_date:
140
+ - "1990"
141
+ subtitle_display: "kangnam yo\xCC\x86in kwa sin p\xCA\xBBalbulch\xCA\xBBul : Kim Hong-sin set\xCA\xBBae ru\xCC\x86p\xCA\xBBo"
142
+ id: "94120425"
143
+ lc_callnum_display:
144
+ - HQ1765.5 .K46 1990
145
+ author_display: Kim, Hong-sin, 1947-
146
+ language_facet:
147
+ - Korean
148
+ published_vern_display:
149
+ - !binary |
150
+ 7ISc7Jq4
151
+
152
+ subject_topic_facet:
153
+ - Women
154
+ title_display: "Ajikto ku\xCC\x86ro\xCC\x86k cho\xCC\x86ro\xCC\x86k sasimnikka"
155
+ published_display:
156
+ - "So\xCC\x86ul"
157
+ subtitle_vern_display: "\xEA\xB0\x95\xEB\x82\xA8\xE3\x80\x80\xEC\x97\xAC\xEC\x9D\xB8\xE3\x80\x80\xEA\xB3\xBC\xE3\x80\x80\xEC\x8B\xA0\xE3\x80\x80\xED\x8C\x94\xEB\xB6\x88\xEC\xB6\x9C : \xE9\x87\x91\xE3\x80\x80\xE6\xB4\xAA\xE4\xBF\xA1\xE3\x80\x80\xEC\x84\xB8\xED\x83\x9C\xE3\x80\x80\xEB\xA5\xB4\xED\x8F\xAC"
158
+ - !map:Mash
159
+ score: 1.0
160
+ format: Book
161
+ author_vern_display: "\xE2\x80\x8F\xD8\xB1\xD8\xAC\xD8\xA7\xD9\x8A\xD9\x89\xD8\x8C \xD9\x81\xD8\xB1\xD9\x87\xD9\x86\xDA\xAF ."
162
+ material_type_display:
163
+ - 323 p.
164
+ title_vern_display: "\xE2\x80\x8F\xD9\x85\xD8\xB9\xD8\xB1\xD9\x83\xDB\x80 \xD8\xAC\xD9\x87\xD8\xA7\xD9\x86\xE2\x80\x8C\xD8\xA8\xD9\x8A\xD9\x86\xD9\x89\xD9\x87\xD8\xA7 :\xE2\x80\x8F"
165
+ subject_geo_facet:
166
+ - Iran
167
+ pub_date:
168
+ - "1994"
169
+ subtitle_display: "dar khiradvarzi\xCC\x84-i siya\xCC\x84si\xCC\x84 va huvi\xCC\x84yat-i ma\xCC\x84 I\xCC\x84ra\xCC\x84ni\xCC\x84ya\xCC\x84n"
170
+ id: "96933325"
171
+ lc_callnum_display:
172
+ - DS274 .R327 1994
173
+ author_display: "Raja\xCC\x84yi\xCC\x84, Farhang, 1952 or 3-"
174
+ language_facet:
175
+ - Persian
176
+ published_vern_display:
177
+ - "\xE2\x80\x8F\xD8\xAA\xD9\x87\xD8\xB1\xD8\xA7\xD9\x86 :\xE2\x80\x8F"
178
+ subject_topic_facet:
179
+ - Political science
180
+ - Iranians
181
+ title_display: "Ma\xCA\xBBrakah-\xCA\xBCi jaha\xCC\x84n\xCA\xB9bi\xCC\x84ni\xCC\x84\xCA\xB9ha\xCC\x84"
182
+ published_display:
183
+ - "Tihra\xCC\x84n"
184
+ subtitle_vern_display: "\xE2\x80\x8F\xD8\xAF\xD8\xB1 \xD8\xAE\xD8\xB1\xD8\xAF\xD9\x88\xD8\xB1\xD8\xB2\xD9\x89 \xD8\xB3\xD9\x8A\xD8\xA7\xD8\xB3\xD9\x89 \xD9\x88 \xD9\x87\xD9\x88\xD9\x8A\xD8\xAA \xD9\x85\xD8\xA7 \xD8\xA7\xD9\x8A\xD8\xB1\xD8\xA7\xD9\x86\xD9\x8A\xD8\xA7\xD9\x86 /\xE2\x80\x8F"
185
+ - !map:Mash
186
+ score: 1.0
187
+ format: Book
188
+ material_type_display:
189
+ - v. <1 >
190
+ pub_date:
191
+ - "2000"
192
+ id: "2001417245"
193
+ lc_callnum_display:
194
+ - PK3798.N313 S87 2000
195
+ author_display: "Na\xCC\x84ra\xCC\x84yan\xCC\xA3a Pan\xCC\xA3d\xCC\xA3ita\xCC\x84ca\xCC\x84rya, 13th cent"
196
+ language_facet:
197
+ - Sanskrit
198
+ subject_topic_facet:
199
+ - Madhva, 13th cent
200
+ title_display: "Sumadhvavijayah\xCC\xA3"
201
+ published_display:
202
+ - Bangalore
203
+ - !map:Mash
204
+ score: 1.0
205
+ format: Book
206
+ author_vern_display: "\xD9\x88\xD9\x84\xD8\xAF \xD9\x85\xD9\x88\xD9\x84\xD8\xA7\xD9\x8A \xD8\xA7\xD9\x84\xD8\xB2\xD9\x8A\xD9\x86\xD8\x8C \xD8\xB3\xD9\x8A\xD8\xAF \xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD9\x88\xD9\x84\xD8\xAF \xD8\xB3\xD9\x8A\xD8\xAF"
207
+ material_type_display:
208
+ - 128 p.
209
+ title_vern_display: "\xD8\xA7\xD9\x84\xD8\xAD\xD8\xB1\xD8\xA8 \xD9\x81\xD9\x8A \xD8\xA7\xD9\x84\xD8\xA3\xD9\x84\xD9\x81\xD9\x8A\xD8\xA9 \xD8\xA7\xD9\x84\xD8\xAB\xD8\xA7\xD9\x84\xD8\xAB\xD8\xA9"
210
+ pub_date:
211
+ - "2003"
212
+ id: "2003546302"
213
+ subject_era_facet:
214
+ - 21st century
215
+ lc_callnum_display:
216
+ - U21.2 .W85 2003
217
+ author_display: "Wuld Mawla\xCC\x84y al-Zayn, Sayyid Muh\xCC\xA3ammad wuld Sayyid"
218
+ language_facet:
219
+ - Arabic
220
+ published_vern_display:
221
+ - !binary |
222
+ 2YbZiNin2YPYtNmI2Lc=
223
+
224
+ subject_topic_facet:
225
+ - War
226
+ - Military art and science
227
+ - Warfare, Conventional
228
+ - Military weapons
229
+ title_display: "al-H\xCC\xA3arb fi\xCC\x84 al-alfi\xCC\x84yah al-tha\xCC\x84lithah"
230
+ published_display:
231
+ - "Nuwa\xCC\x84kshu\xCC\x84t\xCC\xA3"
232
+ - !map:Mash
233
+ score: 1.0
234
+ format: Book
235
+ material_type_display:
236
+ - 149 p.
237
+ subject_geo_facet:
238
+ - Bon-brgya (China)
239
+ pub_date:
240
+ - "2004"
241
+ id: "2004310986"
242
+ lc_callnum_display:
243
+ - DS797.82.B663 B75 2004
244
+ author_display: "Bstan-\xCA\xBCdzin-mkhas-grub, 1967-"
245
+ language_facet:
246
+ - Tibetan
247
+ title_display: "Bon-brgya\xCA\xBCi lo rgyus lugs gn\xCC\x83is gsal ba\xCA\xBCi me lon\xCC\x87 z\xCC\x81es bya ba bz\xCC\x81ugs so"
248
+ published_display:
249
+ - Lha-sa
250
+ params: !map:HashWithIndifferentAccess
251
+ format: atom
252
+ action: index
253
+ content_format: "marc"
254
+ f: !map:HashWithIndifferentAccess
255
+ format:
256
+ - Book
257
+ controller: catalog
258
+ page: "2"
259
+ solr_response:
260
+ response:
261
+ maxScore: 1.0
262
+ docs:
263
+ - score: 1.0
264
+ format: Book
265
+ author_vern_display: "\xE2\x80\x8F\xD7\xA4\xD7\x99\xD7\xA0\xD7\xA7\xD7\x9C, \xD7\x97\xD7\x99\xD7\x99\xD7\x9D \xD7\x99\xD7\xA2\xD7\xA7\xD7\x91"
266
+ material_type_display:
267
+ - 283 p.
268
+ title_vern_display: "\xE2\x80\x8F\xD7\xA9\xD7\x95\xD7\x93\xD7\x93\xD7\x99\xD6\xBE\xD7\x99\xD7\x9D \xD7\x99\xD7\x94\xD7\x95\xD7\x93\xD7\x99\xD7\x99\xD7\x9D :\xE2\x80\x8F"
269
+ isbn_t:
270
+ - "9650101373"
271
+ pub_date:
272
+ - "1984"
273
+ subtitle_display: "sipurim mafli\xCA\xBCim ha-mevusasim \xCA\xBBal \xCA\xBBuvdot hist\xCC\xA3oriyot"
274
+ id: "86207417"
275
+ lc_callnum_display:
276
+ - G535 .F54 1984
277
+ author_display: Finkel, Chaim Jacob
278
+ language_facet:
279
+ - Hebrew
280
+ published_vern_display:
281
+ - "\xE2\x80\x8F\xD7\x99\xD7\xA8\xD7\x95\xD7\xA9\xD7\x9C\xD7\x99\xD7\x9D :\xE2\x80\x8F"
282
+ subject_topic_facet:
283
+ - Jewish pirates
284
+ - Jewish criminals
285
+ title_display: Shodede-yam Yehudiyim
286
+ published_display:
287
+ - Yerushalayim
288
+ subtitle_vern_display: "\xE2\x80\x8F\xD7\xA1\xD7\xA4\xD7\x95\xD7\xA8\xD7\x99\xD7\x9D \xD7\x9E\xD7\xA4\xD7\x9C\xD7\x99\xD7\x90\xD7\x99\xD7\x9D \xD7\x94\xD7\x9E\xD7\x91\xD7\x95\xD7\xA1\xD7\xA1\xD7\x99\xD7\x9D \xD7\xA2\xD7\x9C \xD7\xA2\xD7\x95\xD7\x91\xD7\x93\xD7\x95\xD7\xAA \xD7\x94\xD7\x99\xD7\xA1\xD7\x98\xD7\x95\xD7\xA8\xD7\x99\xD7\x95\xD7\xAA /\xE2\x80\x8F"
289
+ - score: 1.0
290
+ format: Book
291
+ author_vern_display: "\xE2\x80\x8F\xD9\x85\xD9\x88\xD8\xAD\xD8\xAF \xD8\xA7\xD8\xA8\xD8\xB7\xD8\xAD\xD9\x89\xD8\x8C \xD8\xAE\xD8\xAC\xD8\xA9"
292
+ material_type_display:
293
+ - v. <1>
294
+ title_vern_display: "\xE2\x80\x8F\xD8\xA7\xD8\xB4\xD9\x86\xD8\xA7\xD8\xA6\xD9\x89 \xD8\xA8\xD8\xA7 \xD8\xAD\xD9\x88\xD8\xB2\xD9\x87\xE2\x80\x8C\xD9\x87\xD8\xA7\xD9\x89 \xD8\xB9\xD9\x84\xD9\x85\xD9\x8A\xDB\x80 \xD8\xB4\xD9\x8A\xD8\xB9\xD9\x87 \xD8\xAF\xD8\xB1 \xD8\xB7\xD9\x88\xD9\x84 \xD8\xAA\xD8\xA7\xD8\xB1\xD9\x8A\xD8\xAE /\xE2\x80\x8F"
295
+ subject_geo_facet:
296
+ - Islamic countries
297
+ pub_date:
298
+ - "1986"
299
+ id: "87931798"
300
+ lc_callnum_display:
301
+ - BP44 .M88 1986
302
+ author_display: "Muvah\xCC\xA3h\xCC\xA3id Abt\xCC\xA3ah\xCC\xA3i\xCC\x84, H\xCC\xA3ujjat"
303
+ language_facet:
304
+ - Persian
305
+ published_vern_display:
306
+ - "\xE2\x80\x8F\xD8\xA7\xD8\xB5\xD9\x81\xD9\x87\xD8\xA7\xD9\x86 :\xE2\x80\x8F"
307
+ subject_topic_facet:
308
+ - Religious institutions
309
+ - Shiites
310
+ - Islamic universities and colleges
311
+ title_display: "A\xCC\x84shna\xCC\x84\xCA\xBCi\xCC\x84 ba\xCC\x84 h\xCC\xA3awzah\xCA\xB9ha\xCC\x84-yi \xCA\xBBilmi\xCC\x84yah-\xCA\xBCi Shi\xCC\x84\xCA\xBBah dar t\xCC\xA3u\xCC\x84l-i ta\xCC\x84ri\xCC\x84kh"
312
+ published_display:
313
+ - "Is\xCC\xA3faha\xCC\x84n"
314
+ - score: 1.0
315
+ format: Book
316
+ material_type_display:
317
+ - 65 p.
318
+ pub_date:
319
+ - "1975"
320
+ subtitle_display: "t\xCA\xBBeoriul-met\xCA\xBBoduri narkvevi"
321
+ id: "90142413"
322
+ lc_callnum_display:
323
+ - MLCSN 96/3906 (H)
324
+ author_display: "Lomt\xCA\xBBat\xCA\xBBiz\xCC\x87e, C\xCC\x8Cola, 1879-1915"
325
+ language_facet:
326
+ - Georgian
327
+ subject_topic_facet:
328
+ - Industrial workers; life style
329
+ title_display: "Mrecvelobis mus\xCC\x8Cakis c\xCA\xBBxovrebis cesi"
330
+ published_display:
331
+ - "T\xCA\xBBbilisi"
332
+ - score: 1.0
333
+ format: Book
334
+ material_type_display:
335
+ - 5 v.
336
+ title_vern_display: !binary |
337
+ 5YyX6Z+T44CA5rOV5Luk6ZuG44CA77yP
338
+
339
+ subject_geo_facet:
340
+ - Korea (North)
341
+ pub_date:
342
+ - "1990"
343
+ id: "92117465"
344
+ lc_callnum_display:
345
+ - KPC13 .K67 1990
346
+ author_display: Korea (North)
347
+ language_facet:
348
+ - Korean
349
+ published_vern_display:
350
+ - !binary |
351
+ 7ISc7Jq444CA5oyB5Yil5biC44CA77ya
352
+
353
+ subject_topic_facet:
354
+ - Law
355
+ title_display: "Pukhan po\xCC\x86mnyo\xCC\x86ngjip"
356
+ published_display:
357
+ - "So\xCC\x86ul T\xCA\xBBu\xCC\x86kpyo\xCC\x86lsi"
358
+ - score: 1.0
359
+ format: Book
360
+ author_vern_display: "\xE2\x80\x8F\xD7\x99\xD7\xA9\xD7\xA8\xD7\x90\xD7\x9C \xD7\x9E\xD7\x90\xD7\x99\xD7\xA8,\xE2\x80\x8F \xE2\x80\x8F\xD7\x94\xD7\x9B\xD7\x94\xD7\x9F"
361
+ material_type_display:
362
+ - v. <1-5>
363
+ title_vern_display: "\xE2\x80\x8F\xD7\xA1\xD7\xA4\xD7\xA8 \xD7\x9E\xD7\xA9\xD7\xA0\xD7\x94 \xD7\x91\xD7\xA8\xD7\x95\xD7\xA8\xD7\x94 :\xE2\x80\x8F"
364
+ pub_date:
365
+ - "1992"
366
+ subtitle_display: "v\xCC\xA3e-hu perush yafeh u-menupeh \xCA\xBBal Shulh\xCC\xA3an \xCA\xBBarukh Orah\xCC\xA3 h\xCC\xA3ayim asher h\xCC\xA3iber Yosef K\xCC\xA3aro ... \xCA\xBBim h\xCC\xA3idushe dinim she-hishmit\xCC\xA3 ha-ga\xCA\xBCon ... v\xCC\xA3e-himtsi\xCA\xBCam ... Mosheh Iserlish"
367
+ id: "92828023"
368
+ lc_callnum_display:
369
+ - BM520.88.A53 I88 1992b
370
+ author_display: Israel Meir, ha-Kohen, 1838-1933
371
+ language_facet:
372
+ - Hebrew
373
+ published_vern_display:
374
+ - "\xE2\x80\x8F[Jerusalem? :\xE2\x80\x8F"
375
+ subject_topic_facet:
376
+ - Karo, Joseph ben Ephraim, 1488-1575
377
+ - Jewish law
378
+ - Judaism
379
+ title_display: Sefer Mishnah berurah
380
+ published_display:
381
+ - Jerusalem?
382
+ subtitle_vern_display: "\xE2\x80\x8F\xD7\x95\xD7\x94\xD7\x95\xD7\x90 \xD7\xA4\xD7\x99\xD7\xA8\xD7\x95\xD7\xA9 \xD7\x99\xD7\xA4\xD7\x94 \xD7\x95\xD7\x9E\xD7\xA0\xD7\xA4\xD7\x94 \xD7\xA2\xD7\x9C \xD7\xA9\xD7\x9C\xD7\x97\xD7\x9F \xD7\xA2\xD7\xA8\xD7\x95\xD7\x9A \xD7\x90\xD7\xA8\xD7\x97 \xD7\x97\xD7\x99\xD7\x99\xD7\x9D \xD7\x90\xD7\xA9\xD7\xA8 \xD7\x97\xD7\x91\xD7\xA8 \xD7\x99\xD7\x95\xD7\xA1\xD7\xA3 \xD7\xA7\xD7\x90\xD7\xA8\xD7\x95 ... \xD7\xA2\xD7\x9D \xD7\x97\xD7\x99\xD7\x93\xD7\x95\xD7\xA9\xD7\x99 \xD7\x93\xD7\x99\xD7\xA0\xD7\x99\xD7\x9D \xD7\xA9\xD7\x94\xD7\xA9\xD7\x9E\xD7\x99\xD7\x98 \xD7\x94\xD7\x92\xD7\x90\xD7\x95\xD7\x9F ... \xD7\x95\xD7\x94\xD7\x9E\xD7\xA6\xD7\x99\xD7\x90\xD7\x9D \xD7\x9E\xD7\xA9\xD7\x94 \xD7\x90\xD7\x99\xD7\xA1\xD7\xA8\xD7\x9C\xD7\x99\xD7\xA9 /\xE2\x80\x8F"
383
+ - score: 1.0
384
+ format: Book
385
+ author_vern_display: "\xEA\xB9\x80\xE3\x80\x80\xED\x99\x8D\xEC\x8B\xA0, 1947-"
386
+ material_type_display:
387
+ - 289 p.
388
+ title_vern_display: !binary |
389
+ 7JWE7KeB64+E44CA6re465+t44CA7KCA65+t44CA7IKs7Iut64uI6rmM
390
+
391
+ subject_geo_facet:
392
+ - Seoul (Korea)
393
+ - Korea (South)
394
+ pub_date:
395
+ - "1990"
396
+ subtitle_display: "kangnam yo\xCC\x86in kwa sin p\xCA\xBBalbulch\xCA\xBBul : Kim Hong-sin set\xCA\xBBae ru\xCC\x86p\xCA\xBBo"
397
+ id: "94120425"
398
+ lc_callnum_display:
399
+ - HQ1765.5 .K46 1990
400
+ author_display: Kim, Hong-sin, 1947-
401
+ language_facet:
402
+ - Korean
403
+ published_vern_display:
404
+ - !binary |
405
+ 7ISc7Jq4
406
+
407
+ subject_topic_facet:
408
+ - Women
409
+ title_display: "Ajikto ku\xCC\x86ro\xCC\x86k cho\xCC\x86ro\xCC\x86k sasimnikka"
410
+ published_display:
411
+ - "So\xCC\x86ul"
412
+ subtitle_vern_display: "\xEA\xB0\x95\xEB\x82\xA8\xE3\x80\x80\xEC\x97\xAC\xEC\x9D\xB8\xE3\x80\x80\xEA\xB3\xBC\xE3\x80\x80\xEC\x8B\xA0\xE3\x80\x80\xED\x8C\x94\xEB\xB6\x88\xEC\xB6\x9C : \xE9\x87\x91\xE3\x80\x80\xE6\xB4\xAA\xE4\xBF\xA1\xE3\x80\x80\xEC\x84\xB8\xED\x83\x9C\xE3\x80\x80\xEB\xA5\xB4\xED\x8F\xAC"
413
+ - score: 1.0
414
+ format: Book
415
+ author_vern_display: "\xE2\x80\x8F\xD8\xB1\xD8\xAC\xD8\xA7\xD9\x8A\xD9\x89\xD8\x8C \xD9\x81\xD8\xB1\xD9\x87\xD9\x86\xDA\xAF ."
416
+ material_type_display:
417
+ - 323 p.
418
+ title_vern_display: "\xE2\x80\x8F\xD9\x85\xD8\xB9\xD8\xB1\xD9\x83\xDB\x80 \xD8\xAC\xD9\x87\xD8\xA7\xD9\x86\xE2\x80\x8C\xD8\xA8\xD9\x8A\xD9\x86\xD9\x89\xD9\x87\xD8\xA7 :\xE2\x80\x8F"
419
+ subject_geo_facet:
420
+ - Iran
421
+ pub_date:
422
+ - "1994"
423
+ subtitle_display: "dar khiradvarzi\xCC\x84-i siya\xCC\x84si\xCC\x84 va huvi\xCC\x84yat-i ma\xCC\x84 I\xCC\x84ra\xCC\x84ni\xCC\x84ya\xCC\x84n"
424
+ id: "96933325"
425
+ lc_callnum_display:
426
+ - DS274 .R327 1994
427
+ author_display: "Raja\xCC\x84yi\xCC\x84, Farhang, 1952 or 3-"
428
+ language_facet:
429
+ - Persian
430
+ published_vern_display:
431
+ - "\xE2\x80\x8F\xD8\xAA\xD9\x87\xD8\xB1\xD8\xA7\xD9\x86 :\xE2\x80\x8F"
432
+ subject_topic_facet:
433
+ - Political science
434
+ - Iranians
435
+ title_display: "Ma\xCA\xBBrakah-\xCA\xBCi jaha\xCC\x84n\xCA\xB9bi\xCC\x84ni\xCC\x84\xCA\xB9ha\xCC\x84"
436
+ published_display:
437
+ - "Tihra\xCC\x84n"
438
+ subtitle_vern_display: "\xE2\x80\x8F\xD8\xAF\xD8\xB1 \xD8\xAE\xD8\xB1\xD8\xAF\xD9\x88\xD8\xB1\xD8\xB2\xD9\x89 \xD8\xB3\xD9\x8A\xD8\xA7\xD8\xB3\xD9\x89 \xD9\x88 \xD9\x87\xD9\x88\xD9\x8A\xD8\xAA \xD9\x85\xD8\xA7 \xD8\xA7\xD9\x8A\xD8\xB1\xD8\xA7\xD9\x86\xD9\x8A\xD8\xA7\xD9\x86 /\xE2\x80\x8F"
439
+ - score: 1.0
440
+ format: Book
441
+ material_type_display:
442
+ - v. <1 >
443
+ pub_date:
444
+ - "2000"
445
+ id: "2001417245"
446
+ lc_callnum_display:
447
+ - PK3798.N313 S87 2000
448
+ author_display: "Na\xCC\x84ra\xCC\x84yan\xCC\xA3a Pan\xCC\xA3d\xCC\xA3ita\xCC\x84ca\xCC\x84rya, 13th cent"
449
+ language_facet:
450
+ - Sanskrit
451
+ subject_topic_facet:
452
+ - Madhva, 13th cent
453
+ title_display: "Sumadhvavijayah\xCC\xA3"
454
+ published_display:
455
+ - Bangalore
456
+ - score: 1.0
457
+ format: Book
458
+ author_vern_display: "\xD9\x88\xD9\x84\xD8\xAF \xD9\x85\xD9\x88\xD9\x84\xD8\xA7\xD9\x8A \xD8\xA7\xD9\x84\xD8\xB2\xD9\x8A\xD9\x86\xD8\x8C \xD8\xB3\xD9\x8A\xD8\xAF \xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD9\x88\xD9\x84\xD8\xAF \xD8\xB3\xD9\x8A\xD8\xAF"
459
+ material_type_display:
460
+ - 128 p.
461
+ title_vern_display: "\xD8\xA7\xD9\x84\xD8\xAD\xD8\xB1\xD8\xA8 \xD9\x81\xD9\x8A \xD8\xA7\xD9\x84\xD8\xA3\xD9\x84\xD9\x81\xD9\x8A\xD8\xA9 \xD8\xA7\xD9\x84\xD8\xAB\xD8\xA7\xD9\x84\xD8\xAB\xD8\xA9"
462
+ pub_date:
463
+ - "2003"
464
+ id: "2003546302"
465
+ subject_era_facet:
466
+ - 21st century
467
+ lc_callnum_display:
468
+ - U21.2 .W85 2003
469
+ author_display: "Wuld Mawla\xCC\x84y al-Zayn, Sayyid Muh\xCC\xA3ammad wuld Sayyid"
470
+ language_facet:
471
+ - Arabic
472
+ published_vern_display:
473
+ - !binary |
474
+ 2YbZiNin2YPYtNmI2Lc=
475
+
476
+ subject_topic_facet:
477
+ - War
478
+ - Military art and science
479
+ - Warfare, Conventional
480
+ - Military weapons
481
+ title_display: "al-H\xCC\xA3arb fi\xCC\x84 al-alfi\xCC\x84yah al-tha\xCC\x84lithah"
482
+ published_display:
483
+ - "Nuwa\xCC\x84kshu\xCC\x84t\xCC\xA3"
484
+ - score: 1.0
485
+ format: Book
486
+ material_type_display:
487
+ - 149 p.
488
+ subject_geo_facet:
489
+ - Bon-brgya (China)
490
+ pub_date:
491
+ - "2004"
492
+ id: "2004310986"
493
+ lc_callnum_display:
494
+ - DS797.82.B663 B75 2004
495
+ author_display: "Bstan-\xCA\xBCdzin-mkhas-grub, 1967-"
496
+ language_facet:
497
+ - Tibetan
498
+ title_display: "Bon-brgya\xCA\xBCi lo rgyus lugs gn\xCC\x83is gsal ba\xCA\xBCi me lon\xCC\x87 z\xCC\x81es bya ba bz\xCC\x81ugs so"
499
+ published_display:
500
+ - Lha-sa
501
+ start: 10
502
+ numFound: 30
503
+ facet_counts:
504
+ facet_dates: {}
505
+
506
+ facet_queries: {}
507
+
508
+ facet_fields:
509
+ format:
510
+ - Book
511
+ - 30
512
+ subject_geo_facet:
513
+ - India
514
+ - 2
515
+ - Iran
516
+ - 2
517
+ - Japan
518
+ - 2
519
+ - Bon-brgya (China)
520
+ - 1
521
+ - Bridgeton
522
+ - 1
523
+ - China
524
+ - 1
525
+ - Economic history
526
+ - 1
527
+ - Hong Kong (China)
528
+ - 1
529
+ - Islamic countries
530
+ - 1
531
+ - Israel
532
+ - 1
533
+ - Kazakhstan
534
+ - 1
535
+ pub_date:
536
+ - "2008"
537
+ - 4
538
+ - "1976"
539
+ - 2
540
+ - "1986"
541
+ - 2
542
+ - "1990"
543
+ - 2
544
+ - "1997"
545
+ - 2
546
+ - "2000"
547
+ - 2
548
+ - "1941"
549
+ - 1
550
+ - "1946"
551
+ - 1
552
+ - "1952"
553
+ - 1
554
+ - "1962"
555
+ - 1
556
+ - "1975"
557
+ - 1
558
+ subject_era_facet:
559
+ - 20th century
560
+ - 3
561
+ - 1997-
562
+ - 2
563
+ - 21st century
564
+ - 2
565
+ - 1990-
566
+ - 1
567
+ - 2005-2015
568
+ - 1
569
+ - "Koryo\xCC\x86 period, 935-1392"
570
+ - 1
571
+ lc_1letter_facet:
572
+ - B - Philosophy, Psychology, Religion
573
+ - 6
574
+ - D - World History
575
+ - 6
576
+ - H - Social Sciences
577
+ - 4
578
+ - P - Language & Literature
579
+ - 4
580
+ - M - Music
581
+ - 3
582
+ - K - Law
583
+ - 2
584
+ - E - History of the Americas (General)
585
+ - 1
586
+ - G - Geography, Anthropology, Recreation
587
+ - 1
588
+ - U - Military Science
589
+ - 1
590
+ language_facet:
591
+ - Tibetan
592
+ - 6
593
+ - Hebrew
594
+ - 3
595
+ - Korean
596
+ - 3
597
+ - Persian
598
+ - 3
599
+ - Sanskrit
600
+ - 3
601
+ - Urdu
602
+ - 3
603
+ - Arabic
604
+ - 2
605
+ - English
606
+ - 2
607
+ - Japanese
608
+ - 2
609
+ - Russian
610
+ - 2
611
+ - Chinese
612
+ - 1
613
+ subject_topic_facet:
614
+ - Japanese drama
615
+ - 2
616
+ - Kubo, Sakae, 1901-1958
617
+ - 2
618
+ - Political plays, Japanese
619
+ - 2
620
+ - Theater
621
+ - 2
622
+ - Women
623
+ - 2
624
+ - Accident insurance
625
+ - 1
626
+ - Buddhism
627
+ - 1
628
+ - Delaware Indians
629
+ - 1
630
+ - Delaware women
631
+ - 1
632
+ - Education and state
633
+ - 1
634
+ - Family allowances
635
+ - 1
636
+ responseHeader:
637
+ status: 0
638
+ QTime: 6
639
+ params:
640
+ fq: "{!raw f=format}Book"
641
+ f.subject_facet.facet.limit: "21"
642
+ qt: search
643
+ facet.field:
644
+ - format
645
+ - pub_date
646
+ - subject_topic_facet
647
+ - language_facet
648
+ - lc_1letter_facet
649
+ - subject_geo_facet
650
+ - subject_era_facet
651
+ facet.limit: "11"
652
+ facet: "true"
653
+ start: "10"
654
+ rows: "10"
655
+ wt: ruby