blacklight-maps 0.5.2 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +2 -0
- data/.rubocop.yml +99 -0
- data/.solr_wrapper.yml +7 -0
- data/.travis.yml +19 -16
- data/Gemfile +40 -7
- data/README.md +13 -12
- data/Rakefile +35 -32
- data/app/assets/images/blacklight/maps.svg +1 -0
- data/app/assets/javascripts/blacklight-maps.js +1 -4
- data/app/assets/javascripts/blacklight-maps/blacklight-maps-browse.js +7 -8
- data/app/assets/stylesheets/blacklight_maps/blacklight-maps.scss +1 -2
- data/app/assets/stylesheets/blacklight_maps/default.scss +7 -10
- data/app/helpers/blacklight/blacklight_maps_helper_behavior.rb +81 -86
- data/app/helpers/blacklight_maps_helper.rb +2 -0
- data/app/views/catalog/_show_maplet_default.html.erb +8 -9
- data/app/views/catalog/map.html.erb +2 -2
- data/blacklight-maps.gemspec +27 -26
- data/config/locales/blacklight-maps-zh.yml +7 -7
- data/config/locales/blacklight-maps.ar.yml +21 -0
- data/config/locales/blacklight-maps.de.yml +21 -0
- data/config/locales/blacklight-maps.en.yml +1 -1
- data/config/locales/blacklight-maps.es.yml +21 -0
- data/config/locales/blacklight-maps.fr.yml +8 -8
- data/config/locales/blacklight-maps.hu.yml +21 -0
- data/config/locales/blacklight-maps.it.yml +8 -8
- data/config/locales/blacklight-maps.nl.yml +21 -0
- data/config/locales/blacklight-maps.pt-BR.yml +21 -0
- data/config/locales/blacklight-maps.sq.yml +21 -0
- data/config/routes.rb +3 -2
- data/lib/blacklight/maps.rb +8 -2
- data/lib/blacklight/maps/controller.rb +27 -0
- data/lib/blacklight/maps/engine.rb +12 -13
- data/lib/blacklight/maps/export.rb +112 -93
- data/lib/blacklight/maps/geometry.rb +30 -18
- data/lib/blacklight/maps/maps_search_builder.rb +4 -3
- data/lib/blacklight/maps/render_constraints_override.rb +63 -29
- data/lib/blacklight/maps/version.rb +3 -1
- data/lib/generators/blacklight_maps/install_generator.rb +38 -31
- data/lib/generators/blacklight_maps/templates/search_history_controller.rb +2 -0
- data/{solr_conf → lib/generators/blacklight_maps/templates/solr}/conf/schema.xml +0 -0
- data/{solr_conf → lib/generators/blacklight_maps/templates/solr}/conf/solrconfig.xml +0 -0
- data/lib/railties/blacklight_maps.rake +10 -7
- data/spec/controllers/catalog_controller_spec.rb +20 -10
- data/spec/fixtures/sample_solr_documents.yml +909 -906
- data/spec/helpers/blacklight_maps_helper_spec.rb +60 -108
- data/spec/lib/blacklight/maps/export_spec.rb +109 -143
- data/spec/lib/blacklight/maps/geometry_spec.rb +34 -21
- data/spec/lib/blacklight/maps/maps_search_builder_spec.rb +17 -21
- data/spec/lib/blacklight/maps/render_constraints_override_spec.rb +42 -69
- data/spec/spec_helper.rb +19 -21
- data/spec/system/index_view_spec.rb +127 -0
- data/spec/system/initial_view_spec.rb +28 -0
- data/spec/system/map_view_spec.rb +50 -0
- data/spec/system/show_view_maplet_spec.rb +78 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +6 -21
- data/vendor/assets/images/layers-2x.png +0 -0
- data/vendor/assets/images/layers.png +0 -0
- data/vendor/assets/images/marker-icon-2x.png +0 -0
- data/vendor/assets/images/marker-icon.png +0 -0
- data/vendor/assets/images/marker-shadow.png +0 -0
- data/vendor/assets/javascripts/leaflet.js.erb +13922 -0
- data/vendor/assets/javascripts/leaflet.markercluster.js +3 -0
- data/vendor/assets/stylesheets/MarkerCluster.Default.css +60 -0
- data/vendor/assets/stylesheets/MarkerCluster.css +14 -0
- data/vendor/assets/stylesheets/leaflet.css +635 -0
- metadata +86 -91
- data/config/jetty.yml +0 -7
- data/lib/blacklight/maps/controller_override.rb +0 -20
- data/lib/generators/blacklight_maps/templates/saved_searches_controller.rb +0 -5
- data/spec/features/initial_view_spec.rb +0 -21
- data/spec/features/maps_spec.rb +0 -202
- data/spec/features/show_view_maplet_spec.rb +0 -93
- data/spec/test_app_templates/Gemfile.extra +0 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module BlacklightMaps
|
2
4
|
module MapsSearchBuilderBehavior
|
3
5
|
extend ActiveSupport::Concern
|
@@ -11,7 +13,7 @@ module BlacklightMaps
|
|
11
13
|
if blacklight_params[:spatial_search_type] && blacklight_params[:coordinates]
|
12
14
|
solr_parameters[:fq] ||= []
|
13
15
|
if blacklight_params[:spatial_search_type] == 'bbox'
|
14
|
-
solr_parameters[:fq] << blacklight_config.view.maps.coordinates_field
|
16
|
+
solr_parameters[:fq] << "#{blacklight_config.view.maps.coordinates_field}:#{blacklight_params[:coordinates]}"
|
15
17
|
else
|
16
18
|
solr_parameters[:fq] << "{!geofilt sfield=#{blacklight_config.view.maps.coordinates_field}}"
|
17
19
|
solr_parameters[:pt] = blacklight_params[:coordinates]
|
@@ -20,6 +22,5 @@ module BlacklightMaps
|
|
20
22
|
end
|
21
23
|
solr_parameters
|
22
24
|
end
|
23
|
-
|
24
25
|
end
|
25
|
-
end
|
26
|
+
end
|
@@ -1,61 +1,95 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Meant to be applied on top of Blacklight view helpers, to over-ride
|
2
4
|
# certain methods from RenderConstraintsHelper (newish in BL),
|
3
5
|
# to affect constraints rendering
|
4
6
|
module BlacklightMaps
|
5
|
-
|
6
7
|
module RenderConstraintsOverride
|
7
|
-
|
8
|
-
#
|
9
|
-
def
|
10
|
-
|
11
|
-
end
|
12
|
-
|
13
|
-
def has_spatial_parameters?
|
14
|
-
!params[:coordinates].blank?
|
8
|
+
# @param search_state [Blacklight::SearchState]
|
9
|
+
# @return [Boolean]
|
10
|
+
def has_spatial_parameters?(search_state)
|
11
|
+
search_state.params[:coordinates].present?
|
15
12
|
end
|
16
13
|
|
17
14
|
# BlacklightMaps override: check for coordinate parameters
|
18
|
-
|
19
|
-
|
15
|
+
# @param params_or_search_state [Blacklight::SearchState || ActionController::Parameters]
|
16
|
+
# @return [Boolean]
|
17
|
+
def query_has_constraints?(params_or_search_state = search_state)
|
18
|
+
search_state = convert_to_search_state(params_or_search_state)
|
19
|
+
has_spatial_parameters?(search_state) || super
|
20
20
|
end
|
21
21
|
|
22
22
|
# BlacklightMaps override: include render_spatial_query() in rendered constraints
|
23
|
-
|
24
|
-
|
23
|
+
# @param localized_params [Hash] localized_params query parameters
|
24
|
+
# @param local_search_state [Blacklight::SearchState]
|
25
|
+
# @return [String]
|
26
|
+
def render_constraints(localized_params = params, local_search_state = search_state)
|
27
|
+
params_or_search_state = if localized_params != params
|
28
|
+
localized_params
|
29
|
+
else
|
30
|
+
local_search_state
|
31
|
+
end
|
32
|
+
render_spatial_query(params_or_search_state) + super
|
25
33
|
end
|
26
34
|
|
27
35
|
# BlacklightMaps override: include render_search_to_s_coord() in rendered constraints
|
28
36
|
# Simpler textual version of constraints, used on Search History page.
|
37
|
+
# @param params [Hash]
|
38
|
+
# @return [String]
|
29
39
|
def render_search_to_s(params)
|
30
40
|
render_search_to_s_coord(params) + super
|
31
41
|
end
|
32
42
|
|
33
43
|
##
|
34
44
|
# Render the search query constraint
|
45
|
+
# @param params [Hash]
|
46
|
+
# @return [String]
|
35
47
|
def render_search_to_s_coord(params)
|
36
|
-
return
|
37
|
-
|
48
|
+
return ''.html_safe if params[:coordinates].blank?
|
49
|
+
|
50
|
+
render_search_to_s_element(spatial_constraint_label(params),
|
51
|
+
render_filter_value(params[:coordinates]))
|
38
52
|
end
|
39
53
|
|
40
54
|
# Render the spatial query constraints
|
41
|
-
|
55
|
+
# @param params_or_search_state [Blacklight::SearchState || ActionController::Parameters]
|
56
|
+
# @return [String]
|
57
|
+
def render_spatial_query(params_or_search_state = search_state)
|
58
|
+
search_state = convert_to_search_state(params_or_search_state)
|
59
|
+
|
42
60
|
# So simple don't need a view template, we can just do it here.
|
43
|
-
return ''.html_safe if
|
61
|
+
return ''.html_safe if search_state.params[:coordinates].blank?
|
44
62
|
|
45
|
-
render_constraint_element(spatial_constraint_label(
|
46
|
-
|
47
|
-
:
|
48
|
-
:
|
49
|
-
:spatial_search_type=>nil,
|
50
|
-
:action=>'index')))
|
63
|
+
render_constraint_element(spatial_constraint_label(search_state),
|
64
|
+
search_state.params[:coordinates],
|
65
|
+
classes: ['coordinates'],
|
66
|
+
remove: remove_spatial_params(search_state)) # _params.except!(:coordinates, :spatial_search_type)
|
51
67
|
end
|
52
68
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
69
|
+
##
|
70
|
+
#
|
71
|
+
# @param search_state [Blacklight::SearchState]
|
72
|
+
# @return [String]
|
73
|
+
# remove the spatial params from params
|
74
|
+
def remove_spatial_params(search_state)
|
75
|
+
search_action_path(search_state.params.dup.except!(:coordinates, :spatial_search_type))
|
57
76
|
end
|
58
77
|
|
78
|
+
##
|
79
|
+
# render the label for the spatial constraint
|
80
|
+
# @param params_or_search_state [Blacklight::SearchState || ActionController::Parameters]
|
81
|
+
# @return [String]
|
82
|
+
def spatial_constraint_label(params_or_search_state)
|
83
|
+
search_params = if params_or_search_state.is_a?(Blacklight::SearchState)
|
84
|
+
params_or_search_state.params
|
85
|
+
else
|
86
|
+
params_or_search_state
|
87
|
+
end
|
88
|
+
if search_params[:spatial_search_type] && search_params[:spatial_search_type] == 'bbox'
|
89
|
+
t('blacklight.search.filters.coordinates.bbox')
|
90
|
+
else
|
91
|
+
t('blacklight.search.filters.coordinates.point')
|
92
|
+
end
|
93
|
+
end
|
59
94
|
end
|
60
|
-
|
61
|
-
end
|
95
|
+
end
|
@@ -1,61 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'rails/generators'
|
2
4
|
|
3
5
|
module BlacklightMaps
|
4
6
|
class Install < Rails::Generators::Base
|
7
|
+
source_root File.expand_path('templates', __dir__)
|
8
|
+
|
9
|
+
desc 'Install Blacklight-Maps'
|
5
10
|
|
6
|
-
|
11
|
+
def verify_blacklight_installed
|
12
|
+
return if IO.read('app/controllers/application_controller.rb').include?('include Blacklight::Controller')
|
7
13
|
|
8
|
-
|
14
|
+
say_status('info', 'BLACKLIGHT NOT INSTALLED; GENERATING BLACKLIGHT', :blue)
|
15
|
+
generate 'blacklight:install'
|
16
|
+
end
|
9
17
|
|
10
18
|
def assets
|
11
|
-
copy_file
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
//
|
19
|
-
// Required by Blacklight-Maps
|
20
|
-
//= require blacklight-maps}
|
21
|
-
end
|
19
|
+
copy_file 'blacklight_maps.css.scss', 'app/assets/stylesheets/blacklight_maps.css.scss'
|
20
|
+
return if IO.read('app/assets/javascripts/application.js').include?('blacklight-maps')
|
21
|
+
|
22
|
+
marker = '//= require blacklight/blacklight'
|
23
|
+
insert_into_file 'app/assets/javascripts/application.js', after: marker do
|
24
|
+
"\n// Required by BlacklightMaps" \
|
25
|
+
"\n//= require blacklight-maps"
|
22
26
|
end
|
27
|
+
append_to_file 'config/initializers/assets.rb',
|
28
|
+
"\nRails.application.config.assets.paths << Rails.root.join('vendor', 'assets', 'images')\n"
|
23
29
|
end
|
24
30
|
|
25
31
|
def inject_search_builder
|
26
|
-
inject_into_file 'app/models/search_builder.rb',
|
32
|
+
inject_into_file 'app/models/search_builder.rb',
|
33
|
+
after: /include Blacklight::Solr::SearchBuilderBehavior.*$/ do
|
27
34
|
"\n include BlacklightMaps::MapsSearchBuilderBehavior\n"
|
28
35
|
end
|
29
36
|
end
|
30
37
|
|
31
38
|
def install_catalog_controller_mixin
|
32
|
-
inject_into_file
|
33
|
-
|
39
|
+
inject_into_file 'app/controllers/catalog_controller.rb',
|
40
|
+
after: /include Blacklight::Catalog.*$/ do
|
41
|
+
"\n include BlacklightMaps::Controller\n"
|
34
42
|
end
|
35
43
|
end
|
36
44
|
|
37
45
|
def install_search_history_controller
|
38
|
-
target_file =
|
39
|
-
if File.
|
40
|
-
inject_into_file target_file,
|
46
|
+
target_file = 'app/controllers/search_history_controller.rb'
|
47
|
+
if File.exist?(target_file)
|
48
|
+
inject_into_file target_file,
|
49
|
+
after: /include Blacklight::SearchHistory/ do
|
41
50
|
"\n helper BlacklightMaps::RenderConstraintsOverride\n"
|
42
51
|
end
|
43
52
|
else
|
44
|
-
copy_file
|
53
|
+
copy_file 'search_history_controller.rb', target_file
|
45
54
|
end
|
46
55
|
end
|
47
56
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
57
|
+
# TODO: inject Solr configuration (if needed)
|
58
|
+
def inject_solr_configuration
|
59
|
+
target_file = 'solr/conf/schema.xml'
|
60
|
+
return unless File.exist?(target_file)
|
61
|
+
|
62
|
+
inject_into_file target_file,
|
63
|
+
after: %r{<copyField source="title_tsim" dest="title_spell"/>} do
|
64
|
+
"\n <copyField source=\"coordinates_srpt\" dest=\"coordinates_ssim\" />\n"
|
56
65
|
end
|
57
66
|
end
|
58
|
-
|
59
|
-
|
60
67
|
end
|
61
|
-
end
|
68
|
+
end
|
File without changes
|
File without changes
|
@@ -1,14 +1,17 @@
|
|
1
|
-
|
2
|
-
require 'generators/blacklight_maps/install_generator'
|
1
|
+
# frozen_string_literal: true
|
3
2
|
|
4
3
|
namespace :blacklight_maps do
|
5
|
-
namespace :
|
6
|
-
desc
|
7
|
-
task :
|
8
|
-
|
4
|
+
namespace :index do
|
5
|
+
desc 'Put sample data into solr'
|
6
|
+
task seed: [:environment] do
|
7
|
+
require 'yaml'
|
8
|
+
docs = YAML.safe_load(File.open(File.join(Blacklight::Maps.root,
|
9
|
+
'spec',
|
10
|
+
'fixtures',
|
11
|
+
'sample_solr_documents.yml')))
|
9
12
|
conn = Blacklight.default_index.connection
|
10
13
|
conn.add docs
|
11
14
|
conn.commit
|
12
15
|
end
|
13
16
|
end
|
14
|
-
end
|
17
|
+
end
|
@@ -1,22 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'spec_helper'
|
2
4
|
|
3
5
|
describe CatalogController do
|
4
|
-
|
5
6
|
render_views
|
6
7
|
|
7
|
-
|
8
|
+
# test setting configuration defaults in Blacklight::Maps::Engine here
|
9
|
+
describe 'maps config' do
|
10
|
+
let(:maps_config) { described_class.blacklight_config.view.maps }
|
8
11
|
|
12
|
+
it 'sets the defaults in blacklight_config' do
|
13
|
+
%i[geojson_field placename_property coordinates_field search_mode spatial_query_dist
|
14
|
+
placename_field coordinates_facet_field facet_mode tileurl mapattribution maxzoom
|
15
|
+
show_initial_zoom].each do |config_method|
|
16
|
+
expect(maps_config.send(config_method)).not_to be_blank
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "GET 'map'" do
|
9
22
|
before { get :map }
|
10
23
|
|
11
|
-
it
|
12
|
-
expect(response).to
|
13
|
-
expect(assigns(:document_list)).to_not be_nil
|
24
|
+
it 'responds to the #map action' do
|
25
|
+
expect(response.code).to eq '200'
|
14
26
|
end
|
15
27
|
|
16
|
-
it "
|
17
|
-
expect(response.body).to
|
28
|
+
it "renders the '/map' partial" do
|
29
|
+
expect(response.body).to have_selector('#blacklight-index-map')
|
18
30
|
end
|
19
|
-
|
20
31
|
end
|
21
|
-
|
22
|
-
end
|
32
|
+
end
|
@@ -1,9 +1,145 @@
|
|
1
1
|
---
|
2
|
-
-
|
2
|
+
- subtitle_tsim: 'guft va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻAbd Allāh Nūrī dar Majlis-i panjum'
|
3
|
+
author_vern_ssim: "نورى، عبد الله"
|
4
|
+
subject_addl_ssim:
|
5
|
+
- Interviews
|
6
|
+
- Trials, litigation, etc
|
7
|
+
- Officials and employees Interviews
|
8
|
+
- Politics and government 1997-
|
9
|
+
title_tsim: Naqdī barā-yi tamām-i fuṣūl
|
10
|
+
subject_era_ssim:
|
11
|
+
- 1997-
|
12
|
+
id: 00313831
|
13
|
+
isbn_ssim:
|
14
|
+
- '9645625963'
|
15
|
+
subject_geo_ssim:
|
16
|
+
- Iran
|
17
|
+
subject_ssim:
|
18
|
+
- Nūrī, ʻAbd Allāh, 1949-
|
19
|
+
- Iran. Vizārat-i Kishvar
|
20
|
+
lc_alpha_ssim:
|
21
|
+
- DS
|
22
|
+
title_series_tsim:
|
23
|
+
- Farhang-i ʻumūmī
|
24
|
+
- "فرهنگ عمومى"
|
25
|
+
subtitle_tsim:
|
26
|
+
- 'guft va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i
|
27
|
+
ʻAbd Allāh Nūrī dar Majlis-i panjum.'
|
28
|
+
- "گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح عبد الله نورى در
|
29
|
+
مجلس پنجم"
|
30
|
+
lc_1letter_ssim:
|
31
|
+
- D - World History
|
32
|
+
author_tsim:
|
33
|
+
- Nūrī, ʻAbd Allāh,
|
34
|
+
- "نورى، عبد الله"
|
35
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01988cam
|
36
|
+
a2200421 a 4500</leader><controlfield tag=\"001\"> 00313831 </controlfield><controlfield
|
37
|
+
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121100001.0</controlfield><controlfield
|
38
|
+
tag=\"008\">010611s2000 ir b 001 0dper d</controlfield><datafield
|
39
|
+
tag=\"010\" ind1=\" \" ind2=\" \"><subfield code=\"a\"> 00313831 </subfield></datafield><datafield
|
40
|
+
tag=\"020\" ind1=\" \" ind2=\" \"><subfield code=\"a\">9645625963</subfield></datafield><datafield
|
41
|
+
tag=\"035\" ind1=\" \" ind2=\" \"><subfield code=\"a\">(CStRLIN)DCLN01-B3014</subfield></datafield><datafield
|
42
|
+
tag=\"040\" ind1=\" \" ind2=\" \"><subfield code=\"a\">MH</subfield><subfield
|
43
|
+
code=\"c\">MH</subfield><subfield code=\"d\">CStRLIN</subfield><subfield code=\"d\">DLC-R</subfield></datafield><datafield
|
44
|
+
tag=\"042\" ind1=\" \" ind2=\" \"><subfield code=\"a\">lccopycat</subfield><subfield
|
45
|
+
code=\"a\">lcode</subfield></datafield><datafield tag=\"043\" ind1=\" \" ind2=\"
|
46
|
+
\"><subfield code=\"a\">a-ir---</subfield></datafield><datafield tag=\"050\" ind1=\"0\"
|
47
|
+
ind2=\"0\"><subfield code=\"a\">DS318.84.N87</subfield><subfield code=\"b\">N87
|
48
|
+
2000</subfield></datafield><datafield tag=\"066\" ind1=\" \" ind2=\" \"><subfield
|
49
|
+
code=\"c\">(3</subfield><subfield code=\"c\">(4</subfield></datafield><datafield
|
50
|
+
tag=\"100\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">880-01</subfield><subfield
|
51
|
+
code=\"a\">Nūrī, ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield></datafield><datafield
|
52
|
+
tag=\"245\" ind1=\"1\" ind2=\"0\"><subfield code=\"6\">880-02</subfield><subfield
|
53
|
+
code=\"a\">Naqdī barā-yi tamām-i fuṣūl :</subfield><subfield code=\"b\">guft
|
54
|
+
va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i
|
55
|
+
ʻAbd Allāh Nūrī dar Majlis-i panjum.</subfield></datafield><datafield tag=\"246\"
|
56
|
+
ind1=\"1\" ind2=\"5\"><subfield code=\"a\">Critique for all seasons :</subfield><subfield
|
57
|
+
code=\"b\">Akbar Ganji's conversation with Abdullah Nuri</subfield></datafield><datafield
|
58
|
+
tag=\"250\" ind1=\" \" ind2=\" \"><subfield code=\"6\">880-03</subfield><subfield
|
59
|
+
code=\"a\">Chāp-i 1.</subfield></datafield><datafield tag=\"260\" ind1=\" \"
|
60
|
+
ind2=\" \"><subfield code=\"6\">880-04</subfield><subfield code=\"a\">Tihrān
|
61
|
+
:</subfield><subfield code=\"b\">Ṭarḥ-i Naw,</subfield><subfield code=\"c\">2000.</subfield></datafield><datafield
|
62
|
+
tag=\"300\" ind1=\" \" ind2=\" \"><subfield code=\"a\">245 p. ;</subfield><subfield
|
63
|
+
code=\"c\">22 cm.</subfield></datafield><datafield tag=\"440\" ind1=\" \" ind2=\"0\"><subfield
|
64
|
+
code=\"6\">880-05</subfield><subfield code=\"a\">Farhang-i ʻumūmī</subfield></datafield><datafield
|
65
|
+
tag=\"504\" ind1=\" \" ind2=\" \"><subfield code=\"a\">Includes bibliographical
|
66
|
+
references and index.</subfield></datafield><datafield tag=\"600\" ind1=\"1\"
|
67
|
+
ind2=\"0\"><subfield code=\"6\">880-06</subfield><subfield code=\"a\">Nūrī,
|
68
|
+
ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield><subfield code=\"v\">Interviews.</subfield></datafield><datafield
|
69
|
+
tag=\"610\" ind1=\"1\" ind2=\"0\"><subfield code=\"a\">Iran.</subfield><subfield
|
70
|
+
code=\"b\">Vizārat-i Kishvar</subfield><subfield code=\"x\">Officials and employees</subfield><subfield
|
71
|
+
code=\"v\">Interviews.</subfield></datafield><datafield tag=\"600\" ind1=\"1\"
|
72
|
+
ind2=\"0\"><subfield code=\"6\">880-07</subfield><subfield code=\"a\">Nūrī,
|
73
|
+
ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield><subfield code=\"v\">Trials,
|
74
|
+
litigation, etc.</subfield></datafield><datafield tag=\"651\" ind1=\" \" ind2=\"0\"><subfield
|
75
|
+
code=\"a\">Iran</subfield><subfield code=\"x\">Politics and government</subfield><subfield
|
76
|
+
code=\"y\">1997-</subfield></datafield><datafield tag=\"700\" ind1=\"1\" ind2=\"
|
77
|
+
\"><subfield code=\"6\">880-08</subfield><subfield code=\"a\">Ganjī, Akbar.</subfield></datafield><datafield
|
78
|
+
tag=\"880\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">100-01/(3/r</subfield><subfield
|
79
|
+
code=\"a\">نورى، عبد الله.</subfield></datafield><datafield tag=\"880\" ind1=\"1\"
|
80
|
+
ind2=\"0\"><subfield code=\"6\">245-02/(3/r</subfield><subfield code=\"a\">نقدى
|
81
|
+
براى تمام فصول :</subfield><subfield code=\"b\">گفت و گوى اکبر گنجى با عبد الله
|
82
|
+
نورى : به پيوست متن استيضاح عبد الله نورى در مجلس پنجم.</subfield></datafield><datafield
|
83
|
+
tag=\"880\" ind1=\" \" ind2=\" \"><subfield code=\"6\">250-03/(4/r</subfield><subfield
|
84
|
+
code=\"a\">چاپ 1.</subfield></datafield><datafield tag=\"880\" ind1=\" \" ind2=\"
|
85
|
+
\"><subfield code=\"6\">260-04/(3/r</subfield><subfield code=\"a\">تهران :</subfield><subfield
|
86
|
+
code=\"b\">طرح نو،</subfield><subfield code=\"c\">2000.</subfield></datafield><datafield
|
87
|
+
tag=\"880\" ind1=\" \" ind2=\"0\"><subfield code=\"6\">440-05/(3/r</subfield><subfield
|
88
|
+
code=\"a\">فرهنگ عمومى</subfield></datafield><datafield tag=\"880\" ind1=\"1\"
|
89
|
+
ind2=\"4\"><subfield code=\"6\">600-06/(3/r</subfield><subfield code=\"a\">نورى،
|
90
|
+
عبد الله.</subfield></datafield><datafield tag=\"880\" ind1=\"1\" ind2=\"4\"><subfield
|
91
|
+
code=\"6\">600-07/(3/r</subfield><subfield code=\"a\">نورى، عبد الله.</subfield></datafield><datafield
|
92
|
+
tag=\"880\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">700-08/(3/r</subfield><subfield
|
93
|
+
code=\"a\">گنجى، اكبر.</subfield></datafield></record></collection>"
|
94
|
+
published_ssim:
|
95
|
+
- Tihrān
|
96
|
+
author_tsim: Nūrī, ʻAbd Allāh, 1949-
|
97
|
+
title_vern_ssim: "نقدى براى تمام فصول :"
|
98
|
+
lc_callnum_ssim:
|
99
|
+
- DS318.84.N87 N87 2000
|
100
|
+
title_tsim:
|
101
|
+
- 'Naqdī barā-yi tamām-i fuṣūl :'
|
102
|
+
- "نقدى براى تمام فصول :"
|
103
|
+
pub_date_ssim:
|
104
|
+
- '2000'
|
105
|
+
pub_date_si: 2000
|
106
|
+
published_vern_ssim:
|
107
|
+
- "تهران :"
|
108
|
+
format: Book
|
109
|
+
subtitle_vern_ssim: "گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح
|
110
|
+
عبد الله نورى در مجلس پنجم"
|
111
|
+
material_type_ssim:
|
112
|
+
- 245 p.
|
113
|
+
lc_b4cutter_ssim:
|
114
|
+
- DS318.84.N87
|
115
|
+
subject_tsim:
|
116
|
+
- Nūrī, ʻAbd Allāh, 1949-
|
117
|
+
- Iran. Vizārat-i Kishvar
|
118
|
+
- Iran
|
119
|
+
- "نورى، عبد الله"
|
120
|
+
title_si: 'naqdī barā-yi tamām-i fuṣūl :guft va gū-yi akbar ganjī bā ʻabd allāh nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻabd allāh nūrī dar majlis-i
|
121
|
+
panjum'
|
122
|
+
author_si: Nūrī ʻAbd Allāh 1949 Naqdī barāyi tamāmi fuṣūl guft va gūyi Akbar Ganjī bā ʻAbd Allāh Nūrī bih payvasti matni istīz̤āḥi ʻAbd Allāh Nūrī dar Majlisi panjum
|
123
|
+
title_addl_tsim:
|
124
|
+
- 'Naqdī barā-yi tamām-i fuṣūl : guft va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻAbd Allāh Nūrī dar Majlis-i panjum.'
|
125
|
+
- 'Critique for all seasons : Akbar Ganji''s conversation with Abdullah Nuri'
|
126
|
+
- "نقدى براى تمام فصول : گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح عبد الله نورى در مجلس پنجم"
|
127
|
+
author_addl_tsim:
|
128
|
+
- Ganjī, Akbar.
|
129
|
+
- "گنجى، اكبر"
|
130
|
+
language_ssim:
|
131
|
+
- Persian
|
132
|
+
timestamp: '2014-02-03T18:42:53.056Z'
|
133
|
+
geojson_ssim:
|
134
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[53.688046,32.427908]},\"properties\":{\"placename\":\"Iran\"}}"
|
135
|
+
coordinates_srpt:
|
136
|
+
- 32.427908,53.688046
|
137
|
+
- ENVELOPE(44.0318907, 63.3333366, 39.7816755, 25.0594286)
|
138
|
+
- lc_1letter_ssim:
|
3
139
|
- P - Language & Literature
|
4
|
-
|
140
|
+
author_tsim:
|
5
141
|
- Ayaz, Shaikh,
|
6
|
-
|
142
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00799cam
|
7
143
|
a2200241 a 4500</leader><controlfield tag=\"001\"> 00282214 </controlfield><controlfield
|
8
144
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090120022042.0</controlfield><controlfield
|
9
145
|
tag=\"008\">000417s1998 pk 000 0 urdo </controlfield><datafield
|
@@ -29,40 +165,40 @@
|
|
29
165
|
tag=\"700\" ind1=\"1\" ind2=\" \"><subfield code=\"a\">Farruk̲h̲ī, Āṣif,</subfield><subfield
|
30
166
|
code=\"d\">1959-</subfield></datafield><datafield tag=\"700\" ind1=\"1\" ind2=\"
|
31
167
|
\"><subfield code=\"a\">Pīrzādah, Shāh Muḥammad.</subfield></datafield></record></collection>"
|
32
|
-
|
168
|
+
published_ssim:
|
33
169
|
- Karācī
|
34
|
-
|
35
|
-
|
170
|
+
author_tsim: Ayaz, Shaikh, 1923-1997
|
171
|
+
lc_callnum_ssim:
|
36
172
|
- PK2788.9.A9 F55 1998
|
37
|
-
|
173
|
+
title_tsim:
|
38
174
|
- Fikr-i Ayāz /
|
39
|
-
|
175
|
+
pub_date_ssim:
|
40
176
|
- '1998'
|
41
|
-
|
177
|
+
pub_date_si: 1998
|
42
178
|
format: Book
|
43
|
-
|
179
|
+
material_type_ssim:
|
44
180
|
- 375 p.
|
45
|
-
|
181
|
+
lc_b4cutter_ssim:
|
46
182
|
- PK2788.9.A9
|
47
|
-
|
48
|
-
|
183
|
+
title_tsim: Fikr-i Ayāz
|
184
|
+
title_si: fikr-i ayāz
|
49
185
|
id: 00282214
|
50
|
-
|
51
|
-
|
186
|
+
author_si: Ayaz Shaikh 19231997 Fikri Ayāz
|
187
|
+
title_addl_tsim:
|
52
188
|
- Fikr-i Ayāz /
|
53
|
-
|
189
|
+
author_addl_tsim:
|
54
190
|
- Farruk̲h̲ī, Āṣif,
|
55
191
|
- Pīrzādah, Shāh Muḥammad.
|
56
|
-
|
192
|
+
lc_alpha_ssim:
|
57
193
|
- PK
|
58
|
-
|
194
|
+
language_ssim:
|
59
195
|
- Urdu
|
60
196
|
timestamp: '2014-02-03T18:42:53.056Z'
|
61
|
-
-
|
197
|
+
- lc_1letter_ssim:
|
62
198
|
- M - Music
|
63
|
-
|
199
|
+
author_tsim:
|
64
200
|
- Ayaz, Shaikh,
|
65
|
-
|
201
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00778cam
|
66
202
|
a22002417a 4500</leader><controlfield tag=\"001\"> 00282371 </controlfield><controlfield
|
67
203
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090120021204.0</controlfield><controlfield
|
68
204
|
tag=\"008\">000509s1986 pk 000 0 urdo </controlfield><datafield
|
@@ -88,175 +224,34 @@
|
|
88
224
|
his imprisonment in Sahiwal District jail during late 1960s.</subfield></datafield><datafield
|
89
225
|
tag=\"504\" ind1=\" \" ind2=\" \"><subfield code=\"a\">Includes bibliographical
|
90
226
|
references.</subfield></datafield></record></collection>"
|
91
|
-
|
227
|
+
published_ssim:
|
92
228
|
- Karācī
|
93
|
-
|
94
|
-
|
229
|
+
author_tsim: Ayaz, Shaikh, 1923-1997
|
230
|
+
lc_callnum_ssim:
|
95
231
|
- MLCME 2002/02660 (D)
|
96
|
-
|
232
|
+
title_tsim:
|
97
233
|
- Sāhivāl jail kī ḍāʼirī /
|
98
|
-
|
234
|
+
pub_date_ssim:
|
99
235
|
- '1986'
|
100
|
-
|
236
|
+
pub_date_si: 1986
|
101
237
|
format: Book
|
102
|
-
|
238
|
+
material_type_ssim:
|
103
239
|
- 232 p.
|
104
|
-
|
240
|
+
lc_b4cutter_ssim:
|
105
241
|
- MLCME 2002/02660 (D)
|
106
|
-
|
107
|
-
|
242
|
+
title_tsim: Sāhivāl jail kī ḍāʼirī
|
243
|
+
title_si: sāhivāl jail kī ḍāʼirī
|
108
244
|
id: 00282371
|
109
|
-
|
110
|
-
|
245
|
+
author_si: Ayaz Shaikh 19231997 Sāhivāl jail kī ḍāʼirī
|
246
|
+
title_addl_tsim:
|
111
247
|
- Sāhivāl jail kī ḍāʼirī /
|
112
|
-
|
248
|
+
language_ssim:
|
113
249
|
- Urdu
|
114
250
|
timestamp: '2014-02-03T18:42:53.056Z'
|
115
|
-
-
|
116
|
-
matn-i istīz̤āḥ-i ʻAbd Allāh Nūrī dar Majlis-i panjum'
|
117
|
-
author_vern_display: "نورى، عبد الله"
|
118
|
-
subject_addl_t:
|
119
|
-
- Interviews
|
120
|
-
- Trials, litigation, etc
|
121
|
-
- Officials and employees Interviews
|
122
|
-
- Politics and government 1997-
|
123
|
-
title_display: Naqdī barā-yi tamām-i fuṣūl
|
124
|
-
subject_era_facet:
|
125
|
-
- 1997-
|
126
|
-
id: 00313831
|
127
|
-
isbn_t:
|
128
|
-
- '9645625963'
|
129
|
-
subject_geo_facet:
|
130
|
-
- Iran
|
131
|
-
subject_topic_facet:
|
132
|
-
- Nūrī, ʻAbd Allāh, 1949-
|
133
|
-
- Iran. Vizārat-i Kishvar
|
134
|
-
lc_alpha_facet:
|
135
|
-
- DS
|
136
|
-
title_series_t:
|
137
|
-
- Farhang-i ʻumūmī
|
138
|
-
- "فرهنگ عمومى"
|
139
|
-
subtitle_t:
|
140
|
-
- 'guft va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i
|
141
|
-
ʻAbd Allāh Nūrī dar Majlis-i panjum.'
|
142
|
-
- "گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح عبد الله نورى در
|
143
|
-
مجلس پنجم"
|
144
|
-
lc_1letter_facet:
|
145
|
-
- D - World History
|
146
|
-
author_t:
|
147
|
-
- Nūrī, ʻAbd Allāh,
|
148
|
-
- "نورى، عبد الله"
|
149
|
-
marc_display: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01988cam
|
150
|
-
a2200421 a 4500</leader><controlfield tag=\"001\"> 00313831 </controlfield><controlfield
|
151
|
-
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121100001.0</controlfield><controlfield
|
152
|
-
tag=\"008\">010611s2000 ir b 001 0dper d</controlfield><datafield
|
153
|
-
tag=\"010\" ind1=\" \" ind2=\" \"><subfield code=\"a\"> 00313831 </subfield></datafield><datafield
|
154
|
-
tag=\"020\" ind1=\" \" ind2=\" \"><subfield code=\"a\">9645625963</subfield></datafield><datafield
|
155
|
-
tag=\"035\" ind1=\" \" ind2=\" \"><subfield code=\"a\">(CStRLIN)DCLN01-B3014</subfield></datafield><datafield
|
156
|
-
tag=\"040\" ind1=\" \" ind2=\" \"><subfield code=\"a\">MH</subfield><subfield
|
157
|
-
code=\"c\">MH</subfield><subfield code=\"d\">CStRLIN</subfield><subfield code=\"d\">DLC-R</subfield></datafield><datafield
|
158
|
-
tag=\"042\" ind1=\" \" ind2=\" \"><subfield code=\"a\">lccopycat</subfield><subfield
|
159
|
-
code=\"a\">lcode</subfield></datafield><datafield tag=\"043\" ind1=\" \" ind2=\"
|
160
|
-
\"><subfield code=\"a\">a-ir---</subfield></datafield><datafield tag=\"050\" ind1=\"0\"
|
161
|
-
ind2=\"0\"><subfield code=\"a\">DS318.84.N87</subfield><subfield code=\"b\">N87
|
162
|
-
2000</subfield></datafield><datafield tag=\"066\" ind1=\" \" ind2=\" \"><subfield
|
163
|
-
code=\"c\">(3</subfield><subfield code=\"c\">(4</subfield></datafield><datafield
|
164
|
-
tag=\"100\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">880-01</subfield><subfield
|
165
|
-
code=\"a\">Nūrī, ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield></datafield><datafield
|
166
|
-
tag=\"245\" ind1=\"1\" ind2=\"0\"><subfield code=\"6\">880-02</subfield><subfield
|
167
|
-
code=\"a\">Naqdī barā-yi tamām-i fuṣūl :</subfield><subfield code=\"b\">guft
|
168
|
-
va gū-yi Akbar Ganjī bā ʻAbd Allāh Nūrī : bih payvast-i matn-i istīz̤āḥ-i
|
169
|
-
ʻAbd Allāh Nūrī dar Majlis-i panjum.</subfield></datafield><datafield tag=\"246\"
|
170
|
-
ind1=\"1\" ind2=\"5\"><subfield code=\"a\">Critique for all seasons :</subfield><subfield
|
171
|
-
code=\"b\">Akbar Ganji's conversation with Abdullah Nuri</subfield></datafield><datafield
|
172
|
-
tag=\"250\" ind1=\" \" ind2=\" \"><subfield code=\"6\">880-03</subfield><subfield
|
173
|
-
code=\"a\">Chāp-i 1.</subfield></datafield><datafield tag=\"260\" ind1=\" \"
|
174
|
-
ind2=\" \"><subfield code=\"6\">880-04</subfield><subfield code=\"a\">Tihrān
|
175
|
-
:</subfield><subfield code=\"b\">Ṭarḥ-i Naw,</subfield><subfield code=\"c\">2000.</subfield></datafield><datafield
|
176
|
-
tag=\"300\" ind1=\" \" ind2=\" \"><subfield code=\"a\">245 p. ;</subfield><subfield
|
177
|
-
code=\"c\">22 cm.</subfield></datafield><datafield tag=\"440\" ind1=\" \" ind2=\"0\"><subfield
|
178
|
-
code=\"6\">880-05</subfield><subfield code=\"a\">Farhang-i ʻumūmī</subfield></datafield><datafield
|
179
|
-
tag=\"504\" ind1=\" \" ind2=\" \"><subfield code=\"a\">Includes bibliographical
|
180
|
-
references and index.</subfield></datafield><datafield tag=\"600\" ind1=\"1\"
|
181
|
-
ind2=\"0\"><subfield code=\"6\">880-06</subfield><subfield code=\"a\">Nūrī,
|
182
|
-
ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield><subfield code=\"v\">Interviews.</subfield></datafield><datafield
|
183
|
-
tag=\"610\" ind1=\"1\" ind2=\"0\"><subfield code=\"a\">Iran.</subfield><subfield
|
184
|
-
code=\"b\">Vizārat-i Kishvar</subfield><subfield code=\"x\">Officials and employees</subfield><subfield
|
185
|
-
code=\"v\">Interviews.</subfield></datafield><datafield tag=\"600\" ind1=\"1\"
|
186
|
-
ind2=\"0\"><subfield code=\"6\">880-07</subfield><subfield code=\"a\">Nūrī,
|
187
|
-
ʻAbd Allāh,</subfield><subfield code=\"d\">1949-</subfield><subfield code=\"v\">Trials,
|
188
|
-
litigation, etc.</subfield></datafield><datafield tag=\"651\" ind1=\" \" ind2=\"0\"><subfield
|
189
|
-
code=\"a\">Iran</subfield><subfield code=\"x\">Politics and government</subfield><subfield
|
190
|
-
code=\"y\">1997-</subfield></datafield><datafield tag=\"700\" ind1=\"1\" ind2=\"
|
191
|
-
\"><subfield code=\"6\">880-08</subfield><subfield code=\"a\">Ganjī, Akbar.</subfield></datafield><datafield
|
192
|
-
tag=\"880\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">100-01/(3/r</subfield><subfield
|
193
|
-
code=\"a\">نورى، عبد الله.</subfield></datafield><datafield tag=\"880\" ind1=\"1\"
|
194
|
-
ind2=\"0\"><subfield code=\"6\">245-02/(3/r</subfield><subfield code=\"a\">نقدى
|
195
|
-
براى تمام فصول :</subfield><subfield code=\"b\">گفت و گوى اکبر گنجى با عبد الله
|
196
|
-
نورى : به پيوست متن استيضاح عبد الله نورى در مجلس پنجم.</subfield></datafield><datafield
|
197
|
-
tag=\"880\" ind1=\" \" ind2=\" \"><subfield code=\"6\">250-03/(4/r</subfield><subfield
|
198
|
-
code=\"a\">چاپ 1.</subfield></datafield><datafield tag=\"880\" ind1=\" \" ind2=\"
|
199
|
-
\"><subfield code=\"6\">260-04/(3/r</subfield><subfield code=\"a\">تهران :</subfield><subfield
|
200
|
-
code=\"b\">طرح نو،</subfield><subfield code=\"c\">2000.</subfield></datafield><datafield
|
201
|
-
tag=\"880\" ind1=\" \" ind2=\"0\"><subfield code=\"6\">440-05/(3/r</subfield><subfield
|
202
|
-
code=\"a\">فرهنگ عمومى</subfield></datafield><datafield tag=\"880\" ind1=\"1\"
|
203
|
-
ind2=\"4\"><subfield code=\"6\">600-06/(3/r</subfield><subfield code=\"a\">نورى،
|
204
|
-
عبد الله.</subfield></datafield><datafield tag=\"880\" ind1=\"1\" ind2=\"4\"><subfield
|
205
|
-
code=\"6\">600-07/(3/r</subfield><subfield code=\"a\">نورى، عبد الله.</subfield></datafield><datafield
|
206
|
-
tag=\"880\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">700-08/(3/r</subfield><subfield
|
207
|
-
code=\"a\">گنجى، اكبر.</subfield></datafield></record></collection>"
|
208
|
-
published_display:
|
209
|
-
- Tihrān
|
210
|
-
author_display: Nūrī, ʻAbd Allāh, 1949-
|
211
|
-
title_vern_display: "نقدى براى تمام فصول :"
|
212
|
-
lc_callnum_display:
|
213
|
-
- DS318.84.N87 N87 2000
|
214
|
-
title_t:
|
215
|
-
- 'Naqdī barā-yi tamām-i fuṣūl :'
|
216
|
-
- "نقدى براى تمام فصول :"
|
217
|
-
pub_date:
|
218
|
-
- '2000'
|
219
|
-
pub_date_sort: 2000
|
220
|
-
published_vern_display:
|
221
|
-
- "تهران :"
|
222
|
-
format: Book
|
223
|
-
subtitle_vern_display: "گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح
|
224
|
-
عبد الله نورى در مجلس پنجم"
|
225
|
-
material_type_display:
|
226
|
-
- 245 p.
|
227
|
-
lc_b4cutter_facet:
|
228
|
-
- DS318.84.N87
|
229
|
-
subject_t:
|
230
|
-
- Nūrī, ʻAbd Allāh, 1949-
|
231
|
-
- Iran. Vizārat-i Kishvar
|
232
|
-
- Iran
|
233
|
-
- "نورى، عبد الله"
|
234
|
-
title_sort: 'naqdī barā-yi tamām-i fuṣūl :guft va gū-yi akbar ganjī bā ʻabd
|
235
|
-
allāh nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻabd allāh nūrī dar majlis-i
|
236
|
-
panjum'
|
237
|
-
author_sort: Nūrī ʻAbd Allāh 1949 Naqdī barāyi tamāmi fuṣūl guft va gūyi
|
238
|
-
Akbar Ganjī bā ʻAbd Allāh Nūrī bih payvasti matni istīz̤āḥi ʻAbd Allāh
|
239
|
-
Nūrī dar Majlisi panjum
|
240
|
-
title_addl_t:
|
241
|
-
- 'Naqdī barā-yi tamām-i fuṣūl : guft va gū-yi Akbar Ganjī bā ʻAbd Allāh
|
242
|
-
Nūrī : bih payvast-i matn-i istīz̤āḥ-i ʻAbd Allāh Nūrī dar Majlis-i panjum.'
|
243
|
-
- 'Critique for all seasons : Akbar Ganji''s conversation with Abdullah Nuri'
|
244
|
-
- "نقدى براى تمام فصول : گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن
|
245
|
-
استيضاح عبد الله نورى در مجلس پنجم"
|
246
|
-
author_addl_t:
|
247
|
-
- Ganjī, Akbar.
|
248
|
-
- "گنجى، اكبر"
|
249
|
-
language_facet:
|
250
|
-
- Persian
|
251
|
-
timestamp: '2014-02-03T18:42:53.056Z'
|
252
|
-
geojson: "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[53.688046,32.427908]},\"properties\":{\"placename\":\"Iran\"}}"
|
253
|
-
coordinates:
|
254
|
-
- 53.688046 32.427908
|
255
|
-
- 44.0318907 25.0594286 63.3333366 39.7816755
|
256
|
-
- author_t:
|
251
|
+
- author_tsim:
|
257
252
|
- Yoshida, Hajime,
|
258
253
|
- "吉田一"
|
259
|
-
|
254
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00956dam
|
260
255
|
a22002655a 4500</leader><controlfield tag=\"001\"> 00314247 </controlfield><controlfield
|
261
256
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126095911.0</controlfield><controlfield
|
262
257
|
tag=\"008\">000214s1997 ja 000 0 jpn </controlfield><datafield
|
@@ -290,59 +285,60 @@
|
|
290
285
|
tag=\"880\" ind1=\"1\" ind2=\"4\"><subfield code=\"6\">600-04/$1</subfield><subfield
|
291
286
|
code=\"a\">久保栄,</subfield><subfield code=\"d\">1901-1958.</subfield><subfield
|
292
287
|
code=\"t\">火山灰地.</subfield></datafield></record></collection>"
|
293
|
-
|
288
|
+
published_ssim:
|
294
289
|
- Tōkyō
|
295
|
-
|
296
|
-
|
297
|
-
|
290
|
+
title_vern_ssim: "久保栄 「火山灰地」 を読む"
|
291
|
+
author_tsim: Yoshida, Hajime, 1934-
|
292
|
+
title_tsim:
|
298
293
|
- Kubo Sakae "Kazanbaichi" o yomu /
|
299
294
|
- "久保栄 「火山灰地」 を読む"
|
300
|
-
|
295
|
+
pub_date_ssim:
|
301
296
|
- '1997'
|
302
|
-
|
303
|
-
|
297
|
+
pub_date_si: 1997
|
298
|
+
published_vern_ssim:
|
304
299
|
- "東京"
|
305
300
|
format: Book
|
306
|
-
|
307
|
-
|
301
|
+
author_vern_ssim: "吉田一, 1934-"
|
302
|
+
material_type_ssim:
|
308
303
|
- 480 p.
|
309
|
-
|
310
|
-
|
304
|
+
title_tsim: Kubo Sakae "Kazanbaichi" o yomu
|
305
|
+
subject_addl_ssim:
|
311
306
|
- 20th century
|
312
307
|
- Japan History
|
313
|
-
|
308
|
+
subject_tsim:
|
314
309
|
- Kubo, Sakae, 1901-1958. Kazanbaichi
|
315
310
|
- Japanese drama
|
316
311
|
- Political plays, Japanese
|
317
312
|
- Theater
|
318
313
|
- "久保栄, 1901-1958. 火山灰地"
|
319
|
-
|
314
|
+
subject_era_ssim:
|
320
315
|
- 20th century
|
321
|
-
|
316
|
+
title_si: kubo sakae "kazanbaichi" o yomu
|
322
317
|
id: '00314247'
|
323
|
-
|
324
|
-
|
318
|
+
author_si: Yoshida Hajime 1934 Kubo Sakae Kazanbaichi o yomu
|
319
|
+
title_addl_tsim:
|
325
320
|
- Kubo Sakae "Kazanbaichi" o yomu /
|
326
321
|
- "久保栄 「火山灰地」 を読む"
|
327
|
-
|
322
|
+
subject_geo_ssim:
|
328
323
|
- Japan
|
329
|
-
|
324
|
+
subject_ssim:
|
330
325
|
- Kubo, Sakae, 1901-1958
|
331
326
|
- Japanese drama
|
332
327
|
- Political plays, Japanese
|
333
328
|
- Theater
|
334
|
-
|
329
|
+
language_ssim:
|
335
330
|
- Japanese
|
336
331
|
timestamp: '2014-02-03T18:42:53.056Z'
|
337
|
-
|
338
|
-
coordinates:
|
339
|
-
|
340
|
-
-
|
341
|
-
-
|
332
|
+
geojson_ssim:
|
333
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[138.252924,36.204824]},\"properties\":{\"placename\":\"Japan\"}}"
|
334
|
+
coordinates_srpt:
|
335
|
+
- 36.204824,138.252924
|
336
|
+
- ENVELOPE(122.9338302, 153.9874305, 45.5227719, 24.0460446)
|
337
|
+
- lc_1letter_ssim:
|
342
338
|
- D - World History
|
343
|
-
|
339
|
+
author_tsim:
|
344
340
|
- Vi︠a︡tkin, M. P. (Mikhail Porfirʹevich),
|
345
|
-
|
341
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00987cam
|
346
342
|
a22002531 4500</leader><controlfield tag=\"001\"> 43037890 </controlfield><controlfield
|
347
343
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126171234.0</controlfield><controlfield
|
348
344
|
tag=\"008\">810731m19419999ru b b 000 0 ruso </controlfield><datafield
|
@@ -371,51 +367,52 @@
|
|
371
367
|
tag=\"710\" ind1=\"2\" ind2=\" \"><subfield code=\"a\">Institut istorii (Akademii︠a︡
|
372
368
|
nauk SSSR)</subfield></datafield><datafield tag=\"710\" ind1=\"2\" ind2=\" \"><subfield
|
373
369
|
code=\"a\">Akademii︠a︡ nauk Kazakhskoĭ SSR, Alma Ata.</subfield></datafield></record></collection>"
|
374
|
-
|
370
|
+
published_ssim:
|
375
371
|
- Moskva
|
376
|
-
|
377
|
-
|
372
|
+
author_tsim: Vi︠a︡tkin, M. P. (Mikhail Porfirʹevich), 1895-1967
|
373
|
+
lc_callnum_ssim:
|
378
374
|
- DK861.K3 V5
|
379
|
-
|
375
|
+
title_tsim:
|
380
376
|
- Ocherki po istorii Kazakhskoĭ SSR.
|
381
|
-
|
377
|
+
pub_date_ssim:
|
382
378
|
- '1941'
|
383
|
-
|
379
|
+
pub_date_si: 1941
|
384
380
|
format: Book
|
385
|
-
|
381
|
+
material_type_ssim:
|
386
382
|
- v.
|
387
|
-
|
383
|
+
lc_b4cutter_ssim:
|
388
384
|
- DK861.K3
|
389
|
-
|
390
|
-
|
385
|
+
title_tsim: Ocherki po istorii Kazakhskoĭ SSR
|
386
|
+
subject_addl_ssim:
|
391
387
|
- History
|
392
|
-
|
388
|
+
subject_tsim:
|
393
389
|
- Kazakhstan
|
394
|
-
|
390
|
+
title_si: ocherki po istorii kazakhskoĭ ssr
|
395
391
|
id: '43037890'
|
396
|
-
|
392
|
+
author_si: Vi︠a︡tkin M P Mikhail Porfirʹevich 18951967 Ocherki po istorii Kazakhskoĭ
|
397
393
|
SSR
|
398
|
-
|
394
|
+
title_addl_tsim:
|
399
395
|
- Ocherki po istorii Kazakhskoĭ SSR.
|
400
|
-
|
396
|
+
subject_geo_ssim:
|
401
397
|
- Kazakhstan
|
402
|
-
|
398
|
+
author_addl_tsim:
|
403
399
|
- Institut istorii (Akademii︠a︡ nauk SSSR)
|
404
400
|
- Akademii︠a︡ nauk Kazakhskoĭ SSR, Alma Ata.
|
405
|
-
|
401
|
+
lc_alpha_ssim:
|
406
402
|
- DK
|
407
|
-
|
403
|
+
language_ssim:
|
408
404
|
- Russian
|
409
405
|
timestamp: '2014-02-03T18:42:53.056Z'
|
410
|
-
|
411
|
-
coordinates:
|
412
|
-
|
413
|
-
-
|
414
|
-
-
|
406
|
+
geojson_ssim:
|
407
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[66.923684,48.019573]},\"properties\":{\"placename\":\"Kazakhstan\"}}"
|
408
|
+
coordinates_srpt:
|
409
|
+
- 48.019573,66.923684
|
410
|
+
- ENVELOPE(46.4936719, 87.315415, 55.441984, 40.568584)
|
411
|
+
- lc_1letter_ssim:
|
415
412
|
- K - Law
|
416
|
-
|
413
|
+
author_tsim:
|
417
414
|
- Korea (North)
|
418
|
-
|
415
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00955cam
|
419
416
|
a22002411 4500</leader><controlfield tag=\"001\"> 53029833 </controlfield><controlfield
|
420
417
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126171326.0</controlfield><controlfield
|
421
418
|
tag=\"008\">860911s1952 ru f000 0 rus </controlfield><datafield
|
@@ -442,50 +439,50 @@
|
|
442
439
|
tag=\"700\" ind1=\"1\" ind2=\" \"><subfield code=\"a\">Mazur, I︠U︡. N.</subfield></datafield><datafield
|
443
440
|
tag=\"710\" ind1=\"1\" ind2=\" \"><subfield code=\"a\">Korea (North)</subfield><subfield
|
444
441
|
code=\"t\">Constitution.</subfield></datafield></record></collection>"
|
445
|
-
|
442
|
+
published_ssim:
|
446
443
|
- Moskva
|
447
|
-
|
448
|
-
|
444
|
+
author_tsim: Korea (North)
|
445
|
+
lc_callnum_ssim:
|
449
446
|
- KPC13 1952
|
450
|
-
|
447
|
+
title_tsim:
|
451
448
|
- Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ
|
452
449
|
Respubliki.
|
453
|
-
|
450
|
+
pub_date_ssim:
|
454
451
|
- '1952'
|
455
|
-
|
452
|
+
pub_date_si: 1952
|
456
453
|
format: Book
|
457
|
-
|
454
|
+
material_type_ssim:
|
458
455
|
- 396 p.
|
459
|
-
|
456
|
+
lc_b4cutter_ssim:
|
460
457
|
- KPC13
|
461
|
-
|
458
|
+
title_tsim: Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ
|
462
459
|
Respubliki
|
463
|
-
|
460
|
+
title_si: konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty koreĭskoĭ narodno-demokraticheskoĭ
|
464
461
|
respubliki
|
465
462
|
id: '53029833'
|
466
|
-
|
463
|
+
author_si: Korea North Laws etc Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty
|
467
464
|
Koreĭskoĭ NarodnoDemokraticheskoĭ Respubliki Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye
|
468
465
|
akty Koreĭskoĭ NarodnoDemokraticheskoĭ Respubliki
|
469
|
-
|
466
|
+
title_addl_tsim:
|
470
467
|
- Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ
|
471
468
|
Respubliki.
|
472
469
|
- Laws, etc. (Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ
|
473
470
|
Respubliki)
|
474
|
-
|
471
|
+
author_addl_tsim:
|
475
472
|
- Mazur, I︠U︡. N.
|
476
473
|
- Korea (North)
|
477
|
-
|
474
|
+
title_added_entry_tsim:
|
478
475
|
- Constitution
|
479
|
-
|
476
|
+
title_series_tsim:
|
480
477
|
- Zakonodatelʹstvo stran narodnoĭ demokratii
|
481
|
-
|
478
|
+
lc_alpha_ssim:
|
482
479
|
- KPC
|
483
|
-
|
480
|
+
language_ssim:
|
484
481
|
- Russian
|
485
482
|
timestamp: '2014-02-03T18:42:53.056Z'
|
486
|
-
-
|
483
|
+
- lc_1letter_ssim:
|
487
484
|
- D - World History
|
488
|
-
|
485
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01062cam
|
489
486
|
a2200301 a 4500</leader><controlfield tag=\"001\"> 77826928 </controlfield><controlfield
|
490
487
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090122103906.0</controlfield><controlfield
|
491
488
|
tag=\"008\">070816s1976 ko 000 0ckor </controlfield><datafield
|
@@ -525,62 +522,63 @@
|
|
525
522
|
code=\"a\">瑞文 文庫 ;</subfield><subfield code=\"v\">237</subfield></datafield><datafield
|
526
523
|
tag=\"880\" ind1=\"1\" ind2=\" \"><subfield code=\"6\">700-05/$1</subfield><subfield
|
527
524
|
code=\"a\">李 民樹,</subfield><subfield code=\"d\">1916-</subfield></datafield></record></collection>"
|
528
|
-
|
525
|
+
published_ssim:
|
529
526
|
- Sŏul
|
530
|
-
|
531
|
-
|
527
|
+
title_vern_ssim: "高麗 人物 列傅"
|
528
|
+
lc_callnum_ssim:
|
532
529
|
- DS912.38 .K982 1976
|
533
|
-
|
530
|
+
title_tsim:
|
534
531
|
- Koryŏ inmul yŏlchŏn /
|
535
532
|
- "高麗 人物 列傅"
|
536
|
-
|
533
|
+
pub_date_ssim:
|
537
534
|
- '1976'
|
538
|
-
|
539
|
-
|
535
|
+
pub_date_si: 1976
|
536
|
+
published_vern_ssim:
|
540
537
|
- "서울"
|
541
538
|
format: Book
|
542
|
-
|
539
|
+
material_type_ssim:
|
543
540
|
- 255 p.
|
544
|
-
|
541
|
+
lc_b4cutter_ssim:
|
545
542
|
- DS912.38
|
546
|
-
|
547
|
-
|
543
|
+
title_tsim: Koryŏ inmul yŏlchŏn
|
544
|
+
subject_addl_ssim:
|
548
545
|
- History Koryŏ period, 935-1392 Biography
|
549
546
|
- Biography
|
550
|
-
|
547
|
+
subject_tsim:
|
551
548
|
- Korea
|
552
|
-
|
549
|
+
subject_era_ssim:
|
553
550
|
- Koryŏ period, 935-1392
|
554
|
-
|
551
|
+
title_si: koryŏ inmul yŏlchŏn
|
555
552
|
id: '77826928'
|
556
|
-
|
557
|
-
|
553
|
+
author_si: "\U0010FFFF Koryŏ inmul yŏlchŏn"
|
554
|
+
title_addl_tsim:
|
558
555
|
- Koryŏ inmul yŏlchŏn /
|
559
556
|
- Koryŏsa. Yŏlchŏn. Selections
|
560
557
|
- "高麗 人物 列傅"
|
561
558
|
- "高麗史. 列傅. Selections"
|
562
|
-
|
559
|
+
subject_geo_ssim:
|
563
560
|
- Korea
|
564
|
-
|
561
|
+
author_addl_tsim:
|
565
562
|
- Yi, Min-su,
|
566
563
|
- "李 民樹"
|
567
|
-
|
564
|
+
title_series_tsim:
|
568
565
|
- Sŏmun munʼgo ; 237
|
569
566
|
- "瑞文 文庫 ; 237"
|
570
|
-
|
567
|
+
lc_alpha_ssim:
|
571
568
|
- DS
|
572
|
-
|
569
|
+
language_ssim:
|
573
570
|
- Korean
|
574
571
|
timestamp: '2014-02-03T18:42:53.056Z'
|
575
|
-
|
576
|
-
coordinates:
|
577
|
-
|
578
|
-
-
|
579
|
-
-
|
572
|
+
geojson_ssim:
|
573
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[127.766922,35.907757]},\"properties\":{\"placename\":\"Korea\"}}"
|
574
|
+
coordinates_srpt:
|
575
|
+
- ENVELOPE(124.608139, 130.9232178, 38.6169312, 33.1061096)
|
576
|
+
- 35.907757,127.766922
|
577
|
+
- lc_1letter_ssim:
|
580
578
|
- P - Language & Literature
|
581
|
-
|
579
|
+
author_tsim:
|
582
580
|
- Parikshit Sharma, Ogeti,
|
583
|
-
|
581
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00813cam
|
584
582
|
a2200217 i 4500</leader><controlfield tag=\"001\"> 78908283 </controlfield><controlfield
|
585
583
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121104206.0</controlfield><controlfield
|
586
584
|
tag=\"008\">790619s1976 ii 000 0 sano </controlfield><datafield
|
@@ -605,48 +603,48 @@
|
|
605
603
|
code=\"v\">Poetry.</subfield></datafield><datafield tag=\"600\" ind1=\"0\" ind2=\"0\"><subfield
|
606
604
|
code=\"a\">Yaśodharā</subfield><subfield code=\"c\">(Wife of Gautama Buddha)</subfield><subfield
|
607
605
|
code=\"v\">Poetry.</subfield></datafield></record></collection>"
|
608
|
-
|
606
|
+
published_ssim:
|
609
607
|
- Puṇyapattanam
|
610
608
|
- Haidrābāda
|
611
|
-
|
612
|
-
|
609
|
+
author_tsim: Parikshit Sharma, Ogeti, 1930-
|
610
|
+
lc_callnum_ssim:
|
613
611
|
- PK3799.P29 Y3
|
614
|
-
|
612
|
+
title_tsim:
|
615
613
|
- Yaśodharā-mahākāvyam /
|
616
|
-
|
614
|
+
pub_date_ssim:
|
617
615
|
- '1976'
|
618
|
-
|
616
|
+
pub_date_si: 1976
|
619
617
|
format: Book
|
620
|
-
|
618
|
+
material_type_ssim:
|
621
619
|
- 24, 128, 2 p.
|
622
|
-
|
620
|
+
lc_b4cutter_ssim:
|
623
621
|
- PK3799.P29
|
624
|
-
|
625
|
-
|
622
|
+
title_tsim: Yaśodharā-mahākāvyam
|
623
|
+
subject_addl_ssim:
|
626
624
|
- Poetry
|
627
|
-
|
625
|
+
subject_tsim:
|
628
626
|
- Gautama Buddha
|
629
627
|
- Yaśodharā (Wife of Gautama Buddha)
|
630
|
-
|
628
|
+
title_si: yaśodharā-mahākāvyam
|
631
629
|
id: '78908283'
|
632
|
-
|
633
|
-
|
630
|
+
author_si: Parikshit Sharma Ogeti 1930 Yaśodharāmahākāvyam
|
631
|
+
title_addl_tsim:
|
634
632
|
- Yaśodharā-mahākāvyam /
|
635
|
-
|
633
|
+
subject_ssim:
|
636
634
|
- Gautama Buddha
|
637
635
|
- Yaśodharā (Wife of Gautama Buddha)
|
638
|
-
|
636
|
+
title_series_tsim:
|
639
637
|
- Śāradā-gaurava-grantha-mālā ; 37
|
640
|
-
|
638
|
+
lc_alpha_ssim:
|
641
639
|
- PK
|
642
|
-
|
640
|
+
language_ssim:
|
643
641
|
- Sanskrit
|
644
642
|
timestamp: '2014-02-03T18:42:53.056Z'
|
645
|
-
-
|
643
|
+
- lc_1letter_ssim:
|
646
644
|
- H - Social Sciences
|
647
|
-
|
645
|
+
author_tsim:
|
648
646
|
- Iṣlāḥī, Amīn Aḥsan,
|
649
|
-
|
647
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00729cam
|
650
648
|
a2200229 i 4500</leader><controlfield tag=\"001\"> 79930185 </controlfield><controlfield
|
651
649
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123080110.0</controlfield><controlfield
|
652
650
|
tag=\"008\">791203r19781950pk 000 0 urdo </controlfield><datafield
|
@@ -670,52 +668,52 @@
|
|
670
668
|
code=\"z\">Pakistan.</subfield></datafield><datafield tag=\"650\" ind1=\" \" ind2=\"0\"><subfield
|
671
669
|
code=\"a\">Women</subfield><subfield code=\"z\">Pakistan</subfield><subfield code=\"x\">Social
|
672
670
|
conditions.</subfield></datafield></record></collection>"
|
673
|
-
|
671
|
+
published_ssim:
|
674
672
|
- Lāhaur
|
675
|
-
|
676
|
-
|
673
|
+
author_tsim: Iṣlāḥī, Amīn Aḥsan, 1904-1997
|
674
|
+
lc_callnum_ssim:
|
677
675
|
- HQ1745.5 .I83 1978
|
678
|
-
|
676
|
+
title_tsim:
|
679
677
|
- Pākistānī ʻaurat dorāhe par /
|
680
|
-
|
678
|
+
pub_date_ssim:
|
681
679
|
- '1978'
|
682
|
-
|
680
|
+
pub_date_si: 1978
|
683
681
|
format: Book
|
684
|
-
|
682
|
+
material_type_ssim:
|
685
683
|
- 8, 174 p.
|
686
|
-
|
684
|
+
lc_b4cutter_ssim:
|
687
685
|
- HQ1745.5
|
688
|
-
|
689
|
-
|
686
|
+
title_tsim: Pākistānī ʻaurat dorāhe par
|
687
|
+
subject_addl_ssim:
|
690
688
|
- Pakistan
|
691
689
|
- Pakistan Social conditions
|
692
|
-
|
690
|
+
subject_tsim:
|
693
691
|
- Women
|
694
|
-
|
692
|
+
title_si: pākistānī ʻaurat dorāhe par
|
695
693
|
id: '79930185'
|
696
|
-
|
697
|
-
|
694
|
+
author_si: Iṣlāḥī Amīn Aḥsan 19041997 Pākistānī ʻaurat dorāhe par
|
695
|
+
title_addl_tsim:
|
698
696
|
- Pākistānī ʻaurat dorāhe par /
|
699
|
-
|
697
|
+
subject_geo_ssim:
|
700
698
|
- Pakistan
|
701
|
-
|
699
|
+
subject_ssim:
|
702
700
|
- Women
|
703
|
-
|
701
|
+
lc_alpha_ssim:
|
704
702
|
- HQ
|
705
|
-
|
703
|
+
language_ssim:
|
706
704
|
- Urdu
|
707
705
|
timestamp: '2014-02-03T18:42:53.056Z'
|
708
|
-
|
706
|
+
geojson_ssim:
|
709
707
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[69.34511599999999,30.375321]},\"properties\":{\"placename\":\"Pakistan\"}}"
|
710
708
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[60.872972, 23.6946945], [77.8334694, 23.6946945], [77.8334694, 37.084107], [60.872972, 37.084107], [60.872972, 23.6946945]]]},\"bbox\":[60.872972, 23.6946945, 77.8334694, 37.084107]}"
|
711
|
-
|
712
|
-
- 60.872972
|
713
|
-
- 69.34511599999999
|
714
|
-
-
|
709
|
+
coordinates_srpt:
|
710
|
+
- ENVELOPE(60.872972, 77.8334694, 37.084107, 23.6946945)
|
711
|
+
- 30.375321,69.34511599999999
|
712
|
+
- lc_1letter_ssim:
|
715
713
|
- M - Music
|
716
|
-
|
714
|
+
author_tsim:
|
717
715
|
- Nārāyaṇapaṇḍita,
|
718
|
-
|
716
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01012cam
|
719
717
|
a22002657a 4500</leader><controlfield tag=\"001\"> 85910001 </controlfield><controlfield
|
720
718
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121023106.0</controlfield><controlfield
|
721
719
|
tag=\"007\">heuamb---baca</controlfield><controlfield tag=\"007\">heubmb---baaa</controlfield><controlfield
|
@@ -744,53 +742,53 @@
|
|
744
742
|
code=\"b\">Washington, D.C. :</subfield><subfield code=\"c\">Library of Congress
|
745
743
|
Photoduplication Service,</subfield><subfield code=\"d\">1985.</subfield><subfield
|
746
744
|
code=\"e\">1 microfiche ; 11 x 15 cm.</subfield></datafield></record></collection>"
|
747
|
-
|
745
|
+
published_ssim:
|
748
746
|
- Trivandrum
|
749
|
-
|
750
|
-
|
747
|
+
author_tsim: Nārāyaṇapaṇḍita, 17th cent
|
748
|
+
lc_callnum_ssim:
|
751
749
|
- Microfiche 90/61328 (P)
|
752
|
-
|
750
|
+
title_tsim:
|
753
751
|
- Āśleṣāśataka of Nārāyaṇa Paṇḍita
|
754
|
-
|
752
|
+
pub_date_ssim:
|
755
753
|
- '1946'
|
756
|
-
|
754
|
+
pub_date_si: 1946
|
757
755
|
format: Book
|
758
|
-
|
756
|
+
material_type_ssim:
|
759
757
|
- xii, 24 p.
|
760
|
-
|
758
|
+
lc_b4cutter_ssim:
|
761
759
|
- Microfiche 90/61328 (P)
|
762
|
-
|
763
|
-
|
760
|
+
title_tsim: Āśleṣāśataka of Nārāyaṇa Paṇḍita
|
761
|
+
title_si: āśleṣāśataka of nārāyaṇa paṇḍita
|
764
762
|
id: '85910001'
|
765
|
-
|
763
|
+
author_si: Nārāyaṇapaṇḍita 17th cent Āśleṣāśataka of Nārāyaṇa Paṇḍita
|
766
764
|
microform
|
767
|
-
|
765
|
+
title_addl_tsim:
|
768
766
|
- Āśleṣāśataka of Nārāyaṇa Paṇḍita
|
769
|
-
|
767
|
+
language_ssim:
|
770
768
|
- Sanskrit
|
771
769
|
timestamp: '2014-02-03T18:42:53.056Z'
|
772
|
-
-
|
773
|
-
|
774
|
-
|
770
|
+
- subtitle_tsim: sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot
|
771
|
+
author_vern_ssim: "פינקל, חיים יעקב"
|
772
|
+
subject_addl_ssim:
|
775
773
|
- Anecdotes
|
776
|
-
|
774
|
+
title_tsim: Shodede-yam Yehudiyim
|
777
775
|
id: '86207417'
|
778
|
-
|
776
|
+
isbn_ssim:
|
779
777
|
- '9650101373'
|
780
|
-
|
778
|
+
subject_ssim:
|
781
779
|
- Jewish pirates
|
782
780
|
- Jewish criminals
|
783
|
-
|
781
|
+
lc_alpha_ssim:
|
784
782
|
- G
|
785
|
-
|
783
|
+
subtitle_tsim:
|
786
784
|
- sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot /
|
787
785
|
- "ספורים מפליאים המבוססים על עובדות היסטוריות /"
|
788
|
-
|
786
|
+
author_tsim:
|
789
787
|
- Finkel, Chaim Jacob.
|
790
788
|
- "פינקל, חיים יעקב"
|
791
|
-
|
789
|
+
lc_1letter_ssim:
|
792
790
|
- G - Geography, Anthropology, Recreation
|
793
|
-
|
791
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01258cam
|
794
792
|
a2200301 a 4500</leader><controlfield tag=\"001\"> 86207417 </controlfield><controlfield
|
795
793
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123161900.0</controlfield><controlfield
|
796
794
|
tag=\"008\">930810s1984 is a 000 0 heb </controlfield><datafield
|
@@ -828,48 +826,48 @@
|
|
828
826
|
tag=\"880\" ind1=\" \" ind2=\" \"><subfield code=\"6\">260-03/(2/r</subfield><subfield
|
829
827
|
code=\"a\">ירושלים :</subfield><subfield code=\"b\">דביר,</subfield><subfield
|
830
828
|
code=\"c\">c1984.</subfield></datafield></record></collection>"
|
831
|
-
|
829
|
+
published_ssim:
|
832
830
|
- Yerushalayim
|
833
|
-
|
834
|
-
|
835
|
-
|
831
|
+
author_tsim: Finkel, Chaim Jacob
|
832
|
+
title_vern_ssim: "שודדי־ים יהודיים :"
|
833
|
+
lc_callnum_ssim:
|
836
834
|
- G535 .F54 1984
|
837
|
-
|
835
|
+
title_tsim:
|
838
836
|
- 'Shodede-yam Yehudiyim :'
|
839
837
|
- "שודדי־ים יהודיים :"
|
840
|
-
|
838
|
+
pub_date_ssim:
|
841
839
|
- '1984'
|
842
|
-
|
843
|
-
|
840
|
+
pub_date_si: 1984
|
841
|
+
published_vern_ssim:
|
844
842
|
- "ירושלים :"
|
845
843
|
format: Book
|
846
|
-
|
847
|
-
|
844
|
+
subtitle_vern_ssim: "ספורים מפליאים המבוססים על עובדות היסטוריות /"
|
845
|
+
lc_b4cutter_ssim:
|
848
846
|
- G535
|
849
|
-
|
847
|
+
material_type_ssim:
|
850
848
|
- 283 p.
|
851
|
-
|
849
|
+
subject_tsim:
|
852
850
|
- Jewish pirates
|
853
851
|
- Jewish criminals
|
854
|
-
|
855
|
-
|
852
|
+
title_si: shodede-yam yehudiyim :sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot
|
853
|
+
author_si: Finkel Chaim Jacob Jewish pirates Hebrew Shodedeyam Yehudiyim sipurim
|
856
854
|
mafliʼim hamevusasim ʻal ʻuvdot hisṭoriyot
|
857
|
-
|
855
|
+
title_addl_tsim:
|
858
856
|
- 'Shodede-yam Yehudiyim : sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot
|
859
857
|
/'
|
860
858
|
- Jewish pirates. Hebrew
|
861
859
|
- "שודדי־ים יהודיים : ספורים מפליאים המבוססים על עובדות היסטוריות /"
|
862
|
-
|
860
|
+
title_added_entry_tsim:
|
863
861
|
- Jewish pirates.
|
864
|
-
|
862
|
+
language_ssim:
|
865
863
|
- Hebrew
|
866
864
|
timestamp: '2014-02-03T18:42:53.056Z'
|
867
|
-
-
|
865
|
+
- lc_1letter_ssim:
|
868
866
|
- B - Philosophy, Psychology, Religion
|
869
|
-
|
867
|
+
author_tsim:
|
870
868
|
- Muvaḥḥid Abṭaḥī, Ḥujjat.
|
871
869
|
- "موحد ابطحى، خجة"
|
872
|
-
|
870
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01657cam
|
873
871
|
a2200337 a 4500</leader><controlfield tag=\"001\"> 87931798 </controlfield><controlfield
|
874
872
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121115059.0</controlfield><controlfield
|
875
873
|
tag=\"008\">060428m19869999ir ah b 000 0 per d</controlfield><datafield
|
@@ -914,61 +912,61 @@
|
|
914
912
|
tag=\"880\" ind1=\" \" ind2=\" \"><subfield code=\"6\">260-05/(3/r</subfield><subfield
|
915
913
|
code=\"a\">اصفهان :</subfield><subfield code=\"b\">حوزۀ علميه،</subfield><subfield
|
916
914
|
code=\"c\">1365- [1986- ].</subfield></datafield></record></collection>"
|
917
|
-
|
915
|
+
published_ssim:
|
918
916
|
- Iṣfahān
|
919
|
-
|
920
|
-
|
921
|
-
|
917
|
+
title_vern_ssim: "اشنائى با حوزههاى علميۀ شيعه در طول تاريخ /"
|
918
|
+
author_tsim: Muvaḥḥid Abṭaḥī, Ḥujjat
|
919
|
+
lc_callnum_ssim:
|
922
920
|
- BP44 .M88 1986
|
923
|
-
|
921
|
+
title_tsim:
|
924
922
|
- Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh /
|
925
923
|
- "اشنائى با حوزههاى علميۀ شيعه در طول تاريخ /"
|
926
|
-
|
924
|
+
pub_date_ssim:
|
927
925
|
- '1986'
|
928
|
-
|
929
|
-
|
926
|
+
pub_date_si: 1986
|
927
|
+
published_vern_ssim:
|
930
928
|
- "اصفهان :"
|
931
929
|
format: Book
|
932
|
-
|
933
|
-
|
930
|
+
author_vern_ssim: "موحد ابطحى، خجة"
|
931
|
+
material_type_ssim:
|
934
932
|
- v. <1>
|
935
|
-
|
933
|
+
lc_b4cutter_ssim:
|
936
934
|
- BP44
|
937
|
-
|
938
|
-
|
935
|
+
title_tsim: Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh
|
936
|
+
subject_addl_ssim:
|
939
937
|
- Islamic countries
|
940
938
|
- Education Islamic countries
|
941
|
-
|
939
|
+
subject_tsim:
|
942
940
|
- Religious institutions
|
943
941
|
- Shiites
|
944
942
|
- Islamic universities and colleges
|
945
|
-
|
943
|
+
title_si: āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi shīʻah dar ṭūl-i tārīkh
|
946
944
|
id: '87931798'
|
947
|
-
|
945
|
+
author_si: Muvaḥḥid Abṭaḥī Ḥujjat Āshnāʼī bā ḥawzahʹhāyi ʻilmīyahʼi
|
948
946
|
Shīʻah dar ṭūli tārīkh
|
949
|
-
|
947
|
+
title_addl_tsim:
|
950
948
|
- Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh /
|
951
949
|
- Āshnāyī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh
|
952
950
|
- Ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah
|
953
951
|
- "اشنائى با حوزههاى علميۀ شيعه در طول تاريخ /"
|
954
952
|
- "اشنايى با حوزههاى علميۀ شيعه در طول تاريخ"
|
955
953
|
- "حوزه هاى علميۀ شيعه"
|
956
|
-
|
954
|
+
subject_geo_ssim:
|
957
955
|
- Islamic countries
|
958
|
-
|
956
|
+
subject_ssim:
|
959
957
|
- Religious institutions
|
960
958
|
- Shiites
|
961
959
|
- Islamic universities and colleges
|
962
|
-
|
960
|
+
lc_alpha_ssim:
|
963
961
|
- BP
|
964
|
-
|
962
|
+
language_ssim:
|
965
963
|
- Persian
|
966
964
|
timestamp: '2014-02-03T18:42:53.056Z'
|
967
|
-
-
|
965
|
+
- lc_1letter_ssim:
|
968
966
|
- M - Music
|
969
|
-
|
967
|
+
author_tsim:
|
970
968
|
- Lomtʻatʻiże, Čola,
|
971
|
-
|
969
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00610cam
|
972
970
|
a22001817a 4500</leader><controlfield tag=\"001\"> 90142413 </controlfield><controlfield
|
973
971
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126150928.0</controlfield><controlfield
|
974
972
|
tag=\"008\">900409s1975 gs 000 0 geo </controlfield><datafield
|
@@ -987,44 +985,44 @@
|
|
987
985
|
\"><subfield code=\"a\">65 p. ;</subfield><subfield code=\"c\">22 cm.</subfield></datafield><datafield
|
988
986
|
tag=\"653\" ind1=\" \" ind2=\" \"><subfield code=\"a\">Industrial workers;</subfield><subfield
|
989
987
|
code=\"a\">life style</subfield></datafield></record></collection>"
|
990
|
-
|
988
|
+
published_ssim:
|
991
989
|
- Tʻbilisi
|
992
|
-
|
993
|
-
|
990
|
+
author_tsim: Lomtʻatʻiże, Čola, 1879-1915
|
991
|
+
lc_callnum_ssim:
|
994
992
|
- MLCSN 96/3906 (H)
|
995
|
-
|
993
|
+
title_tsim:
|
996
994
|
- 'Mrecvelobis mušakis cʻxovrebis cesi :'
|
997
|
-
|
995
|
+
pub_date_ssim:
|
998
996
|
- '1975'
|
999
|
-
|
1000
|
-
|
997
|
+
pub_date_si: 1975
|
998
|
+
subtitle_tsim: tʻeoriul-metʻoduri narkvevi
|
1001
999
|
format: Book
|
1002
|
-
|
1000
|
+
material_type_ssim:
|
1003
1001
|
- 65 p.
|
1004
|
-
|
1002
|
+
lc_b4cutter_ssim:
|
1005
1003
|
- MLCSN 96/3906 (H)
|
1006
|
-
|
1007
|
-
|
1004
|
+
title_tsim: Mrecvelobis mušakis cʻxovrebis cesi
|
1005
|
+
subject_tsim:
|
1008
1006
|
- Industrial workers; life style
|
1009
|
-
|
1007
|
+
title_si: mrecvelobis mušakis cʻxovrebis cesi :tʻeoriul-metʻoduri narkvevi
|
1010
1008
|
id: '90142413'
|
1011
|
-
|
1009
|
+
author_si: Lomtʻatʻiże Čola 18791915 Mrecvelobis mušakis cʻxovrebis cesi tʻeoriulmetʻoduri
|
1012
1010
|
narkvevi
|
1013
|
-
|
1011
|
+
title_addl_tsim:
|
1014
1012
|
- 'Mrecvelobis mušakis cʻxovrebis cesi : tʻeoriul-metʻoduri narkvevi /'
|
1015
1013
|
- Obraz zhizni rabotnika promyshlennosti
|
1016
|
-
|
1014
|
+
subject_ssim:
|
1017
1015
|
- Industrial workers; life style
|
1018
|
-
|
1016
|
+
language_ssim:
|
1019
1017
|
- Georgian
|
1020
|
-
|
1018
|
+
subtitle_tsim:
|
1021
1019
|
- tʻeoriul-metʻoduri narkvevi /
|
1022
1020
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1023
|
-
-
|
1021
|
+
- lc_1letter_ssim:
|
1024
1022
|
- K - Law
|
1025
|
-
|
1023
|
+
author_tsim:
|
1026
1024
|
- Korea (North)
|
1027
|
-
|
1025
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01106cam
|
1028
1026
|
a2200325 a 4500</leader><controlfield tag=\"001\"> 92117465 </controlfield><controlfield
|
1029
1027
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126171556.0</controlfield><controlfield
|
1030
1028
|
tag=\"008\">920805s1990 ko l 000 0 kor </controlfield><datafield
|
@@ -1061,79 +1059,80 @@
|
|
1061
1059
|
\"><subfield code=\"6\">700-04/$1</subfield><subfield code=\"a\">鄭 慶謨,</subfield><subfield
|
1062
1060
|
code=\"d\">1937-</subfield></datafield><datafield tag=\"880\" ind1=\"1\" ind2=\"
|
1063
1061
|
\"><subfield code=\"6\">700-05/$1</subfield><subfield code=\"a\">崔 逹坤.</subfield></datafield></record></collection>"
|
1064
|
-
|
1062
|
+
published_ssim:
|
1065
1063
|
- Sŏul Tʻŭkpyŏlsi
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1064
|
+
title_vern_ssim: "北韓 法令集 /"
|
1065
|
+
author_tsim: Korea (North)
|
1066
|
+
lc_callnum_ssim:
|
1069
1067
|
- KPC13 .K67 1990
|
1070
|
-
|
1068
|
+
title_tsim:
|
1071
1069
|
- Pukhan pŏmnyŏngjip /
|
1072
1070
|
- "北韓 法令集 /"
|
1073
|
-
|
1071
|
+
pub_date_ssim:
|
1074
1072
|
- '1990'
|
1075
|
-
|
1076
|
-
|
1073
|
+
pub_date_si: 1990
|
1074
|
+
published_vern_ssim:
|
1077
1075
|
- "서울 持別市 :"
|
1078
1076
|
format: Book
|
1079
|
-
|
1077
|
+
material_type_ssim:
|
1080
1078
|
- 5 v.
|
1081
|
-
|
1079
|
+
lc_b4cutter_ssim:
|
1082
1080
|
- KPC13
|
1083
|
-
|
1084
|
-
|
1081
|
+
title_tsim: Pukhan pŏmnyŏngjip
|
1082
|
+
subject_addl_ssim:
|
1085
1083
|
- Korea (North)
|
1086
|
-
|
1084
|
+
subject_tsim:
|
1087
1085
|
- Law
|
1088
|
-
|
1086
|
+
title_si: pukhan pŏmnyŏngjip
|
1089
1087
|
id: '92117465'
|
1090
|
-
|
1091
|
-
|
1088
|
+
author_si: Korea North Laws etc Pukhan pŏmnyŏngjip
|
1089
|
+
title_addl_tsim:
|
1092
1090
|
- Pukhan pŏmnyŏngjip /
|
1093
1091
|
- Laws, etc
|
1094
1092
|
- "北韓 法令集 /"
|
1095
|
-
|
1093
|
+
subject_geo_ssim:
|
1096
1094
|
- Korea (North)
|
1097
|
-
|
1095
|
+
subject_ssim:
|
1098
1096
|
- Law
|
1099
|
-
|
1097
|
+
author_addl_tsim:
|
1100
1098
|
- Chŏng, Kyŏng-mo,
|
1101
1099
|
- Chʻoe, Tal-gon.
|
1102
1100
|
- "鄭 慶謨,"
|
1103
1101
|
- "崔 逹坤."
|
1104
|
-
|
1102
|
+
lc_alpha_ssim:
|
1105
1103
|
- KPC
|
1106
|
-
|
1104
|
+
language_ssim:
|
1107
1105
|
- Korean
|
1108
1106
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1109
|
-
|
1110
|
-
coordinates:
|
1111
|
-
|
1107
|
+
geojson_ssim:
|
1108
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[127.766922,35.907757]},\"properties\":{\"placename\":\"Korea (North)\"}}"
|
1109
|
+
coordinates_srpt: 35.907757,127.766922
|
1110
|
+
- subtitle_tsim: ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim
|
1112
1111
|
asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... ṿe-himtsiʼam
|
1113
1112
|
... Mosheh Iserlish
|
1114
|
-
|
1115
|
-
|
1113
|
+
author_vern_ssim: "ישראל מאיר, הכהן"
|
1114
|
+
subject_addl_ssim:
|
1116
1115
|
- Customs and practices
|
1117
|
-
|
1116
|
+
title_tsim: Sefer Mishnah berurah
|
1118
1117
|
id: '92828023'
|
1119
|
-
|
1118
|
+
subject_ssim:
|
1120
1119
|
- Karo, Joseph ben Ephraim, 1488-1575
|
1121
1120
|
- Jewish law
|
1122
1121
|
- Judaism
|
1123
|
-
|
1122
|
+
lc_alpha_ssim:
|
1124
1123
|
- BM
|
1125
|
-
|
1124
|
+
subtitle_tsim:
|
1126
1125
|
- ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim asher ḥiber Yosef
|
1127
1126
|
Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... ṿe-himtsiʼam ... Mosheh
|
1128
1127
|
Iserlish /
|
1129
1128
|
- "והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף קארו ... עם חידושי דינים
|
1130
1129
|
שהשמיט הגאון ... והמציאם משה איסרליש /"
|
1131
|
-
|
1130
|
+
author_tsim:
|
1132
1131
|
- Israel Meir, ha-Kohen,
|
1133
1132
|
- "ישראל מאיר, הכהן"
|
1134
|
-
|
1133
|
+
lc_1letter_ssim:
|
1135
1134
|
- B - Philosophy, Psychology, Religion
|
1136
|
-
|
1135
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>03361cam
|
1137
1136
|
a2200493 a 4500</leader><controlfield tag=\"001\"> 92828023 </controlfield><controlfield
|
1138
1137
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090122150744.0</controlfield><controlfield
|
1139
1138
|
tag=\"008\">921008m19929999is 000 0 heb </controlfield><datafield
|
@@ -1215,39 +1214,39 @@
|
|
1215
1214
|
code=\"6\">740-09/(2/r</subfield><subfield code=\"a\">ספר משנה ברורה המנקד.</subfield></datafield><datafield
|
1216
1215
|
tag=\"880\" ind1=\"0\" ind2=\"2\"><subfield code=\"6\">740-10/(2/r</subfield><subfield
|
1217
1216
|
code=\"a\">איש מצליח.</subfield></datafield></record></collection>"
|
1218
|
-
|
1217
|
+
published_ssim:
|
1219
1218
|
- Jerusalem?
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1219
|
+
author_tsim: Israel Meir, ha-Kohen, 1838-1933
|
1220
|
+
title_vern_ssim: "ספר משנה ברורה :"
|
1221
|
+
lc_callnum_ssim:
|
1223
1222
|
- BM520.88.A53 I88 1992b
|
1224
|
-
|
1223
|
+
title_tsim:
|
1225
1224
|
- 'Sefer Mishnah berurah :'
|
1226
1225
|
- "ספר משנה ברורה :"
|
1227
|
-
|
1226
|
+
pub_date_ssim:
|
1228
1227
|
- '1992'
|
1229
|
-
|
1230
|
-
|
1228
|
+
pub_date_si: 1992
|
1229
|
+
published_vern_ssim:
|
1231
1230
|
- "[Jerusalem? :"
|
1232
1231
|
format: Book
|
1233
|
-
|
1232
|
+
subtitle_vern_ssim: "והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף
|
1234
1233
|
קארו ... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש /"
|
1235
|
-
|
1234
|
+
lc_b4cutter_ssim:
|
1236
1235
|
- BM520.88.A53
|
1237
|
-
|
1236
|
+
material_type_ssim:
|
1238
1237
|
- v. <1-5>
|
1239
|
-
|
1238
|
+
subject_tsim:
|
1240
1239
|
- Karo, Joseph ben Ephraim, 1488-1575. Oraḥ ḥayim
|
1241
1240
|
- Jewish law
|
1242
1241
|
- Judaism
|
1243
1242
|
- "שלחן ערוך. ארח חיים"
|
1244
|
-
|
1243
|
+
title_si: sefer mishnah berurah :ṿe-hu perush yafeh u-menupeh ʻal shulḥan ʻarukh
|
1245
1244
|
oraḥ ḥayim asher ḥiber yosef ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon
|
1246
1245
|
... ṿe-himtsiʼam ... mosheh iserlish
|
1247
|
-
|
1246
|
+
author_si: Israel Meir haKohen 18381933 Mishnah berurah Sefer Mishnah berurah
|
1248
1247
|
ṿehu perush yafeh umenupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim asher ḥiber Yosef
|
1249
1248
|
Ḳaro ʻim ḥidushe dinim shehishmiṭ hagaʼon ṿehimtsiʼam Mosheh Iserlish
|
1250
|
-
|
1249
|
+
title_addl_tsim:
|
1251
1250
|
- 'Sefer Mishnah berurah : ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ
|
1252
1251
|
ḥayim asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ...
|
1253
1252
|
ṿe-himtsiʼam ... Mosheh Iserlish /'
|
@@ -1255,12 +1254,12 @@
|
|
1255
1254
|
- "ספר משנה ברורה : והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף קארו
|
1256
1255
|
... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש /"
|
1257
1256
|
- "משנה ברורה"
|
1258
|
-
|
1257
|
+
author_addl_tsim:
|
1259
1258
|
- Isserles, Moses ben Israel,
|
1260
1259
|
- Karo, Joseph ben Ephraim,
|
1261
1260
|
- "איסרליש, משה"
|
1262
1261
|
- "קארו, יוסף."
|
1263
|
-
|
1262
|
+
title_added_entry_tsim:
|
1264
1263
|
- Oraḥ ḥayim
|
1265
1264
|
- Mishnah berurah.
|
1266
1265
|
- Sefer Mishnah berurah ha-menuḳad.
|
@@ -1269,32 +1268,32 @@
|
|
1269
1268
|
- "משנה ברורה"
|
1270
1269
|
- "ספר משנה ברורה המנקד"
|
1271
1270
|
- "איש מצליח"
|
1272
|
-
|
1271
|
+
language_ssim:
|
1273
1272
|
- Hebrew
|
1274
1273
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1275
|
-
-
|
1276
|
-
|
1277
|
-
|
1274
|
+
- subtitle_tsim: 'kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin setʻae rŭpʻo'
|
1275
|
+
author_vern_ssim: "김 홍신, 1947-"
|
1276
|
+
subject_addl_ssim:
|
1278
1277
|
- Korea (South) Social conditions
|
1279
1278
|
- Social conditions
|
1280
|
-
|
1279
|
+
title_tsim: Ajikto kŭrŏk chŏrŏk sasimnikka
|
1281
1280
|
id: '94120425'
|
1282
|
-
|
1281
|
+
subject_geo_ssim:
|
1283
1282
|
- Seoul (Korea)
|
1284
1283
|
- Korea (South)
|
1285
|
-
|
1284
|
+
subject_ssim:
|
1286
1285
|
- Women
|
1287
|
-
|
1286
|
+
lc_alpha_ssim:
|
1288
1287
|
- HQ
|
1289
|
-
|
1288
|
+
subtitle_tsim:
|
1290
1289
|
- 'kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin setʻae rŭpʻo.'
|
1291
1290
|
- "강남 여인 과 신 팔불출 : 金 洪信 세태 르포"
|
1292
|
-
|
1291
|
+
author_tsim:
|
1293
1292
|
- Kim, Hong-sin,
|
1294
1293
|
- "김 홍신"
|
1295
|
-
|
1294
|
+
lc_1letter_ssim:
|
1296
1295
|
- H - Social Sciences
|
1297
|
-
|
1296
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01149cam
|
1298
1297
|
a2200301 a 4500</leader><controlfield tag=\"001\"> 94120425 </controlfield><controlfield
|
1299
1298
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123075708.0</controlfield><controlfield
|
1300
1299
|
tag=\"008\">940328s1990 ko 000 0 kor d</controlfield><datafield
|
@@ -1332,74 +1331,74 @@
|
|
1332
1331
|
tag=\"880\" ind1=\" \" ind2=\" \"><subfield code=\"6\">260-04/$1</subfield><subfield
|
1333
1332
|
code=\"a\">서울 :</subfield><subfield code=\"b\">女苑 出版局,</subfield><subfield code=\"c\">1990</subfield><subfield
|
1334
1333
|
code=\"g\">(1992 printing)</subfield></datafield></record></collection>"
|
1335
|
-
|
1334
|
+
published_ssim:
|
1336
1335
|
- Sŏul
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1336
|
+
author_tsim: Kim, Hong-sin, 1947-
|
1337
|
+
title_vern_ssim: "아직도 그럭 저럭 사십니까"
|
1338
|
+
lc_callnum_ssim:
|
1340
1339
|
- HQ1765.5 .K46 1990
|
1341
|
-
|
1340
|
+
title_tsim:
|
1342
1341
|
- 'Ajikto kŭrŏk chŏrŏk sasimnikka :'
|
1343
1342
|
- "아직도 그럭 저럭 사십니까"
|
1344
|
-
|
1343
|
+
pub_date_ssim:
|
1345
1344
|
- '1990'
|
1346
|
-
|
1347
|
-
|
1345
|
+
pub_date_si: 1990
|
1346
|
+
published_vern_ssim:
|
1348
1347
|
- "서울"
|
1349
1348
|
format: Book
|
1350
|
-
|
1351
|
-
|
1349
|
+
subtitle_vern_ssim: "강남 여인 과 신 팔불출 : 金 洪信 세태 르포"
|
1350
|
+
lc_b4cutter_ssim:
|
1352
1351
|
- HQ1765.5
|
1353
|
-
|
1352
|
+
material_type_ssim:
|
1354
1353
|
- 289 p.
|
1355
|
-
|
1354
|
+
subject_tsim:
|
1356
1355
|
- Women
|
1357
1356
|
- Seoul (Korea)
|
1358
|
-
|
1357
|
+
title_si: 'ajikto kŭrŏk chŏrŏk sasimnikka :kangnam yŏin kwa sin pʻalbulchʻul
|
1359
1358
|
: kim hong-sin setʻae rŭpʻo'
|
1360
|
-
|
1359
|
+
author_si: Kim Hongsin 1947 Ajikto kŭrŏk chŏrŏk sasimnikka kangnam yŏin kwa
|
1361
1360
|
sin pʻalbulchʻul Kim Hongsin setʻae rŭpʻo
|
1362
|
-
|
1361
|
+
title_addl_tsim:
|
1363
1362
|
- 'Ajikto kŭrŏk chŏrŏk sasimnikka : kangnam yŏin kwa sin pʻalbulchʻul : Kim
|
1364
1363
|
Hong-sin setʻae rŭpʻo.'
|
1365
1364
|
- "아직도 그럭 저럭 사십니까 : 강남 여인 과 신 팔불출 : 金 洪信 세태 르포"
|
1366
|
-
|
1365
|
+
language_ssim:
|
1367
1366
|
- Korean
|
1368
1367
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1369
|
-
|
1368
|
+
geojson_ssim:
|
1370
1369
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[126.9779692,37.566535]},\"properties\":{\"placename\":\"Seoul (Korea)\"}}"
|
1371
1370
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[127.766922,35.907757]},\"properties\":{\"placename\":\"Korea (South)\"}}"
|
1372
|
-
|
1373
|
-
- 126.9779692
|
1374
|
-
- 127.766922
|
1375
|
-
-
|
1376
|
-
|
1377
|
-
|
1371
|
+
coordinates_srpt:
|
1372
|
+
- 37.566535,126.9779692
|
1373
|
+
- 35.907757,127.766922
|
1374
|
+
- subtitle_tsim: dar khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān
|
1375
|
+
author_vern_ssim: "رجايى، فرهنگ ."
|
1376
|
+
subject_addl_ssim:
|
1378
1377
|
- Iran
|
1379
1378
|
- Ethnic identity
|
1380
1379
|
- Politics and government
|
1381
1380
|
- Civilization
|
1382
|
-
|
1381
|
+
title_tsim: Maʻrakah-ʼi jahānʹbīnīʹhā
|
1383
1382
|
id: '96933325'
|
1384
|
-
|
1383
|
+
subject_geo_ssim:
|
1385
1384
|
- Iran
|
1386
|
-
|
1385
|
+
subject_ssim:
|
1387
1386
|
- Political science
|
1388
1387
|
- Iranians
|
1389
|
-
|
1388
|
+
lc_alpha_ssim:
|
1390
1389
|
- DS
|
1391
|
-
|
1390
|
+
title_series_tsim:
|
1392
1391
|
- Sipihr-i farhang va jāmiʻah ; 1
|
1393
1392
|
- "سپهر فرهنگ و جامعه ؛ 1"
|
1394
|
-
|
1393
|
+
subtitle_tsim:
|
1395
1394
|
- dar khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān /
|
1396
1395
|
- "در خردورزى سياسى و هويت ما ايرانيان /"
|
1397
|
-
|
1396
|
+
author_tsim:
|
1398
1397
|
- Rajāyī, Farhang,
|
1399
1398
|
- "رجايى، فرهنگ ."
|
1400
|
-
|
1399
|
+
lc_1letter_ssim:
|
1401
1400
|
- D - World History
|
1402
|
-
|
1401
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01484cam
|
1403
1402
|
a2200349 a 4500</leader><controlfield tag=\"001\"> 96933325 </controlfield><controlfield
|
1404
1403
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121112252.0</controlfield><controlfield
|
1405
1404
|
tag=\"008\">040115s1994 ir b 001 0 per </controlfield><datafield
|
@@ -1445,50 +1444,51 @@
|
|
1445
1444
|
code=\"b\">احياء كتاب،</subfield><subfield code=\"c\">1373 [1994 or 1995].</subfield></datafield><datafield
|
1446
1445
|
tag=\"880\" ind1=\" \" ind2=\"0\"><subfield code=\"6\">440-05/(3/r</subfield><subfield
|
1447
1446
|
code=\"a\">سپهر فرهنگ و جامعه ؛</subfield><subfield code=\"v\">1</subfield></datafield></record></collection>"
|
1448
|
-
|
1447
|
+
published_ssim:
|
1449
1448
|
- Tihrān
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1449
|
+
author_tsim: Rajāyī, Farhang, 1952 or 3-
|
1450
|
+
title_vern_ssim: "معركۀ جهانبينىها :"
|
1451
|
+
lc_callnum_ssim:
|
1453
1452
|
- DS274 .R327 1994
|
1454
|
-
|
1453
|
+
title_tsim:
|
1455
1454
|
- 'Maʻrakah-ʼi jahānʹbīnīʹhā :'
|
1456
1455
|
- "معركۀ جهانبينىها :"
|
1457
|
-
|
1456
|
+
pub_date_ssim:
|
1458
1457
|
- '1994'
|
1459
|
-
|
1460
|
-
|
1458
|
+
pub_date_si: 1994
|
1459
|
+
published_vern_ssim:
|
1461
1460
|
- "تهران :"
|
1462
1461
|
format: Book
|
1463
|
-
|
1464
|
-
|
1462
|
+
subtitle_vern_ssim: "در خردورزى سياسى و هويت ما ايرانيان /"
|
1463
|
+
material_type_ssim:
|
1465
1464
|
- 323 p.
|
1466
|
-
|
1465
|
+
lc_b4cutter_ssim:
|
1467
1466
|
- DS274
|
1468
|
-
|
1467
|
+
subject_tsim:
|
1469
1468
|
- Political science
|
1470
1469
|
- Iranians
|
1471
1470
|
- Iran
|
1472
|
-
|
1471
|
+
title_si: maʻrakah-ʼi jahānʹbīnīʹhā :dar khiradvarzī-i siyāsī va huvīyat-i
|
1473
1472
|
mā īrānīyān
|
1474
|
-
|
1473
|
+
author_si: Rajāyī Farhang 1952 or 3 Maʻrakahʼi jahānʹbīnīʹhā dar khiradvarzīi
|
1475
1474
|
siyāsī va huvīyati mā Īrānīyān
|
1476
|
-
|
1475
|
+
title_addl_tsim:
|
1477
1476
|
- 'Maʻrakah-ʼi jahānʹbīnīʹhā : dar khiradvarzī-i siyāsī va huvīyat-i mā
|
1478
1477
|
Īrānīyān /'
|
1479
1478
|
- "معركۀ جهانبينىها : در خردورزى سياسى و هويت ما ايرانيان /"
|
1480
|
-
|
1479
|
+
language_ssim:
|
1481
1480
|
- Persian
|
1482
1481
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1483
|
-
|
1484
|
-
coordinates:
|
1485
|
-
|
1486
|
-
-
|
1487
|
-
-
|
1482
|
+
geojson_ssim:
|
1483
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[53.688046,32.427908]},\"properties\":{\"placename\":\"Iran\"}}"
|
1484
|
+
coordinates_srpt:
|
1485
|
+
- 32.427908,53.688046
|
1486
|
+
- ENVELOPE(44.0318907, 63.3333366, 39.7816755, 25.0594286)
|
1487
|
+
- lc_1letter_ssim:
|
1488
1488
|
- P - Language & Literature
|
1489
|
-
|
1489
|
+
author_tsim:
|
1490
1490
|
- Nārāyaṇa Paṇḍitācārya,
|
1491
|
-
|
1491
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01588cam
|
1492
1492
|
a2200313 a 4500</leader><controlfield tag=\"001\"> 2001417245</controlfield><controlfield
|
1493
1493
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121030347.0</controlfield><controlfield
|
1494
1494
|
tag=\"008\">011001m20009999ii 001 0 sano </controlfield><datafield
|
@@ -1529,54 +1529,54 @@
|
|
1529
1529
|
code=\"t\">Mandopakāriṇī.</subfield><subfield code=\"f\">2000.</subfield></datafield><datafield
|
1530
1530
|
tag=\"700\" ind1=\"1\" ind2=\" \"><subfield code=\"a\">Shyamachar, A. B.</subfield></datafield><datafield
|
1531
1531
|
tag=\"700\" ind1=\"1\" ind2=\" \"><subfield code=\"a\">Pandurangi, S. R.</subfield></datafield></record></collection>"
|
1532
|
-
|
1532
|
+
published_ssim:
|
1533
1533
|
- Bangalore
|
1534
|
-
|
1535
|
-
|
1534
|
+
author_tsim: Nārāyaṇa Paṇḍitācārya, 13th cent
|
1535
|
+
lc_callnum_ssim:
|
1536
1536
|
- PK3798.N313 S87 2000
|
1537
|
-
|
1537
|
+
title_tsim:
|
1538
1538
|
- Sumadhvavijayaḥ /
|
1539
|
-
|
1539
|
+
pub_date_ssim:
|
1540
1540
|
- '2000'
|
1541
|
-
|
1541
|
+
pub_date_si: 2000
|
1542
1542
|
format: Book
|
1543
|
-
|
1543
|
+
material_type_ssim:
|
1544
1544
|
- v. <1 >
|
1545
|
-
|
1545
|
+
lc_b4cutter_ssim:
|
1546
1546
|
- PK3798.N313
|
1547
|
-
|
1548
|
-
|
1547
|
+
title_tsim: Sumadhvavijayaḥ
|
1548
|
+
subject_addl_ssim:
|
1549
1549
|
- Poetry
|
1550
|
-
|
1550
|
+
subject_tsim:
|
1551
1551
|
- Madhva, 13th cent
|
1552
|
-
|
1552
|
+
title_si: sumadhvavijayaḥ
|
1553
1553
|
id: '2001417245'
|
1554
|
-
|
1555
|
-
|
1554
|
+
author_si: Nārāyaṇa Paṇḍitācārya 13th cent Sumadhvavijayaḥ
|
1555
|
+
title_addl_tsim:
|
1556
1556
|
- Sumadhvavijayaḥ /
|
1557
|
-
|
1557
|
+
subject_ssim:
|
1558
1558
|
- Madhva, 13th cent
|
1559
|
-
|
1559
|
+
author_addl_tsim:
|
1560
1560
|
- Nārāyaṇa Paṇḍitācārya,
|
1561
1561
|
- Viśvapatitīrtha,
|
1562
1562
|
- Chalāriśeṣācārya.
|
1563
1563
|
- Shyamachar, A. B.
|
1564
1564
|
- Pandurangi, S. R.
|
1565
|
-
|
1565
|
+
title_added_entry_tsim:
|
1566
1566
|
- Bhāvaprakāśikā
|
1567
1567
|
- Padārthadīpikodbodhikā
|
1568
1568
|
- Mandopakāriṇī
|
1569
|
-
|
1569
|
+
lc_alpha_ssim:
|
1570
1570
|
- PK
|
1571
|
-
|
1571
|
+
language_ssim:
|
1572
1572
|
- Sanskrit
|
1573
1573
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1574
|
-
-
|
1574
|
+
- lc_1letter_ssim:
|
1575
1575
|
- U - Military Science
|
1576
|
-
|
1576
|
+
author_tsim:
|
1577
1577
|
- Wuld Mawlāy al-Zayn, Sayyid Muḥammad wuld Sayyid.
|
1578
1578
|
- "ولد مولاي الزين، سيد محمد ولد سيد"
|
1579
|
-
|
1579
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01197cam
|
1580
1580
|
a22003014a 4500</leader><controlfield tag=\"001\"> 2003546302</controlfield><controlfield
|
1581
1581
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123173626.0</controlfield><controlfield
|
1582
1582
|
tag=\"008\">030922s2003 mu 000 0 ara </controlfield><datafield
|
@@ -1613,59 +1613,59 @@
|
|
1613
1613
|
محمد ولد سيد ولد مولاي الزين.</subfield></datafield><datafield tag=\"880\" ind1=\"
|
1614
1614
|
\" ind2=\" \"><subfield code=\"6\">260-03/(3/r</subfield><subfield code=\"a\">نواكشوط
|
1615
1615
|
:</subfield><subfield code=\"b\">[s.n.]،</subfield><subfield code=\"c\">2003.</subfield></datafield></record></collection>"
|
1616
|
-
|
1616
|
+
published_ssim:
|
1617
1617
|
- Nuwākshūṭ
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1618
|
+
title_vern_ssim: "الحرب في الألفية الثالثة"
|
1619
|
+
author_tsim: Wuld Mawlāy al-Zayn, Sayyid Muḥammad wuld Sayyid
|
1620
|
+
lc_callnum_ssim:
|
1621
1621
|
- U21.2 .W85 2003
|
1622
|
-
|
1622
|
+
title_tsim:
|
1623
1623
|
- al-Ḥarb fī al-alfīyah al-thālithah /
|
1624
1624
|
- "الحرب في الألفية الثالثة"
|
1625
|
-
|
1625
|
+
pub_date_ssim:
|
1626
1626
|
- '2003'
|
1627
|
-
|
1628
|
-
|
1627
|
+
pub_date_si: 2003
|
1628
|
+
published_vern_ssim:
|
1629
1629
|
- "نواكشوط"
|
1630
1630
|
format: Book
|
1631
|
-
|
1632
|
-
|
1631
|
+
author_vern_ssim: "ولد مولاي الزين، سيد محمد ولد سيد"
|
1632
|
+
material_type_ssim:
|
1633
1633
|
- 128 p.
|
1634
|
-
|
1634
|
+
lc_b4cutter_ssim:
|
1635
1635
|
- U21.2
|
1636
|
-
|
1637
|
-
|
1636
|
+
title_tsim: al-Ḥarb fī al-alfīyah al-thālithah
|
1637
|
+
subject_addl_ssim:
|
1638
1638
|
- History 21st century
|
1639
1639
|
- Forecasting
|
1640
|
-
|
1640
|
+
subject_tsim:
|
1641
1641
|
- War
|
1642
1642
|
- Military art and science
|
1643
1643
|
- Warfare, Conventional
|
1644
1644
|
- Military weapons
|
1645
|
-
|
1645
|
+
subject_era_ssim:
|
1646
1646
|
- 21st century
|
1647
|
-
|
1647
|
+
title_si: ḥarb fī al-alfīyah al-thālithah
|
1648
1648
|
id: '2003546302'
|
1649
|
-
|
1649
|
+
author_si: Wuld Mawlāy alZayn Sayyid Muḥammad wuld Sayyid Ḥarb fī alalfīyah
|
1650
1650
|
althālithah
|
1651
|
-
|
1651
|
+
title_addl_tsim:
|
1652
1652
|
- al-Ḥarb fī al-alfīyah al-thālithah /
|
1653
1653
|
- "الحرب في الألفية الثالثة"
|
1654
|
-
|
1654
|
+
subject_ssim:
|
1655
1655
|
- War
|
1656
1656
|
- Military art and science
|
1657
1657
|
- Warfare, Conventional
|
1658
1658
|
- Military weapons
|
1659
|
-
|
1659
|
+
lc_alpha_ssim:
|
1660
1660
|
- U
|
1661
|
-
|
1661
|
+
language_ssim:
|
1662
1662
|
- Arabic
|
1663
1663
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1664
|
-
-
|
1664
|
+
- lc_1letter_ssim:
|
1665
1665
|
- D - World History
|
1666
|
-
|
1666
|
+
author_tsim:
|
1667
1667
|
- Bstan-ʼdzin-mkhas-grub,
|
1668
|
-
|
1668
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>00875cam
|
1669
1669
|
a22002534a 4500</leader><controlfield tag=\"001\"> 2004310986</controlfield><controlfield
|
1670
1670
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123105515.0</controlfield><controlfield
|
1671
1671
|
tag=\"008\">040812s2004 cc a 000 0 tibo </controlfield><datafield
|
@@ -1693,65 +1693,65 @@
|
|
1693
1693
|
\" ind2=\"0\"><subfield code=\"a\">Bon-brgya (China)</subfield><subfield code=\"x\">History.</subfield></datafield><datafield
|
1694
1694
|
tag=\"651\" ind1=\" \" ind2=\"0\"><subfield code=\"a\">Bon-brgya (China)</subfield><subfield
|
1695
1695
|
code=\"x\">Kings and rulers.</subfield></datafield></record></collection>"
|
1696
|
-
|
1696
|
+
published_ssim:
|
1697
1697
|
- Lha-sa
|
1698
|
-
|
1699
|
-
|
1698
|
+
author_tsim: Bstan-ʼdzin-mkhas-grub, 1967-
|
1699
|
+
lc_callnum_ssim:
|
1700
1700
|
- DS797.82.B663 B75 2004
|
1701
|
-
|
1701
|
+
title_tsim:
|
1702
1702
|
- Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so /
|
1703
|
-
|
1703
|
+
pub_date_ssim:
|
1704
1704
|
- '2004'
|
1705
|
-
|
1705
|
+
pub_date_si: 2004
|
1706
1706
|
format: Book
|
1707
|
-
|
1707
|
+
material_type_ssim:
|
1708
1708
|
- 149 p.
|
1709
|
-
|
1709
|
+
lc_b4cutter_ssim:
|
1710
1710
|
- DS797.82.B663
|
1711
|
-
|
1711
|
+
title_tsim: Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs
|
1712
1712
|
so
|
1713
|
-
|
1713
|
+
subject_addl_ssim:
|
1714
1714
|
- History
|
1715
1715
|
- Kings and rulers
|
1716
|
-
|
1716
|
+
subject_tsim:
|
1717
1717
|
- Bon-brgya (China)
|
1718
|
-
|
1718
|
+
title_si: bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs
|
1719
1719
|
so
|
1720
1720
|
id: '2004310986'
|
1721
|
-
|
1721
|
+
author_si: Bstanʼdzinmkhasgrub 1967 Bonbrgyaʼi lo rgyus lugs gñis gsal baʼi me
|
1722
1722
|
loṅ źes bya ba bźugs so
|
1723
|
-
|
1723
|
+
title_addl_tsim:
|
1724
1724
|
- Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so /
|
1725
|
-
|
1725
|
+
subject_geo_ssim:
|
1726
1726
|
- Bon-brgya (China)
|
1727
|
-
|
1727
|
+
lc_alpha_ssim:
|
1728
1728
|
- DS
|
1729
|
-
|
1729
|
+
language_ssim:
|
1730
1730
|
- Tibetan
|
1731
1731
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1732
|
-
-
|
1733
|
-
|
1734
|
-
|
1732
|
+
- subtitle_tsim: min jald al-dhāt ilá ṣidq al-sharḥ
|
1733
|
+
author_vern_ssim: "أبو الخير، علي عبد الحميد"
|
1734
|
+
subject_addl_ssim:
|
1735
1735
|
- 20th century
|
1736
1736
|
- 21st century
|
1737
|
-
|
1738
|
-
|
1737
|
+
title_tsim: Thuqūb fī ʻaql al-ummah
|
1738
|
+
subject_era_ssim:
|
1739
1739
|
- 20th century
|
1740
1740
|
- 21st century
|
1741
1741
|
id: '2005461726'
|
1742
|
-
|
1742
|
+
subject_ssim:
|
1743
1743
|
- Islam
|
1744
|
-
|
1744
|
+
lc_alpha_ssim:
|
1745
1745
|
- BP
|
1746
|
-
|
1746
|
+
subtitle_tsim:
|
1747
1747
|
- min jald al-dhāt ilá ṣidq al-sharḥ.
|
1748
1748
|
- "من جلد الذات إلى صدق الشرح"
|
1749
|
-
|
1749
|
+
author_tsim:
|
1750
1750
|
- Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd.
|
1751
1751
|
- "أبو الخير، علي عبد الحميد"
|
1752
|
-
|
1752
|
+
lc_1letter_ssim:
|
1753
1753
|
- B - Philosophy, Psychology, Religion
|
1754
|
-
|
1754
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01127nam
|
1755
1755
|
a2200277 a 4500</leader><controlfield tag=\"001\"> 2005461726</controlfield><controlfield
|
1756
1756
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126155550.0</controlfield><controlfield
|
1757
1757
|
tag=\"008\">070712s2006 ua 000 0 ara d</controlfield><datafield
|
@@ -1786,40 +1786,40 @@
|
|
1786
1786
|
\"><subfield code=\"6\">260-04/(3/r</subfield><subfield code=\"a\">المعادي، القاهرة
|
1787
1787
|
:</subfield><subfield code=\"b\">مركز يافا للدراسات والأبحاث،</subfield><subfield
|
1788
1788
|
code=\"c\">2006.</subfield></datafield></record></collection>"
|
1789
|
-
|
1789
|
+
published_ssim:
|
1790
1790
|
- al-Maʻādī, al-Qāhirah
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1791
|
+
author_tsim: Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd
|
1792
|
+
title_vern_ssim: "ثقوب في عقل الأمة"
|
1793
|
+
lc_callnum_ssim:
|
1794
1794
|
- BP161.3 .A27 2006
|
1795
|
-
|
1795
|
+
title_tsim:
|
1796
1796
|
- 'Thuqūb fī ʻaql al-ummah :'
|
1797
1797
|
- "ثقوب في عقل الأمة"
|
1798
|
-
|
1798
|
+
pub_date_ssim:
|
1799
1799
|
- '2006'
|
1800
|
-
|
1801
|
-
|
1800
|
+
pub_date_si: 2006
|
1801
|
+
published_vern_ssim:
|
1802
1802
|
- "المعادي، القاهرة"
|
1803
1803
|
format: Book
|
1804
|
-
|
1805
|
-
|
1804
|
+
subtitle_vern_ssim: "من جلد الذات إلى صدق الشرح"
|
1805
|
+
lc_b4cutter_ssim:
|
1806
1806
|
- BP161.3
|
1807
|
-
|
1807
|
+
material_type_ssim:
|
1808
1808
|
- 85 p.
|
1809
|
-
|
1809
|
+
subject_tsim:
|
1810
1810
|
- Islam
|
1811
|
-
|
1812
|
-
|
1811
|
+
title_si: thuqūb fī ʻaql al-ummah :min jald al-dhāt ilá ṣidq al-sharḥ
|
1812
|
+
author_si: Abū alKhayr ʻAlī ʻAbd alḤamīd Thuqūb fī ʻaql alummah min jald
|
1813
1813
|
aldhāt ilá ṣidq alsharḥ
|
1814
|
-
|
1814
|
+
title_addl_tsim:
|
1815
1815
|
- 'Thuqūb fī ʻaql al-ummah : min jald al-dhāt ilá ṣidq al-sharḥ.'
|
1816
1816
|
- "ثقوب في عقل الأمة : من جلد الذات إلى صدق الشرح"
|
1817
|
-
|
1817
|
+
language_ssim:
|
1818
1818
|
- Arabic
|
1819
1819
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1820
|
-
-
|
1820
|
+
- lc_1letter_ssim:
|
1821
1821
|
- H - Social Sciences
|
1822
|
-
|
1822
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>03730cam
|
1823
1823
|
a22006257a 4500</leader><controlfield tag=\"001\"> 2005553155</controlfield><controlfield
|
1824
1824
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121104139.0</controlfield><controlfield
|
1825
1825
|
tag=\"008\">051007m19659999is | l 000 0 heb </controlfield><datafield
|
@@ -1912,30 +1912,30 @@
|
|
1912
1912
|
לשירותים מיוחדים לנכים קשים.</subfield></datafield><datafield tag=\"880\" ind1=\"0\"
|
1913
1913
|
ind2=\"2\"><subfield code=\"6\">740-14/(2/r</subfield><subfield code=\"a\">מומחים
|
1914
1914
|
בינלאומיים על מדוכת הביטחון הסוציאלי.</subfield></datafield></record></collection>"
|
1915
|
-
|
1915
|
+
published_ssim:
|
1916
1916
|
- Israel
|
1917
|
-
|
1918
|
-
|
1917
|
+
title_vern_ssim: "ביטוח וביטחון סוציאלי"
|
1918
|
+
lc_callnum_ssim:
|
1919
1919
|
- HG8695.2 .B57 1962
|
1920
|
-
|
1920
|
+
title_tsim:
|
1921
1921
|
- "[Bituaḥ u-viṭaḥon sotsyali]."
|
1922
1922
|
- "ביטוח וביטחון סוציאלי"
|
1923
|
-
|
1923
|
+
pub_date_ssim:
|
1924
1924
|
- '1962'
|
1925
|
-
|
1925
|
+
pub_date_si: 1962
|
1926
1926
|
format: Book
|
1927
|
-
|
1927
|
+
material_type_ssim:
|
1928
1928
|
- items 1-<13> of <13>
|
1929
|
-
|
1929
|
+
lc_b4cutter_ssim:
|
1930
1930
|
- HG8695.2
|
1931
|
-
|
1932
|
-
|
1931
|
+
title_tsim: Bituaḥ u-viṭaḥon sotsyali
|
1932
|
+
subject_addl_ssim:
|
1933
1933
|
- Israel
|
1934
1934
|
- Economic aspects
|
1935
1935
|
- Law and legislation Israel
|
1936
1936
|
- Social policy
|
1937
1937
|
- Armed Forces Reserves Pay, allowances, etc. Law and legislation
|
1938
|
-
|
1938
|
+
subject_tsim:
|
1939
1939
|
- Insurance
|
1940
1940
|
- Social security
|
1941
1941
|
- Family allowances
|
@@ -1943,22 +1943,22 @@
|
|
1943
1943
|
- Accident insurance
|
1944
1944
|
- Old age
|
1945
1945
|
- Israel
|
1946
|
-
|
1946
|
+
title_si: bituaḥ u-viṭaḥon sotsyali
|
1947
1947
|
id: '2005553155'
|
1948
|
-
|
1949
|
-
|
1948
|
+
author_si: "\U0010FFFF Bituaḥ uviṭaḥon sotsyali"
|
1949
|
+
title_addl_tsim:
|
1950
1950
|
- "[Bituaḥ u-viṭaḥon sotsyali]."
|
1951
1951
|
- "ביטוח וביטחון סוציאלי"
|
1952
|
-
|
1952
|
+
subject_geo_ssim:
|
1953
1953
|
- Israel
|
1954
|
-
|
1954
|
+
subject_ssim:
|
1955
1955
|
- Insurance
|
1956
1956
|
- Social security
|
1957
1957
|
- Family allowances
|
1958
1958
|
- Maternity insurance
|
1959
1959
|
- Accident insurance
|
1960
1960
|
- Old age
|
1961
|
-
|
1961
|
+
title_added_entry_tsim:
|
1962
1962
|
- Megamot be-mesheḳ ha-biṭuaḥ ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat 1965.
|
1963
1963
|
- Biṭuaḥ ziḳnah.
|
1964
1964
|
- Biṭuaḥ sheʼirim.
|
@@ -1985,22 +1985,22 @@
|
|
1985
1985
|
- "שירות מילואים"
|
1986
1986
|
- "קצבה לשירותים מיוחדים לנכים קשים"
|
1987
1987
|
- "מומחים בינלאומיים על מדוכת הביטחון הסוציאלי"
|
1988
|
-
|
1988
|
+
lc_alpha_ssim:
|
1989
1989
|
- HG
|
1990
|
-
|
1990
|
+
language_ssim:
|
1991
1991
|
- Hebrew
|
1992
1992
|
timestamp: '2014-02-03T18:42:53.056Z'
|
1993
|
-
|
1993
|
+
geojson_ssim:
|
1994
1994
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[34.851612, 31.046051]},\"properties\":{\"placename\":\"Israel\"}}"
|
1995
1995
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[34.267387, 29.47969999999999], [35.896244, 29.47969999999999], [35.896244, 33.33280500000001], [34.267387, 33.33280500000001], [34.267387, 29.47969999999999]]]},\"bbox\":[34.267387, 29.47969999999999, 35.896244, 33.33280500000001]}"
|
1996
|
-
|
1997
|
-
- 34.267387
|
1998
|
-
- 34.851612
|
1999
|
-
-
|
1996
|
+
coordinates_srpt:
|
1997
|
+
- ENVELOPE(34.267387, 35.896244, 33.33280500000001, 29.47969999999999)
|
1998
|
+
- 31.046051,34.851612
|
1999
|
+
- lc_1letter_ssim:
|
2000
2000
|
- E - History of the Americas (General)
|
2001
|
-
|
2001
|
+
author_tsim:
|
2002
2002
|
- Hearth, Amy Hill,
|
2003
|
-
|
2003
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01490cam
|
2004
2004
|
a2200361 a 4500</leader><controlfield tag=\"001\"> 2007020969</controlfield><controlfield
|
2005
2005
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126093447.0</controlfield><controlfield
|
2006
2006
|
tag=\"008\">070522s2008 nyua b 000 0beng </controlfield><datafield
|
@@ -2047,74 +2047,74 @@
|
|
2047
2047
|
code=\"u\">http://www.loc.gov/catdir/enhancements/fy0808/2007020969-d.html</subfield></datafield><datafield
|
2048
2048
|
tag=\"856\" ind1=\"4\" ind2=\"1\"><subfield code=\"3\">Sample text</subfield><subfield
|
2049
2049
|
code=\"u\">http://www.loc.gov/catdir/enhancements/fy0808/2007020969-s.html</subfield></datafield></record></collection>"
|
2050
|
-
|
2050
|
+
published_ssim:
|
2051
2051
|
- New York
|
2052
|
-
|
2053
|
-
|
2052
|
+
author_tsim: Hearth, Amy Hill, 1958-
|
2053
|
+
lc_callnum_ssim:
|
2054
2054
|
- E99.D2 H437 2008
|
2055
|
-
|
2055
|
+
title_tsim:
|
2056
2056
|
- "\"Strong Medicine speaks\" :"
|
2057
|
-
|
2057
|
+
pub_date_ssim:
|
2058
2058
|
- '2008'
|
2059
|
-
|
2060
|
-
|
2059
|
+
pub_date_si: 2008
|
2060
|
+
subtitle_tsim: 'a Native American elder has her say : an oral history'
|
2061
2061
|
format: Book
|
2062
|
-
|
2062
|
+
url_suppl_ssim:
|
2063
2063
|
- http://www.loc.gov/catdir/toc/ecip0719/2007020969.html
|
2064
2064
|
- http://www.loc.gov/catdir/enhancements/fy0808/2007020969-d.html
|
2065
2065
|
- http://www.loc.gov/catdir/enhancements/fy0808/2007020969-s.html
|
2066
|
-
|
2066
|
+
material_type_ssim:
|
2067
2067
|
- xvii, 267 p.
|
2068
|
-
|
2068
|
+
lc_b4cutter_ssim:
|
2069
2069
|
- E99.D2
|
2070
|
-
|
2071
|
-
|
2070
|
+
title_tsim: "\"Strong Medicine speaks\""
|
2071
|
+
subject_addl_ssim:
|
2072
2072
|
- New Jersey Bridgeton Biography
|
2073
2073
|
- New Jersey Bridgeton History
|
2074
|
-
|
2074
|
+
subject_tsim:
|
2075
2075
|
- Strong Medicine, 1922-
|
2076
2076
|
- Delaware women
|
2077
2077
|
- Indian women shamans
|
2078
2078
|
- Delaware Indians
|
2079
|
-
|
2079
|
+
title_si: "\"strong medicine speaks\" :a native american elder has her say : an
|
2080
2080
|
oral history"
|
2081
|
-
|
2081
|
+
isbn_ssim:
|
2082
2082
|
- '9780743297790'
|
2083
2083
|
- 0743297792
|
2084
2084
|
id: '2007020969'
|
2085
|
-
|
2085
|
+
author_si: Hearth Amy Hill 1958 Strong Medicine speaks a Native American elder
|
2086
2086
|
has her say an oral history
|
2087
|
-
|
2087
|
+
title_addl_tsim:
|
2088
2088
|
- "\"Strong Medicine speaks\" : a Native American elder has her say : an oral history
|
2089
2089
|
/"
|
2090
|
-
|
2090
|
+
subject_geo_ssim:
|
2091
2091
|
- New Jersey
|
2092
2092
|
- Bridgeton
|
2093
|
-
|
2093
|
+
subject_ssim:
|
2094
2094
|
- Strong Medicine, 1922-
|
2095
2095
|
- Delaware women
|
2096
2096
|
- Indian women shamans
|
2097
2097
|
- Delaware Indians
|
2098
|
-
|
2098
|
+
author_addl_tsim:
|
2099
2099
|
- Strong Medicine,
|
2100
|
-
|
2100
|
+
lc_alpha_ssim:
|
2101
2101
|
- E
|
2102
|
-
|
2102
|
+
language_ssim:
|
2103
2103
|
- English
|
2104
|
-
|
2104
|
+
subtitle_tsim:
|
2105
2105
|
- 'a Native American elder has her say : an oral history /'
|
2106
2106
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2107
|
-
|
2107
|
+
geojson_ssim:
|
2108
2108
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[74.4056612,40.0583238]},\"properties\":{\"placename\":\"New Jersey\"}}"
|
2109
2109
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[75.2340768,39.427337]},\"properties\":{\"placename\":\"Bridgeton\"}}"
|
2110
|
-
|
2111
|
-
- 74.4056612
|
2112
|
-
- 75.2340768
|
2113
|
-
-
|
2110
|
+
coordinates_srpt:
|
2111
|
+
- 40.0583238,74.4056612
|
2112
|
+
- 39.427337,75.2340768
|
2113
|
+
- lc_1letter_ssim:
|
2114
2114
|
- B - Philosophy, Psychology, Religion
|
2115
|
-
|
2115
|
+
author_tsim:
|
2116
2116
|
- Dkon-mchog-rgya-mtsho, Ra-se,
|
2117
|
-
|
2117
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01099cam
|
2118
2118
|
a22002534a 4500</leader><controlfield tag=\"001\"> 2008305903</controlfield><controlfield
|
2119
2119
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090122162012.0</controlfield><controlfield
|
2120
2120
|
tag=\"008\">080602s2008 ii a 000 0 tibo </controlfield><datafield
|
@@ -2145,73 +2145,73 @@
|
|
2145
2145
|
ind1=\" \" ind2=\"0\"><subfield code=\"a\">ʼBri-guṅ-pa (Sect)</subfield><subfield
|
2146
2146
|
code=\"x\">Doctrines</subfield><subfield code=\"v\">Miscellanea.</subfield></datafield><datafield
|
2147
2147
|
tag=\"710\" ind1=\"2\" ind2=\" \"><subfield code=\"a\">Sroṅ-btsan dpe mdzod khaṅ.</subfield></datafield></record></collection>"
|
2148
|
-
|
2148
|
+
published_ssim:
|
2149
2149
|
- "ʼPhags-yul Dhe-ra-dhun"
|
2150
|
-
|
2151
|
-
|
2150
|
+
author_tsim: Dkon-mchog-rgya-mtsho, Ra-se, 1968-
|
2151
|
+
lc_callnum_ssim:
|
2152
2152
|
- BQ7684.4 .D564 2008
|
2153
|
-
|
2153
|
+
title_tsim:
|
2154
2154
|
- 'Dris lan don gcig ma :'
|
2155
|
-
|
2155
|
+
pub_date_ssim:
|
2156
2156
|
- '2008'
|
2157
|
-
|
2158
|
-
|
2157
|
+
pub_date_si: 2008
|
2158
|
+
subtitle_tsim: dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho
|
2159
2159
|
ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so
|
2160
2160
|
format: Book
|
2161
|
-
|
2161
|
+
material_type_ssim:
|
2162
2162
|
- 208 p.
|
2163
|
-
|
2163
|
+
lc_b4cutter_ssim:
|
2164
2164
|
- BQ7684.4
|
2165
|
-
|
2166
|
-
|
2165
|
+
title_tsim: Dris lan don gcig ma
|
2166
|
+
subject_addl_ssim:
|
2167
2167
|
- Doctrines Miscellanea
|
2168
|
-
|
2168
|
+
subject_tsim:
|
2169
2169
|
- "ʼBri-guṅ-pa (Sect)"
|
2170
|
-
|
2170
|
+
title_si: dris lan don gcig ma :dam paʼi chos dgoṅs pa gcig paʼi dri ba legs
|
2171
2171
|
bśad bsu baʼi pho ñaʼi dris lan dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba
|
2172
2172
|
bźugs so
|
2173
2173
|
id: '2008305903'
|
2174
|
-
|
2174
|
+
author_si: Dkonmchogrgyamtsho Rase 1968 Dris lan don gcig ma dam paʼi chos dgoṅs
|
2175
2175
|
pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan Dgoṅsgcig smra baʼi
|
2176
2176
|
mdzes rgyan źes bya ba bźugs so
|
2177
|
-
|
2177
|
+
title_addl_tsim:
|
2178
2178
|
- 'Dris lan don gcig ma : dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu
|
2179
2179
|
baʼi pho ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so
|
2180
2180
|
/'
|
2181
|
-
|
2181
|
+
subject_ssim:
|
2182
2182
|
- "ʼBri-guṅ-pa (Sect)"
|
2183
|
-
|
2183
|
+
author_addl_tsim:
|
2184
2184
|
- Sroṅ-btsan dpe mdzod khaṅ.
|
2185
|
-
|
2185
|
+
lc_alpha_ssim:
|
2186
2186
|
- BQ
|
2187
|
-
|
2187
|
+
language_ssim:
|
2188
2188
|
- Tibetan
|
2189
|
-
|
2189
|
+
subtitle_tsim:
|
2190
2190
|
- dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan
|
2191
2191
|
Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so /
|
2192
2192
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2193
|
-
-
|
2194
|
-
|
2193
|
+
- subtitle_tsim: a supplication to the noble Lama Mahaguru Padmasambhava
|
2194
|
+
subject_addl_ssim:
|
2195
2195
|
- Prayers and devotions
|
2196
2196
|
- India Prayers and devotions
|
2197
|
-
|
2197
|
+
title_tsim: Pluvial nectar of blessings
|
2198
2198
|
id: '2008308175'
|
2199
|
-
|
2199
|
+
isbn_ssim:
|
2200
2200
|
- '8186470336'
|
2201
|
-
|
2201
|
+
subject_geo_ssim:
|
2202
2202
|
- India
|
2203
|
-
|
2203
|
+
subject_ssim:
|
2204
2204
|
- Padma Sambhava, ca. 717-ca. 762
|
2205
2205
|
- Priests, Buddhist
|
2206
|
-
|
2206
|
+
lc_alpha_ssim:
|
2207
2207
|
- BQ
|
2208
|
-
|
2208
|
+
subtitle_tsim:
|
2209
2209
|
- a supplication to the noble Lama Mahaguru Padmasambhava /
|
2210
|
-
|
2210
|
+
author_tsim:
|
2211
2211
|
- Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V,
|
2212
|
-
|
2212
|
+
lc_1letter_ssim:
|
2213
2213
|
- B - Philosophy, Psychology, Religion
|
2214
|
-
|
2214
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01582cam
|
2215
2215
|
a2200325 a 4500</leader><controlfield tag=\"001\"> 2008308175</controlfield><controlfield
|
2216
2216
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123091532.0</controlfield><controlfield
|
2217
2217
|
tag=\"008\">080718s2002 ii b 000 0 eng </controlfield><datafield
|
@@ -2255,57 +2255,57 @@
|
|
2255
2255
|
byin rlabs bdud rtsiʼi char rgyun.</subfield><subfield code=\"f\">2002</subfield></datafield><datafield
|
2256
2256
|
tag=\"710\" ind1=\"2\" ind2=\" \"><subfield code=\"a\">Library of Tibetan Works
|
2257
2257
|
& Archives.</subfield></datafield></record></collection>"
|
2258
|
-
|
2258
|
+
published_ssim:
|
2259
2259
|
- Dharamsala
|
2260
|
-
|
2261
|
-
|
2260
|
+
author_tsim: Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V, 1617-1682
|
2261
|
+
lc_callnum_ssim:
|
2262
2262
|
- BQ5593.P3 N3313 2002
|
2263
|
-
|
2263
|
+
title_tsim:
|
2264
2264
|
- 'Pluvial nectar of blessings :'
|
2265
|
-
|
2265
|
+
pub_date_ssim:
|
2266
2266
|
- '2002'
|
2267
|
-
|
2267
|
+
pub_date_si: 2002
|
2268
2268
|
format: Book
|
2269
|
-
|
2269
|
+
lc_b4cutter_ssim:
|
2270
2270
|
- BQ5593.P3
|
2271
|
-
|
2271
|
+
material_type_ssim:
|
2272
2272
|
- viii, 101 p.
|
2273
|
-
|
2273
|
+
subject_tsim:
|
2274
2274
|
- Padma Sambhava, ca. 717-ca. 762
|
2275
2275
|
- Priests, Buddhist
|
2276
|
-
|
2276
|
+
title_si: pluvial nectar of blessings :a supplication to the noble lama mahaguru
|
2277
2277
|
padmasambhava
|
2278
|
-
|
2278
|
+
author_si: Ṅagdbaṅblobzaṅrgyamtsho Dalai Lama V 16171682 Rje btsun bla ma ma
|
2279
2279
|
hā gu ru Padmaʼbyuṅgnas la gsol ba ʼdebs pa byin rlabs bdud rtsiʼi char rgyun
|
2280
2280
|
English Tibetan Pluvial nectar of blessings a supplication to the noble Lama
|
2281
2281
|
Mahaguru Padmasambhava
|
2282
|
-
|
2282
|
+
title_addl_tsim:
|
2283
2283
|
- 'Pluvial nectar of blessings : a supplication to the noble Lama Mahaguru Padmasambhava
|
2284
2284
|
/'
|
2285
2285
|
- Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs
|
2286
2286
|
bdud rtsiʼi char rgyun. English & Tibetan
|
2287
|
-
|
2287
|
+
author_addl_tsim:
|
2288
2288
|
- Cordell, Dennis.
|
2289
2289
|
- Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V,
|
2290
2290
|
- Library of Tibetan Works & Archives.
|
2291
|
-
|
2291
|
+
title_added_entry_tsim:
|
2292
2292
|
- Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs
|
2293
2293
|
bdud rtsiʼi char rgyun
|
2294
|
-
|
2294
|
+
language_ssim:
|
2295
2295
|
- English
|
2296
2296
|
- Tibetan
|
2297
2297
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2298
|
-
|
2298
|
+
geojson_ssim:
|
2299
2299
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[78.96288,20.593684]},\"properties\":{\"placename\":\"India\"}}"
|
2300
2300
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[68.162386, 6.7535159], [97.395555, 6.7535159], [97.395555, 35.5044752], [68.162386, 35.5044752], [68.162386, 6.7535159]]]},\"bbox\":[68.162386, 6.7535159, 97.395555, 35.5044752]}"
|
2301
|
-
|
2302
|
-
- 68.162386
|
2303
|
-
- 78.96288
|
2304
|
-
-
|
2301
|
+
coordinates_srpt:
|
2302
|
+
- ENVELOPE(68.162386, 97.395555, 35.5044752, 6.7535159)
|
2303
|
+
- 20.593684,78.96288
|
2304
|
+
- lc_1letter_ssim:
|
2305
2305
|
- B - Philosophy, Psychology, Religion
|
2306
|
-
|
2306
|
+
author_tsim:
|
2307
2307
|
- Bstan-ʼdzin-rgya-mtsho, Dalai Lama XIV,
|
2308
|
-
|
2308
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01221cam
|
2309
2309
|
a22002534a 4500</leader><controlfield tag=\"001\"> 2008308201</controlfield><controlfield
|
2310
2310
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090122162646.0</controlfield><controlfield
|
2311
2311
|
tag=\"008\">080721s2008 ii 000 0 tibo </controlfield><datafield
|
@@ -2337,55 +2337,55 @@
|
|
2337
2337
|
genius, nature.</subfield></datafield><datafield tag=\"710\" ind1=\"2\" ind2=\"
|
2338
2338
|
\"><subfield code=\"a\">Rnam-rgyal Grwa-tshaṅ.</subfield><subfield code=\"b\">Śes-yon
|
2339
2339
|
Lhan-tshogs.</subfield></datafield></record></collection>"
|
2340
|
-
|
2340
|
+
published_ssim:
|
2341
2341
|
- Dharamsala, H.P.
|
2342
|
-
|
2343
|
-
|
2342
|
+
author_tsim: Bstan-ʼdzin-rgya-mtsho, Dalai Lama XIV, 1935-
|
2343
|
+
lc_callnum_ssim:
|
2344
2344
|
- BQ4036 .B78 2008
|
2345
|
-
|
2345
|
+
title_tsim:
|
2346
2346
|
- 'Bod kyi naṅ chos ṅo sprod sñiṅ bsdus :'
|
2347
|
-
|
2347
|
+
pub_date_ssim:
|
2348
2348
|
- '2008'
|
2349
|
-
|
2350
|
-
|
2349
|
+
pub_date_si: 2008
|
2350
|
+
subtitle_tsim: goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon
|
2351
2351
|
rnams la naṅ chos ṅo sprod bstsal ba bźugs so
|
2352
2352
|
format: Book
|
2353
|
-
|
2353
|
+
material_type_ssim:
|
2354
2354
|
- 4, iv, 254 p.
|
2355
|
-
|
2355
|
+
lc_b4cutter_ssim:
|
2356
2356
|
- BQ4036
|
2357
|
-
|
2358
|
-
|
2357
|
+
title_tsim: Bod kyi naṅ chos ṅo sprod sñiṅ bsdus
|
2358
|
+
subject_addl_ssim:
|
2359
2359
|
- Essence, genius, nature
|
2360
|
-
|
2360
|
+
subject_tsim:
|
2361
2361
|
- Buddhism
|
2362
|
-
|
2362
|
+
title_si: bod kyi naṅ chos ṅo sprod sñiṅ bsdus :goṅ sa skyabs mgon chen po
|
2363
2363
|
mchog nas deṅ dus bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs
|
2364
2364
|
so
|
2365
2365
|
id: '2008308201'
|
2366
|
-
|
2366
|
+
author_si: Bstanʼdzinrgyamtsho Dalai Lama XIV 1935 Bod kyi naṅ chos ṅo sprod
|
2367
2367
|
sñiṅ bsdus goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon
|
2368
2368
|
rnams la naṅ chos ṅo sprod bstsal ba bźugs so
|
2369
|
-
|
2369
|
+
title_addl_tsim:
|
2370
2370
|
- 'Bod kyi naṅ chos ṅo sprod sñiṅ bsdus : goṅ sa skyabs mgon chen po mchog
|
2371
2371
|
nas deṅ dus Bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs so.'
|
2372
|
-
|
2372
|
+
subject_ssim:
|
2373
2373
|
- Buddhism
|
2374
|
-
|
2374
|
+
author_addl_tsim:
|
2375
2375
|
- Rnam-rgyal Grwa-tshaṅ. Śes-yon Lhan-tshogs.
|
2376
|
-
|
2376
|
+
lc_alpha_ssim:
|
2377
2377
|
- BQ
|
2378
|
-
|
2378
|
+
language_ssim:
|
2379
2379
|
- Tibetan
|
2380
|
-
|
2380
|
+
subtitle_tsim:
|
2381
2381
|
- goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon rnams la naṅ
|
2382
2382
|
chos ṅo sprod bstsal ba bźugs so.
|
2383
2383
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2384
|
-
-
|
2384
|
+
- lc_1letter_ssim:
|
2385
2385
|
- D - World History
|
2386
|
-
|
2386
|
+
author_tsim:
|
2387
2387
|
- Thub-bstan-yar-ʼphel, Rnam-grwa.
|
2388
|
-
|
2388
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01111cam
|
2389
2389
|
a2200289 a 4500</leader><controlfield tag=\"001\"> 2008308202</controlfield><controlfield
|
2390
2390
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121092141.0</controlfield><controlfield
|
2391
2391
|
tag=\"008\">080721s2005 ii b b 000 0 tibo </controlfield><datafield
|
@@ -2415,52 +2415,53 @@
|
|
2415
2415
|
tag=\"520\" ind1=\" \" ind2=\" \"><subfield code=\"a\">History of Tibet in questions/answers
|
2416
2416
|
format.</subfield></datafield><datafield tag=\"504\" ind1=\" \" ind2=\" \"><subfield
|
2417
2417
|
code=\"a\">Includes bibliographical references (p. 406-407).</subfield></datafield><datafield
|
2418
|
-
tag=\"651\" ind1=\" \" ind2=\"0\"><subfield code=\"a\">Tibet</subfield><subfield
|
2418
|
+
tag=\"651\" ind1=\" \" ind2=\"0\"><subfield code=\"a\">Tibet (China)</subfield><subfield
|
2419
2419
|
code=\"x\">History</subfield><subfield code=\"v\">Miscellanea.</subfield></datafield><datafield
|
2420
2420
|
tag=\"710\" ind1=\"2\" ind2=\" \"><subfield code=\"a\">Rnam-rgyal Grwa-tshaṅ.</subfield></datafield></record></collection>"
|
2421
|
-
|
2421
|
+
published_ssim:
|
2422
2422
|
- Dharamsala, H.P.
|
2423
|
-
|
2424
|
-
|
2423
|
+
author_tsim: Thub-bstan-yar-ʼphel, Rnam-grwa
|
2424
|
+
lc_callnum_ssim:
|
2425
2425
|
- DS785 .T475 2005
|
2426
|
-
|
2426
|
+
title_tsim:
|
2427
2427
|
- Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me
|
2428
2428
|
loṅ źes bya ba bźugs so /
|
2429
|
-
|
2429
|
+
pub_date_ssim:
|
2430
2430
|
- '2005'
|
2431
|
-
|
2431
|
+
pub_date_si: 2005
|
2432
2432
|
format: Book
|
2433
|
-
|
2433
|
+
material_type_ssim:
|
2434
2434
|
- a-e, iv, ii, 407 p.
|
2435
|
-
|
2435
|
+
lc_b4cutter_ssim:
|
2436
2436
|
- DS785
|
2437
|
-
|
2437
|
+
title_tsim: Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal
|
2438
2438
|
śel gyi me loṅ źes bya ba bźugs so
|
2439
|
-
|
2439
|
+
subject_addl_ssim:
|
2440
2440
|
- History Miscellanea
|
2441
|
-
|
2442
|
-
- Tibet
|
2443
|
-
|
2441
|
+
subject_tsim:
|
2442
|
+
- Tibet (China)
|
2443
|
+
title_si: bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel
|
2444
2444
|
gyi me loṅ źes bya ba bźugs so
|
2445
2445
|
id: '2008308202'
|
2446
|
-
|
2446
|
+
author_si: Thubbstanyarʼphel Rnamgrwa Bod gaṅs can gyi rgyal rabs mdor bsdus
|
2447
2447
|
dris lan brgya pa rab gsal śel gyi me loṅ źes bya ba bźugs so
|
2448
|
-
|
2448
|
+
title_addl_tsim:
|
2449
2449
|
- Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me
|
2450
2450
|
loṅ źes bya ba bźugs so /
|
2451
2451
|
- Rgyal rabs dris lan brgya pa rab gsal śel gyi me loṅ
|
2452
|
-
|
2453
|
-
- Tibet
|
2454
|
-
|
2452
|
+
subject_geo_ssim:
|
2453
|
+
- Tibet (China)
|
2454
|
+
author_addl_tsim:
|
2455
2455
|
- Rnam-rgyal Grwa-tshaṅ.
|
2456
|
-
|
2456
|
+
lc_alpha_ssim:
|
2457
2457
|
- DS
|
2458
|
-
|
2458
|
+
language_ssim:
|
2459
2459
|
- Tibetan
|
2460
2460
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2461
|
-
|
2462
|
-
coordinates:
|
2463
|
-
|
2461
|
+
geojson_ssim:
|
2462
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[91.117212,29.646923]},\"properties\":{\"placename\":\"Tibet\"}}"
|
2463
|
+
coordinates_srpt: 29.646923,91.117212
|
2464
|
+
- marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01127cam
|
2464
2465
|
a22002895a 4500</leader><controlfield tag=\"001\"> 2008308478</controlfield><controlfield
|
2465
2466
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090123131001.0</controlfield><controlfield
|
2466
2467
|
tag=\"008\">080728s2007 ii 000 0 tibo </controlfield><datafield
|
@@ -2494,81 +2495,82 @@
|
|
2494
2495
|
code=\"a\">Teaching</subfield><subfield code=\"x\">Methodology.</subfield></datafield><datafield
|
2495
2496
|
tag=\"710\" ind1=\"2\" ind2=\" \"><subfield code=\"a\">Sa-rā Bod kyi mtho rim
|
2496
2497
|
slob gñer khaṅ.</subfield></datafield></record></collection>"
|
2497
|
-
|
2498
|
+
published_ssim:
|
2498
2499
|
- Dharamsala, Distt. Kangra, H.P.
|
2499
|
-
|
2500
|
+
title_tsim:
|
2500
2501
|
- Śes yon.
|
2501
|
-
|
2502
|
+
pub_date_ssim:
|
2502
2503
|
- '2007'
|
2503
|
-
|
2504
|
+
pub_date_si: 2007
|
2504
2505
|
format: Book
|
2505
|
-
|
2506
|
-
|
2506
|
+
title_tsim: Śes yon
|
2507
|
+
subject_addl_ssim:
|
2507
2508
|
- China Tibet
|
2508
2509
|
- Education India
|
2509
2510
|
- Study and teaching India
|
2510
2511
|
- Methodology
|
2511
|
-
|
2512
|
+
- Education Policy
|
2513
|
+
material_type_ssim:
|
2512
2514
|
- xii, 419 p.
|
2513
|
-
|
2515
|
+
subject_tsim:
|
2514
2516
|
- Education and state
|
2515
2517
|
- Tibetans
|
2516
2518
|
- Tibetan language
|
2517
2519
|
- Teaching
|
2518
|
-
|
2520
|
+
title_si: śes yon
|
2519
2521
|
id: '2008308478'
|
2520
|
-
|
2521
|
-
|
2522
|
+
author_si: "\U0010FFFF Śes yon"
|
2523
|
+
title_addl_tsim:
|
2522
2524
|
- Śes yon.
|
2523
|
-
|
2525
|
+
subject_geo_ssim:
|
2524
2526
|
- China
|
2525
2527
|
- Tibet
|
2526
2528
|
- India
|
2527
|
-
|
2529
|
+
subject_ssim:
|
2528
2530
|
- Education and state
|
2529
2531
|
- Tibetans
|
2530
2532
|
- Tibetan language
|
2531
2533
|
- Teaching
|
2532
|
-
|
2534
|
+
author_addl_tsim:
|
2533
2535
|
- Sa-rā Bod kyi mtho rim slob gñer khaṅ.
|
2534
|
-
|
2536
|
+
language_ssim:
|
2535
2537
|
- Tibetan
|
2536
2538
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2537
|
-
|
2539
|
+
geojson_ssim:
|
2538
2540
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[104.195397,35.86166]},\"properties\":{\"placename\":\"China\"}}"
|
2539
2541
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[91.117212,29.646923]},\"properties\":{\"placename\":\"Tibet\"}}"
|
2540
2542
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[78.96288,20.593684]},\"properties\":{\"placename\":\"India\"}}"
|
2541
|
-
|
2542
|
-
- 104.195397
|
2543
|
-
- 91.117212
|
2544
|
-
- 78.96288
|
2545
|
-
-
|
2546
|
-
|
2543
|
+
coordinates_srpt:
|
2544
|
+
- 35.86166,104.195397
|
2545
|
+
- 29.646923,91.117212
|
2546
|
+
- 20.593684,78.96288
|
2547
|
+
- author_vern_ssim: "吉田一, 1934-"
|
2548
|
+
subject_addl_ssim:
|
2547
2549
|
- 20th century History and criticism
|
2548
2550
|
- History and criticism
|
2549
2551
|
- Japan History
|
2550
|
-
|
2551
|
-
|
2552
|
+
title_tsim: Kubo Sakae 'Kazanbaichi' o yomu
|
2553
|
+
subject_era_ssim:
|
2552
2554
|
- 20th century
|
2553
2555
|
id: '2008543486'
|
2554
|
-
|
2556
|
+
isbn_ssim:
|
2555
2557
|
- '9784588460050'
|
2556
2558
|
- '4588460056'
|
2557
|
-
|
2559
|
+
subject_geo_ssim:
|
2558
2560
|
- Japan
|
2559
|
-
|
2561
|
+
subject_ssim:
|
2560
2562
|
- Kubo, Sakae, 1901-1958
|
2561
2563
|
- Japanese drama
|
2562
2564
|
- Political plays, Japanese
|
2563
2565
|
- Theater
|
2564
|
-
|
2566
|
+
lc_alpha_ssim:
|
2565
2567
|
- PL
|
2566
|
-
|
2568
|
+
author_tsim:
|
2567
2569
|
- Yoshida, Hajime,
|
2568
2570
|
- "吉田一"
|
2569
|
-
|
2571
|
+
lc_1letter_ssim:
|
2570
2572
|
- P - Language & Literature
|
2571
|
-
|
2573
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01230nam
|
2572
2574
|
a22003494a 4500</leader><controlfield tag=\"001\"> 2008543486</controlfield><controlfield
|
2573
2575
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090126101044.0</controlfield><controlfield
|
2574
2576
|
tag=\"008\">081217s1997 ja 000 0 jpn d</controlfield><datafield
|
@@ -2614,71 +2616,72 @@
|
|
2614
2616
|
tag=\"880\" ind1=\"1\" ind2=\"0\"><subfield code=\"6\">600-05/$1</subfield><subfield
|
2615
2617
|
code=\"a\">久保栄,</subfield><subfield code=\"d\">1901-1958.</subfield><subfield
|
2616
2618
|
code=\"t\">Kazanbaichi.</subfield></datafield></record></collection>"
|
2617
|
-
|
2619
|
+
published_ssim:
|
2618
2620
|
- Tōkyō
|
2619
|
-
|
2620
|
-
|
2621
|
-
|
2621
|
+
author_tsim: Yoshida, Hajime, 1934-
|
2622
|
+
title_vern_ssim: "久保栄「火山灰地」を読む"
|
2623
|
+
lc_callnum_ssim:
|
2622
2624
|
- PL832.U25 Z96 1997
|
2623
|
-
|
2625
|
+
title_tsim:
|
2624
2626
|
- Kubo Sakae 'Kazanbaichi' o yomu /
|
2625
2627
|
- "久保栄「火山灰地」を読む"
|
2626
|
-
|
2628
|
+
pub_date_ssim:
|
2627
2629
|
- '1997'
|
2628
|
-
|
2629
|
-
|
2630
|
+
pub_date_si: 1997
|
2631
|
+
published_vern_ssim:
|
2630
2632
|
- "東京"
|
2631
2633
|
format: Book
|
2632
|
-
|
2634
|
+
lc_b4cutter_ssim:
|
2633
2635
|
- PL832.U25
|
2634
|
-
|
2636
|
+
material_type_ssim:
|
2635
2637
|
- 480 p.
|
2636
|
-
|
2638
|
+
subject_tsim:
|
2637
2639
|
- Kubo, Sakae, 1901-1958. Kazanbaichi
|
2638
2640
|
- Japanese drama
|
2639
2641
|
- Political plays, Japanese
|
2640
2642
|
- Theater
|
2641
2643
|
- "久保栄, 1901-1958. Kazanbaichi"
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2644
|
+
title_si: kubo sakae 'kazanbaichi' o yomu
|
2645
|
+
author_si: Yoshida Hajime 1934 Kubo Sakae Kazanbaichi o yomu
|
2646
|
+
title_addl_tsim:
|
2645
2647
|
- Kubo Sakae 'Kazanbaichi' o yomu /
|
2646
2648
|
- "久保栄「火山灰地」を読む"
|
2647
|
-
|
2649
|
+
language_ssim:
|
2648
2650
|
- Japanese
|
2649
2651
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2650
|
-
|
2651
|
-
coordinates:
|
2652
|
-
|
2653
|
-
|
2652
|
+
geojson_ssim:
|
2653
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[138.252924,36.204824]},\"properties\":{\"placename\":\"Japan\"}}"
|
2654
|
+
coordinates_srpt: 36.204824,138.252924
|
2655
|
+
- author_vern_ssim: "林行止"
|
2656
|
+
subject_addl_ssim:
|
2654
2657
|
- 1990-
|
2655
2658
|
- 2005-2015
|
2656
2659
|
- Economic conditions 1997-
|
2657
2660
|
- Politics and government 1997-
|
2658
|
-
|
2659
|
-
|
2661
|
+
title_tsim: Ci an zhou bian
|
2662
|
+
subject_era_ssim:
|
2660
2663
|
- 1990-
|
2661
2664
|
- 2005-2015
|
2662
2665
|
- 1997-
|
2663
2666
|
id: '2009373513'
|
2664
|
-
|
2667
|
+
isbn_ssim:
|
2665
2668
|
- '9789573908678'
|
2666
2669
|
- '9573908670'
|
2667
|
-
|
2670
|
+
subject_geo_ssim:
|
2668
2671
|
- Economic history
|
2669
2672
|
- World politics
|
2670
2673
|
- Hong Kong (China)
|
2671
|
-
|
2674
|
+
lc_alpha_ssim:
|
2672
2675
|
- HC
|
2673
|
-
|
2676
|
+
title_series_tsim:
|
2674
2677
|
- Lin Xingzhi zuo pin ji ; 51
|
2675
2678
|
- "林行止作品集 ; 51"
|
2676
|
-
|
2679
|
+
author_tsim:
|
2677
2680
|
- Lin, Xingzhi.
|
2678
2681
|
- "林行止"
|
2679
|
-
|
2682
|
+
lc_1letter_ssim:
|
2680
2683
|
- H - Social Sciences
|
2681
|
-
|
2684
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01213nam
|
2682
2685
|
a22003614a 4500</leader><controlfield tag=\"001\"> 2009373513</controlfield><controlfield
|
2683
2686
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121153231.0</controlfield><controlfield
|
2684
2687
|
tag=\"008\">090114s2008 ch 000 0 chi d</controlfield><datafield
|
@@ -2722,70 +2725,70 @@
|
|
2722
2725
|
code=\"c\">2008.</subfield></datafield><datafield tag=\"880\" ind1=\"0\" ind2=\"
|
2723
2726
|
\"><subfield code=\"6\">490-05/$1</subfield><subfield code=\"a\">林行止作品集 ;</subfield><subfield
|
2724
2727
|
code=\"v\">51</subfield></datafield></record></collection>"
|
2725
|
-
|
2728
|
+
published_ssim:
|
2726
2729
|
- Taibei Xian Banqiao Shi
|
2727
|
-
|
2728
|
-
|
2729
|
-
|
2730
|
+
author_tsim: Lin, Xingzhi
|
2731
|
+
title_vern_ssim: "次按驟變"
|
2732
|
+
lc_callnum_ssim:
|
2730
2733
|
- HC59.15 .L533 2008
|
2731
|
-
|
2734
|
+
title_tsim:
|
2732
2735
|
- Ci an zhou bian /
|
2733
2736
|
- "次按驟變"
|
2734
|
-
|
2737
|
+
pub_date_ssim:
|
2735
2738
|
- '2008'
|
2736
|
-
|
2737
|
-
|
2739
|
+
pub_date_si: 2008
|
2740
|
+
published_vern_ssim:
|
2738
2741
|
- "臺北縣板橋市"
|
2739
2742
|
format: Book
|
2740
|
-
|
2743
|
+
lc_b4cutter_ssim:
|
2741
2744
|
- HC59.15
|
2742
|
-
|
2745
|
+
material_type_ssim:
|
2743
2746
|
- 5, 300 p.
|
2744
|
-
|
2747
|
+
subject_tsim:
|
2745
2748
|
- Economic history
|
2746
2749
|
- World politics
|
2747
2750
|
- Hong Kong (China)
|
2748
|
-
|
2749
|
-
|
2750
|
-
|
2751
|
+
title_si: ci an zhou bian
|
2752
|
+
author_si: Lin Xingzhi Ci an zhou bian
|
2753
|
+
title_addl_tsim:
|
2751
2754
|
- Ci an zhou bian /
|
2752
2755
|
- "次按驟變"
|
2753
|
-
|
2756
|
+
language_ssim:
|
2754
2757
|
- Chinese
|
2755
2758
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2756
|
-
|
2759
|
+
geojson_ssim:
|
2757
2760
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[114.109497,22.396428]},\"properties\":{\"placename\":\"Hong Kong (China)\"}}"
|
2758
2761
|
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[113.835078, 22.1533884], [114.4069561, 22.1533884], [114.4069561, 22.561968], [113.835078, 22.561968], [113.835078, 22.1533884]]]},\"bbox\":[113.835078, 22.1533884, 114.4069561, 22.561968]}"
|
2759
|
-
|
2760
|
-
- 113.835078
|
2761
|
-
- 114.109497
|
2762
|
-
-
|
2763
|
-
|
2764
|
-
|
2765
|
-
|
2766
|
-
|
2767
|
-
|
2768
|
-
|
2769
|
-
|
2770
|
-
|
2771
|
-
|
2762
|
+
coordinates_srpt:
|
2763
|
+
- ENVELOPE(113.835078, 114.4069561, 22.561968, 22.1533884)
|
2764
|
+
- 22.396428,114.109497
|
2765
|
+
- subject_addl_ssim:
|
2766
|
+
- 1990-
|
2767
|
+
- 2005-2015
|
2768
|
+
- Economic conditions 1997-
|
2769
|
+
- Politics and government 1997-
|
2770
|
+
title_tsim: Test item with bounding box only
|
2771
|
+
subject_era_ssim:
|
2772
|
+
- 1990-
|
2773
|
+
- 2005-2015
|
2774
|
+
- 1997-
|
2772
2775
|
id: '2009373514'
|
2773
|
-
|
2774
|
-
|
2775
|
-
|
2776
|
-
|
2777
|
-
|
2778
|
-
|
2779
|
-
|
2780
|
-
|
2781
|
-
|
2782
|
-
|
2783
|
-
|
2784
|
-
|
2785
|
-
|
2786
|
-
|
2787
|
-
|
2788
|
-
|
2776
|
+
isbn_ssim:
|
2777
|
+
- '9789573908678'
|
2778
|
+
- '9573908670'
|
2779
|
+
subject_geo_ssim:
|
2780
|
+
- Economic history
|
2781
|
+
- World politics
|
2782
|
+
- Hong Kong (China)
|
2783
|
+
lc_alpha_ssim:
|
2784
|
+
- HC
|
2785
|
+
title_series_tsim:
|
2786
|
+
- Lin Xingzhi zuo pin ji ; 51
|
2787
|
+
author_tsim:
|
2788
|
+
- Lin, Xingzhi.
|
2789
|
+
lc_1letter_ssim:
|
2790
|
+
- H - Social Sciences
|
2791
|
+
marc_ss: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><collection xmlns=\"http://www.loc.gov/MARC21/slim\"><record><leader>01213nam
|
2789
2792
|
a22003614a 4500</leader><controlfield tag=\"001\"> 2009373513</controlfield><controlfield
|
2790
2793
|
tag=\"003\">DLC</controlfield><controlfield tag=\"005\">20090121153231.0</controlfield><controlfield
|
2791
2794
|
tag=\"008\">090114s2008 ch 000 0 chi d</controlfield><datafield
|
@@ -2829,33 +2832,33 @@
|
|
2829
2832
|
code=\"c\">2008.</subfield></datafield><datafield tag=\"880\" ind1=\"0\" ind2=\"
|
2830
2833
|
\"><subfield code=\"6\">490-05/$1</subfield><subfield code=\"a\">林行止作品集 ;</subfield><subfield
|
2831
2834
|
code=\"v\">51</subfield></datafield></record></collection>"
|
2832
|
-
|
2833
|
-
|
2834
|
-
|
2835
|
-
|
2836
|
-
|
2837
|
-
|
2838
|
-
|
2839
|
-
|
2840
|
-
|
2841
|
-
|
2835
|
+
published_ssim:
|
2836
|
+
- Taibei Xian Banqiao Shi
|
2837
|
+
author_tsim: Lin, Xingzhi
|
2838
|
+
lc_callnum_ssim:
|
2839
|
+
- HC59.15 .L533 2008
|
2840
|
+
title_tsim:
|
2841
|
+
- Test item with bounding box only /
|
2842
|
+
pub_date_ssim:
|
2843
|
+
- '2008'
|
2844
|
+
pub_date_si: 2008
|
2842
2845
|
format: Book
|
2843
|
-
|
2844
|
-
|
2845
|
-
|
2846
|
-
|
2847
|
-
|
2848
|
-
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2853
|
-
|
2854
|
-
|
2855
|
-
|
2856
|
-
|
2846
|
+
lc_b4cutter_ssim:
|
2847
|
+
- HC59.15
|
2848
|
+
material_type_ssim:
|
2849
|
+
- 5, 300 p.
|
2850
|
+
subject_tsim:
|
2851
|
+
- Economic history
|
2852
|
+
- World politics
|
2853
|
+
- Hong Kong (China)
|
2854
|
+
title_si: test item with bounding box only
|
2855
|
+
author_si: Lin Xingzhi Ci an zhou bian
|
2856
|
+
title_addl_tsim:
|
2857
|
+
- Ci an zhou bian /
|
2858
|
+
language_ssim:
|
2859
|
+
- Chinese
|
2857
2860
|
timestamp: '2014-02-03T18:42:53.056Z'
|
2858
|
-
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2861
|
+
geojson_ssim:
|
2862
|
+
- "{\"type\":\"Feature\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[115.1, 20.1], [118.1, 20.1], [118.1, 21.1], [115.1, 21.1], [115.1, 20.1]]]},\"bbox\":[115.1, 20.1, 118.1, 21.1]}"
|
2863
|
+
coordinates_srpt:
|
2864
|
+
- ENVELOPE(115.1, 118.1, 21.1, 20.1)
|