From 0352aa77dbdc3e78177470f5762ffd2c3ecfeee7 Mon Sep 17 00:00:00 2001 From: Chris Colvard Date: Thu, 24 Jun 2021 16:17:32 -0400 Subject: [PATCH 1/3] Set DATABASE_URL so app actually uses postgres --- docker-compose.yml | 4 +++- spec/internal_test_hyrax | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ae0bb64..217e390 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -69,7 +69,9 @@ services: DATABASE_PASSWORD: DatabaseFTW DATABASE_USER: postgres DATABASE_TEST_NAME: hyrax_test - # End of copy + DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL: 'true' + DATABASE_TEST_URL: postgresql://postgres:DatabaseFTW@db/hyrax_test?pool=5 + DATABASE_URL: postgresql://postgres:DatabaseFTW@db/hyrax?pool=5 FCREPO_HOST: fcrepo FCREPO_PORT: 8080 FCREPO_REST_PATH: fcrepo/rest diff --git a/spec/internal_test_hyrax b/spec/internal_test_hyrax index 7b700db..99b7dc3 160000 --- a/spec/internal_test_hyrax +++ b/spec/internal_test_hyrax @@ -1 +1 @@ -Subproject commit 7b700db96df80317e833ed93c784d68fc95de629 +Subproject commit 99b7dc3078b1d627ddf5ef87ecb54662d361cec0 From 443a3b651c437cfd63d4122ec347607d0bceff76 Mon Sep 17 00:00:00 2001 From: Chris Colvard Date: Thu, 24 Jun 2021 17:17:13 -0400 Subject: [PATCH 2/3] Use upstream .dassie for Hyrax testing app and docker setup --- .env | 31 + Dockerfile | 110 +- Gemfile | 29 +- Gemfile.dassie | 58 + Gemfile.lock | 136 +- docker-compose.yml | 258 +-- solr/conf/_rest_managed.json | 3 + solr/conf/mapping-ISOLatin1Accent.txt | 246 +++ solr/conf/schema.xml | 367 ++++ solr/conf/scripts.conf | 24 + solr/conf/solrconfig.xml | 208 ++ solr/conf/stopwords.txt | 58 + solr/conf/stopwords_en.txt | 58 + solr/conf/xslt/example.xsl | 132 ++ solr/conf/xslt/example_atom.xsl | 67 + solr/conf/xslt/example_rss.xsl | 66 + solr/conf/xslt/luke.xsl | 337 ++++ solr/sample_solr_documents.yml | 2692 +++++++++++++++++++++++++ 18 files changed, 4545 insertions(+), 335 deletions(-) create mode 100644 .env create mode 100644 Gemfile.dassie create mode 100644 solr/conf/_rest_managed.json create mode 100644 solr/conf/mapping-ISOLatin1Accent.txt create mode 100644 solr/conf/schema.xml create mode 100644 solr/conf/scripts.conf create mode 100644 solr/conf/solrconfig.xml create mode 100644 solr/conf/stopwords.txt create mode 100644 solr/conf/stopwords_en.txt create mode 100644 solr/conf/xslt/example.xsl create mode 100644 solr/conf/xslt/example_atom.xsl create mode 100644 solr/conf/xslt/example_rss.xsl create mode 100644 solr/conf/xslt/luke.xsl create mode 100644 solr/sample_solr_documents.yml diff --git a/.env b/.env new file mode 100644 index 0000000..224c5de --- /dev/null +++ b/.env @@ -0,0 +1,31 @@ +CAPYBARA_SERVER=http://app:3010 +CHROME_HEADLESS_MODE=false +DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL=true +DATABASE_TEST_URL=postgresql://hyrax_user:hyrax_password@postgres/hyrax_test?pool=5 +DATABASE_URL=postgresql://hyrax_user:hyrax_password@postgres/hyrax?pool=5 +DB_PORT=5432 +DB_HOST=postgres +FCREPO_PORT=8080 +FCREPO_HOST=fcrepo +FCREPO_REST_PATH=rest +FCREPO_TEST_BASE_PATH=/test +HUB_URL=http://chrome:4444/wd/hub +HYRAX_DERIVATIVES_PATH=/app/samvera/hyrax-webapp/derivatives/ +HYRAX_ENGINE_PATH=/app/samvera/hyrax-engine +HYRAX_UPLOAD_PATH=/app/samvera/hyrax-webapp/uploads/ +IN_DOCKER=true +RACK_ENV=development +RAILS_ENV=development +RAILS_ROOT=.dassie +REDIS_HOST=redis +SOLR_PORT=8983 +SOLR_HOST=solr +SOLR_TEST_URL=http://solr:8983/solr/hyrax_test +SOLR_URL=http://solr:8983/solr/hyrax + +#### From .dassie/.env +MEMCACHED_HOST=memcached +HYRAX_ANALYTICS=1 +REDIS_PROVIDER=SIDEKIQ_REDIS_URL +SIDEKIQ_REDIS_URL=redis://redis:6379/0 + diff --git a/Dockerfile b/Dockerfile index f1e632e..7027e20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,101 +1,31 @@ -# Ripped off from Avalon -# Base stage for building gems -FROM ruby:2.7.2-buster as bundle -RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list \ - && apt-get update \ - && rm -rf /var/lib/apt/lists/* \ - && apt-get clean +ARG HYRAX_IMAGE_VERSION=latest +FROM ghcr.io/samvera/dassie:$HYRAX_IMAGE_VERSION as hyrax-orcid-dev -COPY lib/hyrax/orcid/version.rb ./lib/hyrax/orcid/version.rb -COPY hyrax-orcid.gemspec ./hyrax-orcid.gemspec -COPY Gemfile ./Gemfile -COPY Gemfile.lock ./Gemfile.lock -COPY spec/internal_test_hyrax/Gemfile ./spec/internal_test_hyrax/Gemfile -COPY spec/internal_test_hyrax/Gemfile.lock ./spec/internal_test_hyrax/Gemfile.lock +#ARG APP_PATH=.dassie +ARG BUNDLE_WITHOUT= -RUN gem install bundler -v "$(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -n 1)" \ - && bundle config build.nokogiri --use-system-libraries +ENV HYRAX_ENGINE_PATH /app/samvera/hyrax-engine +#COPY --chown=1001:101 $APP_PATH /app/samvera/hyrax-webapp +COPY --chown=1001:101 ./Gemfile.dassie /app/samvera/hyrax-webapp/Gemfile +COPY --chown=1001:101 . /app/samvera/hyrax-engine -# Build development gems -FROM bundle as bundle-dev -RUN bundle config set without 'production' -RUN bundle config set with 'aws development test postgres' -ENV CFLAGS=-Wno-error=format-overflow -RUN bundle install --jobs=4 --retry=3 +RUN cd /app/samvera/hyrax-engine && bundle install --jobs "$(nproc)" +RUN cd /app/samvera/hyrax-webapp && bundle install --jobs "$(nproc)" +#RUN cd /app/samvera/hyrax-webapp && RAILS_ENV=production SECRET_KEY_BASE='fakesecret1234' DB_ADAPTER=nulldb DATABASE_URL='postgresql://fake' bundle exec rake assets:precompile -# Base stage for building final images -FROM ruby:2.7.1-slim-buster as base +FROM ghcr.io/samvera/dassie-worker:$HYRAX_IMAGE_VERSION as hyrax-orcid-dev-worker -RUN apt-get update && apt-get install -y --no-install-recommends curl gnupg2 \ - && curl -sL http://deb.nodesource.com/setup_8.x | bash - -RUN apt-get update && apt-get install -y --no-install-recommends --allow-unauthenticated \ - nodejs \ - sendmail \ - git \ - libxml2-dev \ - libxslt-dev \ - openssh-client \ - zip \ - dumb-init \ - default-jre \ - # Below copied from hyku's Dockerfile - build-essential \ - ghostscript \ - imagemagick \ - libpq-dev \ - libreoffice \ - libsasl2-dev \ - netcat \ - postgresql-client \ - rsync \ - tzdata \ - unzip \ - && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +#ARG APP_PATH=.dassie +ARG BUNDLE_WITHOUT= -# If changes are made to fits version or location, -# amend `LD_LIBRARY_PATH` in docker-compose.yml accordingly. -RUN mkdir -p /opt/fits && \ - curl -fSL -o /opt/fits/fits-latest.zip https://projects.iq.harvard.edu/files/fits/files/fits-1.3.0.zip && \ - cd /opt/fits && unzip fits-latest.zip && chmod +X /opt/fits/fits.sh +ENV HYRAX_ENGINE_PATH /app/samvera/hyrax-engine -RUN useradd -m -U app \ - && su -s /bin/bash -c "mkdir -p /home/app" app -WORKDIR /home/app +#COPY --chown=1001:101 $APP_PATH /app/samvera/hyrax-webapp +COPY --chown=1001:101 ./Gemfile.dassie /app/samvera/hyrax-webapp/Gemfile +COPY --chown=1001:101 . /app/samvera/hyrax-engine +RUN cd /app/samvera/hyrax-webapp && bundle install --jobs "$(nproc)" +RUN cd /app/samvera/hyrax-engine && bundle install --jobs "$(nproc)" -# Build devevelopment image -FROM base as dev - -COPY --from=bundle-dev /usr/local/bundle /usr/local/bundle - -ARG RAILS_ENV=development -RUN dpkg -i /chrome.deb || apt-get install -yf - - -# Build production gems -FROM bundle as bundle-prod -RUN bundle install --jobs=4 --retry=3 --without development test --with aws production postgres - - -# Build production assets -FROM base as assets -COPY --from=bundle-prod --chown=app:app /usr/local/bundle /usr/local/bundle -COPY --chown=app:app . . - -USER app -ENV RAILS_ENV=production - -RUN SECRET_KEY_BASE=$(ruby -r 'securerandom' -e 'puts SecureRandom.hex(64)') bundle exec rake assets:precompile - - -# Build production image -FROM base as prod -COPY --from=assets --chown=app:app /home/app /home/app -COPY --from=bundle-prod --chown=app:app /usr/local/bundle /usr/local/bundle - -USER app -ENV RAILS_ENV=production diff --git a/Gemfile b/Gemfile index 62e3395..59b2d82 100644 --- a/Gemfile +++ b/Gemfile @@ -1,19 +1,12 @@ # frozen_string_literal: true - -source 'https://rubygems.org' -git_source(:github) { |repo| "https://github.com/#{repo}.git" } - -# Declare your gem's dependencies in hyrax-orcid.gemspec. -# Bundler will treat runtime dependencies like base dependencies, and -# development dependencies will be added by default to the :development group. -gemspec - -# Declare any dependencies that are still in development here instead of in -# your gemspec. These might include edge Rails or gems from your path or -# Git. Remember to move these dependencies to your gemspec before releasing -# your gem to rubygems.org. - -# To use a debugger -# gem 'byebug', group: [:development, :test] - -eval_gemfile File.expand_path('spec/internal_test_hyrax/Gemfile', File.dirname(__FILE__)) +source 'https://rubygems.org' do + # Please see hyrax-orcid.gemspec for dependency information. + gemspec name: 'hyrax-orcid' + + group :development, :test do + gem 'pry' unless ENV['CI'] + gem 'pry-byebug' unless ENV['CI'] + gem 'ruby-prof', require: false + gem "simplecov", require: false + end +end diff --git a/Gemfile.dassie b/Gemfile.dassie new file mode 100644 index 0000000..2d0072a --- /dev/null +++ b/Gemfile.dassie @@ -0,0 +1,58 @@ +source 'https://rubygems.org' +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby '2.7.2' + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.2.4', '>= 5.2.4.4' +# Use postgresql as the database for Active Record +gem 'pg', '>= 0.18', '< 2.0' +# Use Puma as the app server +gem 'puma', '~> 4.3.8' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' + +gem 'dalli' # mem_cache_store support + +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.2' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' + +# Reduces boot times through caching; required in config/boot.rb +gem 'bootsnap', '>= 1.1.0', require: false + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] +end + +group :development do + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '>= 3.0.5', '< 3.2' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] + +begin # this is a hack to allow `eval_gemfile` to work correctly + gem 'hyrax' + gem 'hyrax-orcid', path: ENV.fetch('HYRAX_ENGINE_PATH', '..') +rescue; end + +gem 'rsolr', '>= 1.0', '< 3' +gem 'bootstrap-sass', '~> 3.0' +gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript' +gem 'jquery-rails' +gem 'devise' +gem 'devise-guests', '~> 0.6' +gem 'riiif', '~> 2.1' +gem 'sidekiq', '~> 6.0' diff --git a/Gemfile.lock b/Gemfile.lock index d84bc9c..e13fa7a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -115,7 +115,6 @@ GEM execjs (~> 2.0) bcp47 (0.3.3) i18n - bcrypt (3.1.16) benchmark_methods (0.7) bibtex-ruby (6.0.0) latex-decode (~> 0.0) @@ -169,8 +168,6 @@ GEM rdf-rdfxml (~> 3.1) rdf-turtle (~> 3.1) thor (>= 0.19) - bootsnap (1.7.5) - msgpack (~> 1.0) bootstrap-sass (3.4.1) autoprefixer-rails (>= 5.2.1) sassc (>= 2.0.0) @@ -212,13 +209,7 @@ GEM citeproc (~> 1.0, >= 1.0.9) csl (~> 1.5) clipboard-rails (1.7.1) - coffee-rails (4.2.2) - coffee-script (>= 2.2.0) - railties (>= 4.0.0) - coffee-script (2.4.1) - coffee-script-source - execjs - coffee-script-source (1.12.2) + coderay (1.1.3) colorize (0.8.1) concurrent-ruby (1.1.9) connection_pool (2.2.5) @@ -232,18 +223,8 @@ GEM declarative (0.0.20) deprecation (1.1.0) activesupport - devise (4.8.0) - bcrypt (~> 3.0) - orm_adapter (~> 0.1) - railties (>= 4.1.0) - responders - warden (~> 1.2.3) - devise-guests (0.7.0) - devise diff-lcs (1.4.4) docile (1.4.0) - domain_name (0.5.20190701) - unf (>= 0.0.5, < 1.0.0) draper (4.0.2) actionpack (>= 5.0) activemodel (>= 5.0) @@ -333,12 +314,7 @@ GEM faraday faraday_middleware (0.14.0) faraday (>= 0.7.4, < 1.0) - fcrepo_wrapper (0.9.0) - ruby-progressbar ffi (1.15.3) - ffi-compiler (1.0.1) - ffi (>= 1.0.0) - rake flipflop (2.6.0) activesupport (>= 4.0) flot-rails (0.0.7) @@ -396,14 +372,6 @@ GEM hashdiff (1.0.1) hiredis (0.6.3) htmlentities (4.3.4) - http (5.0.0) - addressable (~> 2.3) - http-cookie (~> 1.0) - http-form_data (~> 2.2) - llhttp-ffi (~> 0.0.1) - http-cookie (1.0.4) - domain_name (~> 0.5) - http-form_data (2.3.0) http_logger (0.6.0) httpclient (2.8.3) hydra-access-controls (11.0.7) @@ -501,8 +469,6 @@ GEM i18n (1.8.10) concurrent-ruby (~> 1.0) ice_nine (0.11.2) - iiif-image-api (0.2.0) - activesupport iiif_manifest (0.5.0) activesupport (>= 4) io-like (0.3.1) @@ -603,13 +569,6 @@ GEM shex (~> 0.6) sparql (~> 3.1) sparql-client (~> 3.1) - listen (3.1.5) - rb-fsevent (~> 0.9, >= 0.9.4) - rb-inotify (~> 0.9, >= 0.9.7) - ruby_dep (~> 1.2) - llhttp-ffi (0.0.1) - ffi-compiler (~> 1.0) - rake (~> 13.0) loofah (2.10.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) @@ -639,7 +598,6 @@ GEM mini_mime (1.1.0) mini_portile2 (2.5.3) minitest (5.14.4) - msgpack (1.4.2) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.1.1) @@ -670,7 +628,6 @@ GEM openseadragon (0.6.0) rails (> 3.2.0) optimist (3.0.1) - orm_adapter (0.5.0) os (1.1.1) parallel (1.20.1) parser (3.0.1.1) @@ -683,9 +640,14 @@ GEM nokogiri (>= 1.8.0) public_suffix (>= 2.0.0, < 2.1) power_converter (0.1.2) + pry (0.14.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-byebug (3.8.0) + byebug (~> 11.0) + pry (~> 0.10) public_suffix (2.0.5) pul_uv_rails (2.0.1) - puma (3.12.6) qa (5.6.0) activerecord-import deprecation @@ -801,15 +763,8 @@ GEM uber (< 0.2.0) request_store (1.5.0) rack (>= 1.4) - responders (3.0.1) - actionpack (>= 5.0) - railties (>= 5.0) retriable (3.1.2) rexml (3.2.5) - riiif (2.3.0) - deprecation (>= 1.0.0) - iiif-image-api (>= 0.1.0) - railties (>= 4.2, < 7) rsolr (2.3.0) builder (>= 2.1.2) faraday (>= 0.9.0) @@ -856,9 +811,9 @@ GEM json multipart-post oauth2 + ruby-prof (1.4.3) ruby-progressbar (1.11.0) ruby2_keywords (0.0.4) - ruby_dep (1.5.0) rubyzip (2.3.0) samvera-nesting_indexer (2.0.0) dry-equalizer @@ -904,11 +859,6 @@ GEM simplecov-html (~> 0.10.0) simplecov-html (0.10.2) slop (4.9.1) - solr_wrapper (3.1.2) - http - retriable - ruby-progressbar - rubyzip solrizer (4.1.0) activesupport nokogiri @@ -924,10 +874,6 @@ GEM sparql-client (3.1.2) net-http-persistent (~> 4.0, >= 4.0.1) rdf (~> 3.1) - spring (2.1.1) - spring-watcher-listen (2.0.1) - listen (>= 2.7, < 4.0) - spring (>= 1.2, < 3.0) sprockets (3.7.2) concurrent-ruby (~> 1.0) rack (> 1, < 3) @@ -939,7 +885,6 @@ GEM actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) - sqlite3 (1.3.13) ssrf_filter (1.0.7) sxp (1.1.0) rdf (~> 3.1) @@ -950,9 +895,6 @@ GEM tinymce-rails (4.9.11) railties (>= 3.1.1) trailblazer-option (0.1.1) - turbolinks (5.2.1) - turbolinks-source (~> 5.2) - turbolinks-source (5.2.0) twitter-typeahead-rails (0.11.1.pre.corejavascript) actionpack (>= 3.1) jquery-rails @@ -962,16 +904,9 @@ GEM tzinfo (1.2.9) thread_safe (~> 0.1) uber (0.1.0) - uglifier (4.2.0) - execjs (>= 0.3.0, < 3) - unf (0.1.4) - unf_ext - unf_ext (0.0.7.7) unicode-display_width (1.7.0) unicode-types (1.6.0) unicode_utils (1.4.0) - warden (1.2.9) - rack (>= 2.0.9) webdrivers (4.6.0) nokogiri (~> 1.6) rubyzip (>= 1.3.0) @@ -992,45 +927,24 @@ PLATFORMS ruby DEPENDENCIES - ammeter - bixby - bootsnap (>= 1.1.0) - bootstrap-sass (~> 3.0) - byebug - capybara (>= 2.15) - chromedriver-helper (~> 2.1) - coffee-rails (~> 4.2) - devise - devise-guests (~> 0.6) - factory_bot_rails - fcrepo_wrapper - flipflop - hyrax (~> 2.9) + ammeter! + bixby! + byebug! + capybara! + chromedriver-helper (~> 2.1)! + factory_bot_rails! + flipflop! hyrax-orcid! - jbuilder (~> 2.5) - jquery-rails - listen (>= 3.0.5, < 3.2) - pg - puma (~> 3.11) - rails (~> 5.2.4, >= 5.2.4.3) - riiif (~> 2.0) - rsolr (>= 1.0, < 3) - rspec-rails - rspec_junit_formatter - sass-rails (~> 5.0) - selenium-webdriver - shoulda-matchers - simplecov (= 0.17.1, < 0.18) - solr_wrapper (>= 0.3) - spring - spring-watcher-listen (~> 2.0.0) - sqlite3 (~> 1.3.0) - turbolinks (~> 5) - twitter-typeahead-rails (= 0.11.1.pre.corejavascript) - tzinfo-data - uglifier (>= 1.3.0) - webdrivers (~> 4.0) - webmock + pg! + pry! + pry-byebug! + rspec-rails! + rspec_junit_formatter! + ruby-prof! + shoulda-matchers! + simplecov! + webdrivers (~> 4.0)! + webmock! BUNDLED WITH 2.1.4 diff --git a/docker-compose.yml b/docker-compose.yml index 217e390..c6fef9c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,140 +1,166 @@ -version: '3.4' - -volumes: - fcrepo: - solr: - db: - redis: - app: - assets: - cache: - -networks: - internal: +version: '3.7' services: - solr: &solr - # Any greater version of solr fails due to a change in supported data types in schema.xml - image: solr:8.6.2 - volumes: - - ./spec/internal_test_hyrax/solr/config:/opt/solr/server/configsets/hyrax_conf - - solr:/var/solr/data:cached - command: - - sh - - "-c" - - "precreate-core hyrax-test /opt/solr/server/configsets/hyrax_conf; solr-precreate hyrax-development /opt/solr/server/configsets/hyrax_conf" - ports: - - "8983:8983" - networks: - internal: - - fcrepo: &fcrepo - image: cbeer/fcrepo4:4.7 + app: &app + build: + context: . + target: hyrax-orcid-dev + # args: + # - EXTRA_APK_PACKAGES=git less + #image: ghcr.io/samvera/dassie + stdin_open: true + tty: true + user: root + env_file: + - .env + #- .dassie/.env + environment: + - RAILS_ROOT=/app/samvera/hyrax-webapp + - HYRAX_ENGINE_ + depends_on: + - chrome + - db_migrate + - fcrepo + - memcached + - postgres + - redis + - solr ports: - - "8080:8080" + - 3000:3000 volumes: - - fcrepo:/data - environment: - JAVA_OPTS: '${JAVA_OPTS} -Dfcrepo.modeshape.configuration="classpath:/config/file-simple/repository.json" -Dfcrepo.object.directory="/data/objects" -Dfcrepo.binary.directory="/data/binaries"' + #- .dassie:/app/samvera/hyrax-webapp:cached + - .:/app/samvera/hyrax-engine:cached + - hyrax-derivatives:/app/samvera/hyrax-webapp/derivatives + - hyrax-uploads:/app/samvera/hyrax-webapp/uploads + - rails-public:/app/samvera/hyrax-webapp/public + - rails-tmp:/app/samvera/hyrax-webapp/tmp networks: - internal: + - hyrax - db: &db - image: postgres:10-alpine - environment: &db_environment - PGDATA: /data - POSTGRES_PASSWORD: DatabaseFTW - POSTGRES_USER: postgres - POSTGRES_MULTIPLE_DATABASES: hyrax,hyrax_test + chrome: + image: selenium/standalone-chrome:3.141 + logging: + driver: none volumes: - - ./.docker-postgres:/docker-entrypoint-initdb.d - - db:/data + - /dev/shm:/dev/shm + shm_size: 2G ports: - - "5432:5432" + - "4444:4444" + - "5959:5900" networks: - internal: + - hyrax - app: &app + db_migrate: build: context: . - dockerfile: Dockerfile - target: dev - image: hyrax-orcid/dev:latest - command: bash -c "rm -f spec/internal_test_hyrax/tmp/pids/server.pid && bundle exec rails server -b 0.0.0.0" - environment: &web_environment - CHROME_HOSTNAME: chrome - DATABASE_ADAPTER: postgresql - DATABASE_NAME: hyrax - DATABASE_HOST: db - DATABASE_PASSWORD: DatabaseFTW - DATABASE_USER: postgres - DATABASE_TEST_NAME: hyrax_test - DATABASE_CLEANER_ALLOW_REMOTE_DATABASE_URL: 'true' - DATABASE_TEST_URL: postgresql://postgres:DatabaseFTW@db/hyrax_test?pool=5 - DATABASE_URL: postgresql://postgres:DatabaseFTW@db/hyrax?pool=5 - FCREPO_HOST: fcrepo - FCREPO_PORT: 8080 - FCREPO_REST_PATH: fcrepo/rest - FCREPO_DEV_BASE_PATH: /dev - FCREPO_TEST_BASE_PATH: /test - IN_DOCKER: "true" - LD_LIBRARY_PATH: /opt/fits/tools/mediainfo/linux - RAILS_LOG_TO_STDOUT: "true" - REDIS_HOST: redis - SECRET_KEY_BASE: asdf - SOLR_DEVELOPMENT_URL: http://solr:8983/solr/hyrax-development - SOLR_TEST_URL: http://solr:8983/solr/hyrax-development - PASSENGER_APP_ENV: development + target: hyrax-orcid-dev + #image: ghcr.io/samvera/dassie + user: root + env_file: + - .env + entrypoint: ["sh", "-c"] + command: db-migrate-seed.sh + depends_on: + - postgres volumes: - - app:/home/app/spec/internal_test_hyrax/tmp/uploads - - assets:/home/app/spec/internal_test_hyrax/public/assets - - cache:/home/app/spec/internal_test_hyrax/tmp/cache - - .:/home/app + #- .dassie:/app/samvera/hyrax-webapp:cached + - .:/app/samvera/hyrax-engine:cached + - rails-public:/app/samvera/hyrax-webapp/public + - rails-tmp:/app/samvera/hyrax-webapp/tmp networks: - internal: + - hyrax - web: - <<: *app + postgres: + image: postgres:latest + restart: always environment: - <<: *web_environment - depends_on: - - db - - solr - - fcrepo - - redis - - chrome - - db_migrate - # expose: - # - 3000 - stdin_open: true - tty: true + - POSTGRES_USER=hyrax_user + - POSTGRES_PASSWORD=hyrax_password + - POSTGRES_DB=hyrax + - POSTGRES_HOST_AUTH_METHOD=trust ports: - - 3000:3000 # uncomment this if you dont use dory or another proxy + - "5432:5432" + volumes: + - db:/var/lib/postgresql/data + networks: + - hyrax - db_migrate: - <<: *app - entrypoint: ["sh", "-c"] - command: 'cd /home/app/bin/ && ./db-migrate-seed.sh' - environment: - <<: *web_environment - DB_HOST: db - DB_PORT: 5432 - #FCREPO_HOST: fcrepo - #FCREPO_PORT: 8080 - SOLR_HOST: solr - SOLR_PORT: 8983 - depends_on: - - db + fcrepo: + image: ghcr.io/samvera/fcrepo4:4.7.5 + volumes: + - fcrepo:/data:cached + ports: + - 8080:8080 + networks: + - hyrax - redis: &redis - image: redis:4 - command: redis-server + memcached: + image: bitnami/memcached + ports: + - '11211:11211' + networks: + - hyrax + + redis: + image: redis:5-alpine volumes: - redis:/data networks: - internal: + - hyrax - chrome: - image: selenium/standalone-chrome:3.141 + sidekiq: + build: + context: . + target: hyrax-orcid-dev-worker + #image: ghcr.io/samvera/dassie-worker + env_file: + - .env + depends_on: + - db_migrate + - fcrepo + - memcached + - postgres + - redis + - solr + volumes: + #- .dassie:/app/samvera/hyrax-webapp:cached + - .:/app/samvera/hyrax-engine:cached + - hyrax-derivatives:/app/samvera/hyrax-webapp/derivatives + - hyrax-uploads:/app/samvera/hyrax-webapp/uploads + - sidekiq-public:/app/samvera/hyrax-webapp/public + - sidekiq-tmp:/app/samvera/hyrax-webapp/tmp + networks: + - hyrax + + solr: + image: solr:8.7 + ports: + - 8983:8983 + command: + - sh + - "-c" + - "precreate-core hyrax_test /opt/solr/server/configsets/hyraxconf; solr-precreate hyrax /opt/solr/server/configsets/hyraxconf" + volumes: + - solr_home:/var/solr/data:cached + #- .dassie/solr/conf:/opt/solr/server/configsets/hyraxconf + - ./solr/conf:/opt/solr/server/configsets/hyraxconf networks: - internal: + - hyrax + +volumes: + db: + fcrepo: + hyrax-derivatives: + hyrax-uploads: + rails-public: + rails-tmp: + redis: + sidekiq-public: + sidekiq-tmp: + solr_home: + +networks: + hyrax: + driver: bridge + driver_opts: + com.docker.network.bridge.name: br-hyrax-orcid diff --git a/solr/conf/_rest_managed.json b/solr/conf/_rest_managed.json new file mode 100644 index 0000000..e7ada3f --- /dev/null +++ b/solr/conf/_rest_managed.json @@ -0,0 +1,3 @@ +{ + "initArgs":{}, + "managedList":[]} \ No newline at end of file diff --git a/solr/conf/mapping-ISOLatin1Accent.txt b/solr/conf/mapping-ISOLatin1Accent.txt new file mode 100644 index 0000000..186ca31 --- /dev/null +++ b/solr/conf/mapping-ISOLatin1Accent.txt @@ -0,0 +1,246 @@ +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Syntax: +# "source" => "target" +# "source".length() > 0 (source cannot be empty.) +# "target".length() >= 0 (target can be empty.) + +# example: +# "??" => "A" +# "\u00C0" => "A" +# "\u00C0" => "\u0041" +# "??" => "ss" +# "\t" => " " +# "\n" => "" + +# ?? => A +"\u00C0" => "A" + +# ?? => A +"\u00C1" => "A" + +# ?? => A +"\u00C2" => "A" + +# ?? => A +"\u00C3" => "A" + +# ?? => A +"\u00C4" => "A" + +# ?? => A +"\u00C5" => "A" + +# ?? => AE +"\u00C6" => "AE" + +# ?? => C +"\u00C7" => "C" + +# ?? => E +"\u00C8" => "E" + +# ?? => E +"\u00C9" => "E" + +# ?? => E +"\u00CA" => "E" + +# ?? => E +"\u00CB" => "E" + +# ?? => I +"\u00CC" => "I" + +# ?? => I +"\u00CD" => "I" + +# ?? => I +"\u00CE" => "I" + +# ?? => I +"\u00CF" => "I" + +# ?? => IJ +"\u0132" => "IJ" + +# ?? => D +"\u00D0" => "D" + +# ?? => N +"\u00D1" => "N" + +# ?? => O +"\u00D2" => "O" + +# ?? => O +"\u00D3" => "O" + +# ?? => O +"\u00D4" => "O" + +# ?? => O +"\u00D5" => "O" + +# ?? => O +"\u00D6" => "O" + +# ?? => O +"\u00D8" => "O" + +# ?? => OE +"\u0152" => "OE" + +# ?? +"\u00DE" => "TH" + +# ?? => U +"\u00D9" => "U" + +# ?? => U +"\u00DA" => "U" + +# ?? => U +"\u00DB" => "U" + +# ?? => U +"\u00DC" => "U" + +# ?? => Y +"\u00DD" => "Y" + +# ?? => Y +"\u0178" => "Y" + +# ?? => a +"\u00E0" => "a" + +# ?? => a +"\u00E1" => "a" + +# ?? => a +"\u00E2" => "a" + +# ?? => a +"\u00E3" => "a" + +# ?? => a +"\u00E4" => "a" + +# ?? => a +"\u00E5" => "a" + +# ?? => ae +"\u00E6" => "ae" + +# ?? => c +"\u00E7" => "c" + +# ?? => e +"\u00E8" => "e" + +# ?? => e +"\u00E9" => "e" + +# ?? => e +"\u00EA" => "e" + +# ?? => e +"\u00EB" => "e" + +# ?? => i +"\u00EC" => "i" + +# ?? => i +"\u00ED" => "i" + +# ?? => i +"\u00EE" => "i" + +# ?? => i +"\u00EF" => "i" + +# ?? => ij +"\u0133" => "ij" + +# ?? => d +"\u00F0" => "d" + +# ?? => n +"\u00F1" => "n" + +# ?? => o +"\u00F2" => "o" + +# ?? => o +"\u00F3" => "o" + +# ?? => o +"\u00F4" => "o" + +# ?? => o +"\u00F5" => "o" + +# ?? => o +"\u00F6" => "o" + +# ?? => o +"\u00F8" => "o" + +# ?? => oe +"\u0153" => "oe" + +# ?? => ss +"\u00DF" => "ss" + +# ?? => th +"\u00FE" => "th" + +# ?? => u +"\u00F9" => "u" + +# ?? => u +"\u00FA" => "u" + +# ?? => u +"\u00FB" => "u" + +# ?? => u +"\u00FC" => "u" + +# ?? => y +"\u00FD" => "y" + +# ?? => y +"\u00FF" => "y" + +# ??? => ff +"\uFB00" => "ff" + +# ??? => fi +"\uFB01" => "fi" + +# ??? => fl +"\uFB02" => "fl" + +# ??? => ffi +"\uFB03" => "ffi" + +# ??? => ffl +"\uFB04" => "ffl" + +# ??? => ft +"\uFB05" => "ft" + +# ??? => st +"\uFB06" => "st" diff --git a/solr/conf/schema.xml b/solr/conf/schema.xml new file mode 100644 index 0000000..19697ec --- /dev/null +++ b/solr/conf/schema.xml @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id + + + + + + + + + + + + + + + + + diff --git a/solr/conf/scripts.conf b/solr/conf/scripts.conf new file mode 100644 index 0000000..f58b262 --- /dev/null +++ b/solr/conf/scripts.conf @@ -0,0 +1,24 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +user= +solr_hostname=localhost +solr_port=8983 +rsyncd_port=18983 +data_dir= +webapp_name=solr +master_host= +master_data_dir= +master_status_dir= diff --git a/solr/conf/solrconfig.xml b/solr/conf/solrconfig.xml new file mode 100644 index 0000000..6a15f38 --- /dev/null +++ b/solr/conf/solrconfig.xml @@ -0,0 +1,208 @@ + + + + + 5.0.0 + + + + + + + + + + + + + + + ${solr.blacklight-core.data.dir:} + + + + + + + + + + *:* + + + + + ${solr.ulog.dir:} + + + + ${solr.autoCommit.maxTime:15000} + false + + + + ${solr.autoSoftCommit.maxTime:-1} + + + + + + edismax + explicit + *:* + 2<-1 5<-2 6<90% + 1 + 2 + 0.01 + + id + title_tesim + author_tesim + subject_tesim + + + all_text_timv^10 + + + + author_tesim + + + + + title_tesim + + + + + subject_tesim + + + + + + *, + score + + + true + 1 + + true + default + true + true + false + 5 + + + + spellcheck + + + + + + off + all + 1 + {!raw f=id v=$id} + + id, + access_ssim, + discover_access_group_ssim,discover_access_person_ssim, + read_access_group_ssim,read_access_person_ssim, + edit_access_group_ssim,edit_access_person_ssim, + depositor_ti, + embargo_release_date_dtsi + inheritable_access_ssim, + inheritable_discover_access_group_ssim,inheritable_discover_access_person_ssim, + inheritable_read_access_group_ssim,inheritable_read_access_person_ssim, + inheritable_edit_access_group_ssim,inheritable_edit_access_person_ssim, + inheritable_embargo_release_date_dtsi + + + + + + + explicit + lucene + + + + + + + all + * + 1 + {!term f=id v=$id} + + + + + + + + true + + + termsComponent + + + + + textSpell + + default + spell + ./spell + true + + + author + author_spell + ./spell_author + 0.7 + true + + + subject + subject_spell + ./spell_subject + 0.7 + true + + + title + title_spell + ./spell_title + 0.7 + true + + + + + + last_modified + ignored_ + + + diff --git a/solr/conf/stopwords.txt b/solr/conf/stopwords.txt new file mode 100644 index 0000000..22f277f --- /dev/null +++ b/solr/conf/stopwords.txt @@ -0,0 +1,58 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +#----------------------------------------------------------------------- +# a couple of test stopwords to test that the words are really being +# configured from this file: +stopworda +stopwordb + +#Standard english stop words taken from Lucene's StopAnalyzer +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with + diff --git a/solr/conf/stopwords_en.txt b/solr/conf/stopwords_en.txt new file mode 100644 index 0000000..22f277f --- /dev/null +++ b/solr/conf/stopwords_en.txt @@ -0,0 +1,58 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +#----------------------------------------------------------------------- +# a couple of test stopwords to test that the words are really being +# configured from this file: +stopworda +stopwordb + +#Standard english stop words taken from Lucene's StopAnalyzer +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with + diff --git a/solr/conf/xslt/example.xsl b/solr/conf/xslt/example.xsl new file mode 100644 index 0000000..ff7cae7 --- /dev/null +++ b/solr/conf/xslt/example.xsl @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + <xsl:value-of select="$title"/> + + + +

+
+ This has been formatted by the sample "example.xsl" transform - + use your own XSLT to get a nicer page +
+ + + +
+ + + +
+ + + + +
+
+
+ + + + + + + + + + + + + + javascript:toggle("");? +
+ + exp + + + + + +
+ + +
+ + + + + + + +
    + +
  • +
    +
+ + +
+ + + + + + + + + + + + + + + + + + + + +
diff --git a/solr/conf/xslt/example_atom.xsl b/solr/conf/xslt/example_atom.xsl new file mode 100644 index 0000000..dbc7afa --- /dev/null +++ b/solr/conf/xslt/example_atom.xsl @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + Example Solr Atom 1.0 Feed + + This has been formatted by the sample "example_atom.xsl" transform - + use your own XSLT to get a nicer Atom feed. + + + Apache Solr + solr-user@lucene.apache.org + + + + + + tag:localhost,2007:example + + + + + + + + + <xsl:value-of select="str[@name='name']"/> + + tag:localhost,2007: + + + + + + diff --git a/solr/conf/xslt/example_rss.xsl b/solr/conf/xslt/example_rss.xsl new file mode 100644 index 0000000..b5bd0cf --- /dev/null +++ b/solr/conf/xslt/example_rss.xsl @@ -0,0 +1,66 @@ + + + + + + + + + + + + + Example Solr RSS 2.0 Feed + http://localhost:8983/solr + + This has been formatted by the sample "example_rss.xsl" transform - + use your own XSLT to get a nicer RSS feed. + + en-us + http://localhost:8983/solr + + + + + + + + + + + <xsl:value-of select="str[@name='name']"/> + + http://localhost:8983/solr/select?q=id: + + + + + + + http://localhost:8983/solr/select?q=id: + + + + diff --git a/solr/conf/xslt/luke.xsl b/solr/conf/xslt/luke.xsl new file mode 100644 index 0000000..d3f71c6 --- /dev/null +++ b/solr/conf/xslt/luke.xsl @@ -0,0 +1,337 @@ + + + + + + + + + Solr Luke Request Handler Response + + + + + + + + + <xsl:value-of select="$title"/> + + + + + +

+ +

+
+ +
+ +

Index Statistics

+ +
+ +

Field Statistics

+ + + +

Document statistics

+ + + + +
+ + + + + +
+ +
+ + +
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+

+ +

+ +
+ +
+
+
+ + +
+ + 50 + 800 + 160 + blue + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ background-color: ; width: px; height: px; +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
  • + +
  • +
    +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + - + + + + + + + + + + + + + + + + + +
diff --git a/solr/sample_solr_documents.yml b/solr/sample_solr_documents.yml new file mode 100644 index 0000000..eee603d --- /dev/null +++ b/solr/sample_solr_documents.yml @@ -0,0 +1,2692 @@ +--- +- lc_1letter_facet: + - P - Language & Literature + author_t: + - Ayaz, Shaikh, + marc_display: "00799cam + a2200241 a 4500 00282214 DLC20090120022042.0000417s1998 pk 000 0 urdo 00282214 P-U-00282214; 05; 06DLCDLCDLCurdsndlcodePK2788.9.A9F55 + 1998Ayaz, Shaikh,1923-1997.Fikr-i Ayāz /murattibīn, Āṣif Farruk̲h̲ī, Shāh Muḥammad Pīrzādah.Karācī :Dāniyāl,[1998]375 p. ;23 cm.In Urdu.Selected poems and articles from the + works of renowned Sindhi poet; chiefly translated from Sindhi.Farruk̲h̲ī, Āṣif,1959-Pīrzādah, Shāh Muḥammad." + published_display: + - Karācī + author_display: Ayaz, Shaikh, 1923-1997 + lc_callnum_display: + - PK2788.9.A9 F55 1998 + title_t: + - Fikr-i Ayāz / + pub_date: + - '1998' + pub_date_sort: 1998 + format: Book + material_type_display: + - 375 p. + lc_b4cutter_facet: + - PK2788.9.A9 + title_display: Fikr-i Ayāz + title_sort: fikr-i ayāz + id: 00282214 + author_sort: Ayaz Shaikh 19231997 Fikri Ayāz + title_addl_t: + - Fikr-i Ayāz / + author_addl_t: + - Farruk̲h̲ī, Āṣif, + - Pīrzādah, Shāh Muḥammad. + lc_alpha_facet: + - PK + language_facet: + - Urdu + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - M - Music + author_t: + - Ayaz, Shaikh, + marc_display: "00778cam + a22002417a 4500 00282371 DLC20090120021204.0000509s1986 pk 000 0 urdo 00282371 P-U-00282371; 08DLCDLCDLCurdsndlcodeMLCME 2002/02660 (D)Ayaz, Shaikh,1923-1997.Sāhivāl jail kī ḍāʼirī /Shaik̲h̲ Ayāz; tarjumah, Kiran Singh.Karācī :Maktabah-yi Dāniyāl,1986.232 p. ;23 cm.In Urdu.Translated from Sindhi.Author's memoirs during + his imprisonment in Sahiwal District jail during late 1960s.Includes bibliographical + references." + published_display: + - Karācī + author_display: Ayaz, Shaikh, 1923-1997 + lc_callnum_display: + - MLCME 2002/02660 (D) + title_t: + - Sāhivāl jail kī ḍāʼirī / + pub_date: + - '1986' + pub_date_sort: 1986 + format: Book + material_type_display: + - 232 p. + lc_b4cutter_facet: + - MLCME 2002/02660 (D) + title_display: Sāhivāl jail kī ḍāʼirī + title_sort: sāhivāl jail kī ḍāʼirī + id: 00282371 + author_sort: Ayaz Shaikh 19231997 Sāhivāl jail kī ḍāʼirī + title_addl_t: + - Sāhivāl jail kī ḍāʼirī / + language_facet: + - Urdu + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: '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' + author_vern_display: "‏نورى، عبد الله" + subject_addl_t: + - Interviews + - Trials, litigation, etc + - Officials and employees Interviews + - Politics and government 1997- + title_display: Naqdī barā-yi tamām-i fuṣūl + subject_era_facet: + - 1997- + id: 00313831 + isbn_t: + - '9645625963' + subject_geo_facet: + - Iran + subject_topic_facet: + - Nūrī, ʻAbd Allāh, 1949- + - Iran. Vizārat-i Kishvar + lc_alpha_facet: + - DS + title_series_t: + - Farhang-i ʻumūmī + - "‏فرهنگ عمومى" + subtitle_t: + - '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.' + - "‏گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح عبد الله نورى در + مجلس پنجم" + lc_1letter_facet: + - D - World History + author_t: + - Nūrī, ʻAbd Allāh, + - "‏نورى، عبد الله" + marc_display: "01988cam + a2200421 a 4500 00313831 DLC20090121100001.0010611s2000 ir b 001 0dper d 00313831 9645625963(CStRLIN)DCLN01-B3014MHMHCStRLINDLC-Rlccopycatlcodea-ir---DS318.84.N87N87 + 2000(3(4880-01Nūrī, ʻAbd Allāh,1949-880-02Naqdī 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.Critique for all seasons :Akbar Ganji's conversation with Abdullah Nuri880-03Chāp-i 1.880-04Tihrān + :Ṭarḥ-i Naw,2000.245 p. ;22 cm.880-05Farhang-i ʻumūmīIncludes bibliographical + references and index.880-06Nūrī, + ʻAbd Allāh,1949-Interviews.Iran.Vizārat-i KishvarOfficials and employeesInterviews.880-07Nūrī, + ʻAbd Allāh,1949-Trials, + litigation, etc.IranPolitics and government1997-880-08Ganjī, Akbar.100-01/(3/r‏‏نورى، عبد الله.245-02/(3/r‏‏نقدى + براى تمام فصول :‏‏گفت و گوى اکبر گنجى با عبد الله + نورى : به پيوست متن استيضاح عبد الله نورى در مجلس پنجم.250-03/(4/r‏‏چاپ 1.260-04/(3/r‏‏تهران :‏‏طرح نو،‏‏‪2000‬.440-05/(3/r‏‏فرهنگ عمومى600-06/(3/r‏‏نورى، + عبد الله.600-07/(3/r‏‏نورى، عبد الله.700-08/(3/r‏‏گنجى، اكبر." + published_display: + - Tihrān + author_display: Nūrī, ʻAbd Allāh, 1949- + title_vern_display: "‏نقدى براى تمام فصول :‏" + lc_callnum_display: + - DS318.84.N87 N87 2000 + title_t: + - 'Naqdī barā-yi tamām-i fuṣūl :' + - "‏نقدى براى تمام فصول :‏" + pub_date: + - '2000' + pub_date_sort: 2000 + published_vern_display: + - "‏تهران :‏" + format: Book + subtitle_vern_display: "‏گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن استيضاح + عبد الله نورى در مجلس پنجم" + material_type_display: + - 245 p. + lc_b4cutter_facet: + - DS318.84.N87 + subject_t: + - Nūrī, ʻAbd Allāh, 1949- + - Iran. Vizārat-i Kishvar + - Iran + - "‏نورى، عبد الله" + title_sort: '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' + author_sort: 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 + title_addl_t: + - '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.' + - 'Critique for all seasons : Akbar Ganji''s conversation with Abdullah Nuri' + - "‏نقدى براى تمام فصول :‏ ‏گفت و گوى اکبر گنجى با عبد الله نورى : به پيوست متن + استيضاح عبد الله نورى در مجلس پنجم" + author_addl_t: + - Ganjī, Akbar. + - "‏گنجى، اكبر" + language_facet: + - Persian + timestamp: '2014-02-03T18:42:53.056Z' +- author_t: + - Yoshida, Hajime, + - "吉田一" + marc_display: "00956dam + a22002655a 4500 00314247 DLC20090126095911.0000214s1997 ja 000 0 jpn 00314247 (CStRLIN)DCLP00-B1931DLC-RDLC-RDLC$1880-01Yoshida, Hajime,1934-880-02Kubo Sakae \"Kazanbaichi\" o yomu /Yoshida + Hajime cho.880-03Tōkyō :Hōsei Daigaku Shuppankyoku,1997.480 p. ;19 cm.880-04Kubo, Sakae,1901-1958.Kazanbaichi.Japanese drama20th century.Political plays, Japanese.TheaterJapanHistory.100-01/$1吉田一,1934-245-02/$1久保栄 「火山灰地」 を読む /吉田一著.260-03/$1東京 :法政大学出版局,1997.600-04/$1久保栄,1901-1958.火山灰地." + published_display: + - Tōkyō + title_vern_display: "久保栄 「火山灰地」 を読む" + author_display: Yoshida, Hajime, 1934- + title_t: + - Kubo Sakae "Kazanbaichi" o yomu / + - "久保栄 「火山灰地」 を読む" + pub_date: + - '1997' + pub_date_sort: 1997 + published_vern_display: + - "東京" + format: Book + author_vern_display: "吉田一, 1934-" + material_type_display: + - 480 p. + title_display: Kubo Sakae "Kazanbaichi" o yomu + subject_addl_t: + - 20th century + - Japan History + subject_t: + - Kubo, Sakae, 1901-1958. Kazanbaichi + - Japanese drama + - Political plays, Japanese + - Theater + - "久保栄, 1901-1958. 火山灰地" + subject_era_facet: + - 20th century + title_sort: kubo sakae "kazanbaichi" o yomu + id: '00314247' + author_sort: Yoshida Hajime 1934 Kubo Sakae Kazanbaichi o yomu + title_addl_t: + - Kubo Sakae "Kazanbaichi" o yomu / + - "久保栄 「火山灰地」 を読む" + subject_geo_facet: + - Japan + subject_topic_facet: + - Kubo, Sakae, 1901-1958 + - Japanese drama + - Political plays, Japanese + - Theater + language_facet: + - Japanese + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - D - World History + author_t: + - Vi︠a︡tkin, M. P. (Mikhail Porfirʹevich), + marc_display: "00987cam + a22002531 4500 43037890 DLC20090126171234.0810731m19419999ru b b 000 0 ruso 43037890 (OCoLC)28783996DLCICUOCoLCDLCe-ur-kzDK861.K3V5Vi︠a︡tkin, M. P.(Mikhail + Porfirʹevich),1895-1967.Ocherki po istorii Kazakhskoĭ + SSR.[Moskva],Ogiz, Gospolitizdat,1941-v.fold. map.20 cm.At head of title: Akademii︠a︡ nauk SSSR. Institut istorii + i Kazakhstanskiĭ filial. M. Vi︠a︡tkin.\"Obzor literatury i istochnikov\": + v. 1, p. 5-[19]. \"Bibliograficheskiĭ ukazatelʹ\": v. 1, p. 356-364.t. 1. S drevneĭshikh vremen + po 1870 g.KazakhstanHistory.Institut istorii (Akademii︠a︡ + nauk SSSR)Akademii︠a︡ nauk Kazakhskoĭ SSR, Alma Ata." + published_display: + - Moskva + author_display: Vi︠a︡tkin, M. P. (Mikhail Porfirʹevich), 1895-1967 + lc_callnum_display: + - DK861.K3 V5 + title_t: + - Ocherki po istorii Kazakhskoĭ SSR. + pub_date: + - '1941' + pub_date_sort: 1941 + format: Book + material_type_display: + - v. + lc_b4cutter_facet: + - DK861.K3 + title_display: Ocherki po istorii Kazakhskoĭ SSR + subject_addl_t: + - History + subject_t: + - Kazakhstan + title_sort: ocherki po istorii kazakhskoĭ ssr + id: '43037890' + author_sort: Vi︠a︡tkin M P Mikhail Porfirʹevich 18951967 Ocherki po istorii Kazakhskoĭ + SSR + title_addl_t: + - Ocherki po istorii Kazakhskoĭ SSR. + subject_geo_facet: + - Kazakhstan + author_addl_t: + - Institut istorii (Akademii︠a︡ nauk SSSR) + - Akademii︠a︡ nauk Kazakhskoĭ SSR, Alma Ata. + lc_alpha_facet: + - DK + language_facet: + - Russian + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - K - Law + author_t: + - Korea (North) + marc_display: "00955cam + a22002411 4500 53029833 DLC20090126171326.0860911s1952 ru f000 0 rus 53029833 (OCoLC)14207259DLCCUCUDLCpremarca-kn---KPC131952Korea (North)Laws, etc. (Konstitut︠s︡ii︠a︡ i osnovnye + zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ Respubliki)Konstitut︠s︡ii︠a︡ i osnovnye + zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ Respubliki.Perevod s koreĭskogo I︠U︡.N. Mazura i Khan Dyk Pona. Pod red. i s + vstup. statʹeĭ G. Tavrova.Moskva,Izd-vo + inostrannoĭ lit-ry,1952.396 p.21 cm.Zakonodatelʹstvo stran narodnoĭ demokratiiMazur, I︠U︡. N.Korea (North)Constitution." + published_display: + - Moskva + author_display: Korea (North) + lc_callnum_display: + - KPC13 1952 + title_t: + - Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ + Respubliki. + pub_date: + - '1952' + pub_date_sort: 1952 + format: Book + material_type_display: + - 396 p. + lc_b4cutter_facet: + - KPC13 + title_display: Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ + Respubliki + title_sort: konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty koreĭskoĭ narodno-demokraticheskoĭ + respubliki + id: '53029833' + author_sort: Korea North Laws etc Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty + Koreĭskoĭ NarodnoDemokraticheskoĭ Respubliki Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye + akty Koreĭskoĭ NarodnoDemokraticheskoĭ Respubliki + title_addl_t: + - Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ + Respubliki. + - Laws, etc. (Konstitut︠s︡ii︠a︡ i osnovnye zakonodatelʹnye akty Koreĭskoĭ Narodno-Demokraticheskoĭ + Respubliki) + author_addl_t: + - Mazur, I︠U︡. N. + - Korea (North) + title_added_entry_t: + - Constitution + title_series_t: + - Zakonodatelʹstvo stran narodnoĭ demokratii + lc_alpha_facet: + - KPC + language_facet: + - Russian + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - D - World History + marc_display: "01062cam + a2200301 a 4500 77826928 DLC20090122103906.0070816s1976 ko 000 0ckor 77826928 (CStRLIN)DCLP07-B11425DLC*BZV*MH-HYOCoLCCUCStRLINDLC-RDLCa-kr---DS912.38.K982 + 1976$1880-01Koryŏsa.Yŏlchŏn.Selections.880-02Koryŏ inmul yŏlchŏn /Yi Min-su pʻyŏnyŏk.880-03Sŏul :Sŏmundang,1976.255 p. ;19 cm.880-04Sŏmun munʼgo ;237KoreaHistoryKoryŏ period, 935-1392Biography.KoreaBiography.880-05Yi, Min-su,1916-130-01/$1高麗史.列傅.Selections.245-02/$1高麗 人物 列傅 /李 民樹 編譯.260-03/$1서울 :瑞文堂,1976.490-04/$1瑞文 文庫 ;237700-05/$1李 民樹,1916-" + published_display: + - Sŏul + title_vern_display: "高麗 人物 列傅" + lc_callnum_display: + - DS912.38 .K982 1976 + title_t: + - Koryŏ inmul yŏlchŏn / + - "高麗 人物 列傅" + pub_date: + - '1976' + pub_date_sort: 1976 + published_vern_display: + - "서울" + format: Book + material_type_display: + - 255 p. + lc_b4cutter_facet: + - DS912.38 + title_display: Koryŏ inmul yŏlchŏn + subject_addl_t: + - History Koryŏ period, 935-1392 Biography + - Biography + subject_t: + - Korea + subject_era_facet: + - Koryŏ period, 935-1392 + title_sort: koryŏ inmul yŏlchŏn + id: '77826928' + author_sort: "\U0010FFFF Koryŏ inmul yŏlchŏn" + title_addl_t: + - Koryŏ inmul yŏlchŏn / + - Koryŏsa. Yŏlchŏn. Selections + - "高麗 人物 列傅" + - "高麗史. 列傅. Selections" + subject_geo_facet: + - Korea + author_addl_t: + - Yi, Min-su, + - "李 民樹" + title_series_t: + - Sŏmun munʼgo ; 237 + - "瑞文 文庫 ; 237" + lc_alpha_facet: + - DS + language_facet: + - Korean + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - P - Language & Literature + author_t: + - Parikshit Sharma, Ogeti, + marc_display: "00813cam + a2200217 i 4500 78908283 DLC20090121104206.0790619s1976 ii 000 0 sano 78908283 DLCDLCDLCPK3799.P29Y3Parikshit Sharma, Ogeti,1930-Yaśodharā-mahākāvyam + /Ogeṭi Parīkṣitśarmā.Puṇyapattanam :Śāradā-Gaurava-Grantha-Mālā ;Haidrābāda + :prāptisthalam O. Acyutarāmaśāstrī,1976.24, 128, 2 p. ;22 cm.Śāradā-gaurava-grantha-mālā + ; 37In Sanskrit; introductory matter in English or Sanskrit.A poem.Gautama BuddhaPoetry.Yaśodharā(Wife of Gautama Buddha)Poetry." + published_display: + - Puṇyapattanam + - Haidrābāda + author_display: Parikshit Sharma, Ogeti, 1930- + lc_callnum_display: + - PK3799.P29 Y3 + title_t: + - Yaśodharā-mahākāvyam / + pub_date: + - '1976' + pub_date_sort: 1976 + format: Book + material_type_display: + - 24, 128, 2 p. + lc_b4cutter_facet: + - PK3799.P29 + title_display: Yaśodharā-mahākāvyam + subject_addl_t: + - Poetry + subject_t: + - Gautama Buddha + - Yaśodharā (Wife of Gautama Buddha) + title_sort: yaśodharā-mahākāvyam + id: '78908283' + author_sort: Parikshit Sharma Ogeti 1930 Yaśodharāmahākāvyam + title_addl_t: + - Yaśodharā-mahākāvyam / + subject_topic_facet: + - Gautama Buddha + - Yaśodharā (Wife of Gautama Buddha) + title_series_t: + - Śāradā-gaurava-grantha-mālā ; 37 + lc_alpha_facet: + - PK + language_facet: + - Sanskrit + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - H - Social Sciences + author_t: + - Iṣlāḥī, Amīn Aḥsan, + marc_display: "00729cam + a2200229 i 4500 79930185 DLC20090123080110.0791203r19781950pk 000 0 urdo 79930185 Rs10.00DLCDLCDLCa-pk---HQ1745.5.I83 1978Iṣlāḥī, Amīn Aḥsan,1904-1997.Pākistānī ʻaurat dorāhe + par /tālīf Amīn Aḥsan Iṣlāḥī.Lāhaur :Maktabah-yi Markazī Anjuman-i K̲h̲uddāmulqurʼān,1978.8, 174 p. ;22 cm.In Urdu.First published in 1950.WomenPakistan.WomenPakistanSocial + conditions." + published_display: + - Lāhaur + author_display: Iṣlāḥī, Amīn Aḥsan, 1904-1997 + lc_callnum_display: + - HQ1745.5 .I83 1978 + title_t: + - Pākistānī ʻaurat dorāhe par / + pub_date: + - '1978' + pub_date_sort: 1978 + format: Book + material_type_display: + - 8, 174 p. + lc_b4cutter_facet: + - HQ1745.5 + title_display: Pākistānī ʻaurat dorāhe par + subject_addl_t: + - Pakistan + - Pakistan Social conditions + subject_t: + - Women + title_sort: pākistānī ʻaurat dorāhe par + id: '79930185' + author_sort: Iṣlāḥī Amīn Aḥsan 19041997 Pākistānī ʻaurat dorāhe par + title_addl_t: + - Pākistānī ʻaurat dorāhe par / + subject_geo_facet: + - Pakistan + subject_topic_facet: + - Women + lc_alpha_facet: + - HQ + language_facet: + - Urdu + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - M - Music + author_t: + - Nārāyaṇapaṇḍita, + marc_display: "01012cam + a22002657a 4500 85910001 DLC20090121023106.0heuamb---bacaheubmb---baaa860321r19851946dcu bb s001 0 sano 85910001 LC San A 616DLCDLCDLCMicrofiche 90/61328 (P)Nārāyaṇapaṇḍita,17th cent.Āśleṣāśataka of Nārāyaṇa Paṇḍita[microform].Trivandrum :University + MSS. Library, University of Travancore,1946.xii, 24 p. ;24 cm.Poem.In Sanskrit; introd. in English.\"Reprint from the Journal + of the Travancore University Oriental Manuscripts Library, no. 7.\"Includes bibliographical + references and index.Master microform held by: DLC.Microfiche.Washington, D.C. :Library of Congress + Photoduplication Service,1985.1 microfiche ; 11 x 15 cm." + published_display: + - Trivandrum + author_display: Nārāyaṇapaṇḍita, 17th cent + lc_callnum_display: + - Microfiche 90/61328 (P) + title_t: + - Āśleṣāśataka of Nārāyaṇa Paṇḍita + pub_date: + - '1946' + pub_date_sort: 1946 + format: Book + material_type_display: + - xii, 24 p. + lc_b4cutter_facet: + - Microfiche 90/61328 (P) + title_display: Āśleṣāśataka of Nārāyaṇa Paṇḍita + title_sort: āśleṣāśataka of nārāyaṇa paṇḍita + id: '85910001' + author_sort: Nārāyaṇapaṇḍita 17th cent Āśleṣāśataka of Nārāyaṇa Paṇḍita + microform + title_addl_t: + - Āśleṣāśataka of Nārāyaṇa Paṇḍita + language_facet: + - Sanskrit + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot + author_vern_display: "‏פינקל, חיים יעקב" + subject_addl_t: + - Anecdotes + title_display: Shodede-yam Yehudiyim + id: '86207417' + isbn_t: + - '9650101373' + subject_topic_facet: + - Jewish pirates + - Jewish criminals + lc_alpha_facet: + - G + subtitle_t: + - sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot / + - "‏ספורים מפליאים המבוססים על עובדות היסטוריות /‏" + author_t: + - Finkel, Chaim Jacob. + - "‏פינקל, חיים יעקב" + lc_1letter_facet: + - G - Geography, Anthropology, Recreation + marc_display: "01258cam + a2200301 a 4500 86207417 DLC20090123161900.0930810s1984 is a 000 0 heb 86207417 9650101373(CStRLIN)DCLH93-B1897DLC-RDLC-RhebengG535.F54 1984(2880-01Finkel, + Chaim Jacob.Jewish pirates.Hebrew880-02Shodede-yam Yehudiyim :sipurim mafliʼim + ha-mevusasim ʻal ʻuvdot hisṭoriyot /Ḥayim Yaʻaḳov + Finḳel ; me-Anglit, Ofirah Rahaṭ.880-03Yerushalayim + :Devir,c1984.283 p. :ill. ;22 cm.Title on t.p. verso: Jewish + pirates.Jewish piratesAnecdotes.Jewish criminalsAnecdotes.Jewish pirates.100-01/(2/r‏‏פינקל, חיים יעקב.245-02/(2/r‏‏שודדי־ים + יהודיים :‏‏ספורים מפליאים המבוססים על עובדות היסטוריות + /‏‏חיים יעקב פינקל ; מאנגלית, אופירה רהט.260-03/(2/r‏‏ירושלים :‏‏דביר,‏‏‪c1984‬." + published_display: + - Yerushalayim + author_display: Finkel, Chaim Jacob + title_vern_display: "‏שודדי־ים יהודיים :‏" + lc_callnum_display: + - G535 .F54 1984 + title_t: + - 'Shodede-yam Yehudiyim :' + - "‏שודדי־ים יהודיים :‏" + pub_date: + - '1984' + pub_date_sort: 1984 + published_vern_display: + - "‏ירושלים :‏" + format: Book + subtitle_vern_display: "‏ספורים מפליאים המבוססים על עובדות היסטוריות /‏" + lc_b4cutter_facet: + - G535 + material_type_display: + - 283 p. + subject_t: + - Jewish pirates + - Jewish criminals + title_sort: shodede-yam yehudiyim :sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot + author_sort: Finkel Chaim Jacob Jewish pirates Hebrew Shodedeyam Yehudiyim sipurim + mafliʼim hamevusasim ʻal ʻuvdot hisṭoriyot + title_addl_t: + - 'Shodede-yam Yehudiyim : sipurim mafliʼim ha-mevusasim ʻal ʻuvdot hisṭoriyot + /' + - Jewish pirates. Hebrew + - "‏שודדי־ים יהודיים :‏ ‏ספורים מפליאים המבוססים על עובדות היסטוריות /‏" + title_added_entry_t: + - Jewish pirates. + language_facet: + - Hebrew + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - B - Philosophy, Psychology, Religion + author_t: + - Muvaḥḥid Abṭaḥī, Ḥujjat. + - "‏موحد ابطحى، خجة" + marc_display: "01657cam + a2200337 a 4500 87931798 DLC20090121115059.0060428m19869999ir ah b 000 0 per d 87931798 (CStRLIN)DCLN06-B3656NjPNjPUkLSOADLC-Rlccopycata------f------BP44.M88 1986(3(4880-01Muvaḥḥid Abṭaḥī, + Ḥujjat.880-02Āshnāʼī bā ḥawzahʹhā-yi + ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh /bih + qalam-i Ḥujjat Muvaḥḥid Abṭaḥī.880-03Āshnāyī + bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh880-04Ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah880-05Iṣfahān :Ḥawzah-i ʻIlmīyah,1365- [1986- ]v. <1> :ill. (some col.), facsims. ;25 cm.Bibliography: v. 1, p.451-455.Religious institutionsIslamic countries.ShiitesEducationIslamic countries.Islamic universities and colleges.100-01/(3/r‏‏موحد ابطحى، خجة.245-02/(3/r‏‏اشنائى + با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏‏بقلم حجة + موحد ابطحى.246-03/(3/r‏‏اشنايى با حوزه‌هاى علميۀ + شيعه در طول تاريخ246-04/(3/r‏‏حوزه هاى علميۀ شيعه260-05/(3/r‏‏اصفهان :‏‏حوزۀ علميه،‏‏‪1365- [1986- ]‬." + published_display: + - Iṣfahān + title_vern_display: "‏اشنائى با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏" + author_display: Muvaḥḥid Abṭaḥī, Ḥujjat + lc_callnum_display: + - BP44 .M88 1986 + title_t: + - Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh / + - "‏اشنائى با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏" + pub_date: + - '1986' + pub_date_sort: 1986 + published_vern_display: + - "‏اصفهان :‏" + format: Book + author_vern_display: "‏موحد ابطحى، خجة" + material_type_display: + - v. <1> + lc_b4cutter_facet: + - BP44 + title_display: Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh + subject_addl_t: + - Islamic countries + - Education Islamic countries + subject_t: + - Religious institutions + - Shiites + - Islamic universities and colleges + title_sort: āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi shīʻah dar ṭūl-i tārīkh + id: '87931798' + author_sort: Muvaḥḥid Abṭaḥī Ḥujjat Āshnāʼī bā ḥawzahʹhāyi ʻilmīyahʼi + Shīʻah dar ṭūli tārīkh + title_addl_t: + - Āshnāʼī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh / + - Āshnāyī bā ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah dar ṭūl-i tārīkh + - Ḥawzahʹhā-yi ʻilmīyah-ʼi Shīʻah + - "‏اشنائى با حوزه‌هاى علميۀ شيعه در طول تاريخ /‏" + - "‏اشنايى با حوزه‌هاى علميۀ شيعه در طول تاريخ" + - "‏حوزه هاى علميۀ شيعه" + subject_geo_facet: + - Islamic countries + subject_topic_facet: + - Religious institutions + - Shiites + - Islamic universities and colleges + lc_alpha_facet: + - BP + language_facet: + - Persian + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - M - Music + author_t: + - Lomtʻatʻiże, Čola, + marc_display: "00610cam + a22001817a 4500 90142413 DLC20090126150928.0900409s1975 gs 000 0 geo 90142413 DLCDLCMLCSN 96/3906 (H)Lomtʻatʻiże, Čola,1879-1915.Mrecvelobis mušakis cʻxovrebis + cesi :tʻeoriul-metʻoduri narkvevi /Čola Lomtʻatʻiże.Title in colophon:Obraz + zhizni rabotnika promyshlennostiTʻbilisi :Mecʻniereba,1975.65 p. ;22 cm.Industrial workers;life style" + published_display: + - Tʻbilisi + author_display: Lomtʻatʻiże, Čola, 1879-1915 + lc_callnum_display: + - MLCSN 96/3906 (H) + title_t: + - 'Mrecvelobis mušakis cʻxovrebis cesi :' + pub_date: + - '1975' + pub_date_sort: 1975 + subtitle_display: tʻeoriul-metʻoduri narkvevi + format: Book + material_type_display: + - 65 p. + lc_b4cutter_facet: + - MLCSN 96/3906 (H) + title_display: Mrecvelobis mušakis cʻxovrebis cesi + subject_t: + - Industrial workers; life style + title_sort: mrecvelobis mušakis cʻxovrebis cesi :tʻeoriul-metʻoduri narkvevi + id: '90142413' + author_sort: Lomtʻatʻiże Čola 18791915 Mrecvelobis mušakis cʻxovrebis cesi tʻeoriulmetʻoduri + narkvevi + title_addl_t: + - 'Mrecvelobis mušakis cʻxovrebis cesi : tʻeoriul-metʻoduri narkvevi /' + - Obraz zhizni rabotnika promyshlennosti + subject_topic_facet: + - Industrial workers; life style + language_facet: + - Georgian + subtitle_t: + - tʻeoriul-metʻoduri narkvevi / + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - K - Law + author_t: + - Korea (North) + marc_display: "01106cam + a2200325 a 4500 92117465 DLC20090126171556.0920805s1990 ko l 000 0 kor 92117465 W300000 (set)(CStRLIN)DCLP92-B14190DLC-RDLC-Ra-kn---KPC13.K67 1990$1Korea (North)Laws, etc.880-01Pukhan pŏmnyŏngjip /chʻaegim pʻyŏnjip + Chŏng Kyŏng-mo, Chʻoe Tal-gon.880-02Chaepʻan.880-03Sŏul Tʻŭkpyŏlsi :Taeryuk Yŏnʼguso,1990.5 v. ;27 cm.LawKorea (North)880-04Chŏng, + Kyŏng-mo,1937-880-05Chʻoe, Tal-gon.245-01/$1北韓 法令集 /責任 編輯 鄭 慶謨, 崔 逹坤.250-02/$1再版.260-03/$1서울 持別市 :大陸 研究所,1990.700-04/$1鄭 慶謨,1937-700-05/$1崔 逹坤." + published_display: + - Sŏul Tʻŭkpyŏlsi + title_vern_display: "北韓 法令集 /" + author_display: Korea (North) + lc_callnum_display: + - KPC13 .K67 1990 + title_t: + - Pukhan pŏmnyŏngjip / + - "北韓 法令集 /" + pub_date: + - '1990' + pub_date_sort: 1990 + published_vern_display: + - "서울 持別市 :" + format: Book + material_type_display: + - 5 v. + lc_b4cutter_facet: + - KPC13 + title_display: Pukhan pŏmnyŏngjip + subject_addl_t: + - Korea (North) + subject_t: + - Law + title_sort: pukhan pŏmnyŏngjip + id: '92117465' + author_sort: Korea North Laws etc Pukhan pŏmnyŏngjip + title_addl_t: + - Pukhan pŏmnyŏngjip / + - Laws, etc + - "北韓 法令集 /" + subject_geo_facet: + - Korea (North) + subject_topic_facet: + - Law + author_addl_t: + - Chŏng, Kyŏng-mo, + - Chʻoe, Tal-gon. + - "鄭 慶謨," + - "崔 逹坤." + lc_alpha_facet: + - KPC + language_facet: + - Korean + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim + asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... ṿe-himtsiʼam + ... Mosheh Iserlish + author_vern_display: "‏ישראל מאיר,‏ ‏הכהן" + subject_addl_t: + - Customs and practices + title_display: Sefer Mishnah berurah + id: '92828023' + subject_topic_facet: + - Karo, Joseph ben Ephraim, 1488-1575 + - Jewish law + - Judaism + lc_alpha_facet: + - BM + subtitle_t: + - ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim asher ḥiber Yosef + Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... ṿe-himtsiʼam ... Mosheh + Iserlish / + - "‏והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף קארו ... עם חידושי דינים + שהשמיט הגאון ... והמציאם משה איסרליש /‏" + author_t: + - Israel Meir, ha-Kohen, + - "‏ישראל מאיר,‏ ‏הכהן" + lc_1letter_facet: + - B - Philosophy, Psychology, Religion + marc_display: "03361cam + a2200493 a 4500 92828023 DLC20090122150744.0921008m19929999is 000 0 heb 92828023 (CStRLIN)DCLH92-B2385DLC-RDLC-RDLC-RDLCBM520.88.A53I88 1992b(2880-01Israel Meir,ha-Kohen,1838-1933.880-02Mishnah berurah880-03Sefer Mishnah + berurah :ṿe-hu perush yafeh u-menupeh ʻal Shulḥan + ʻarukh Oraḥ ḥayim asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ + ha-gaʼon ... ṿe-himtsiʼam ... Mosheh Iserlish /kol + eleh ḥibarti [z.o. asafti ṿe-ʻarakhti] Yiśraʼel Meʼir b.R. Aryeh Zeʼev ha-Kohen.880-04Hotsaʼah ḥadashah, menuḳedet u-mefuseḳet uve-fiʻnuaḥ rashe-tevot + uve-hagahah meduḳdeḳet.880-05[Jerusalem? + :ḥ. mo. l. ],752-<[768]> + [1992-<2007 or 2008>](Yerushalayim :Nidpas ʻa. y. Makhon le-hotsaʼat sefarim ʻA. L.B.)v. <1-5> ;29 cm.Title on cover <v. 2-3, 5>: Sefer Mishnah berurah + ha-menuḳad.Vol. 4- has ed. statement: Mahadura meyuḥedet ʻim hagahot ṿe-heʻarot + \"Ish matsliaḥ\" la-Sefaradim ṿa-ʻadot ha-Mizraḥ.Vol. 4- published: Bene + Beraḳ : \"Mekhon ha-Rav Matsliaḥ\" she-ʻa. y. Mosdot Yeshivat \"Kise Raḥamim\" + Sefaradit.Includes text of Shulḥan ʻarukh, Oraḥ ḥayim.Includes Beʼer ha-Golah + by Mosheh Ravḳash, Baʼer heṭev by Judah ben Simon Ashkenazi, Shaʻare teshuvah + by Ḥayim Mordekhai Margaliyot.Karo, Joseph ben Ephraim,1488-1575.Oraḥ ḥayim.Jewish law.JudaismCustoms and practices.880-06Isserles, + Moses ben Israel,ca. 1525-1572.880-07Karo, Joseph ben Ephraim,1488-1575.Oraḥ ḥayim.880-08Mishnah + berurah.880-09Sefer Mishnah berurah ha-menuḳad.880-10Ish matsliaḥ.100-01/(2/r‏‏ישראל + מאיר,‏‏הכהן.240-02/(2/r‏‏משנה ברורה245-03/(2/r‏‏ספר + משנה ברורה :‏‏והוא פירוש יפה ומנפה על שלחן ערוך + ארח חיים אשר חבר יוסף קארו ... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש + /‏‏כל אלה חיברתי [ז״א אספתי וערכתי] ישראל מאיר + בר׳ אריה זאב הכהן.250-04/(2/r‏‏הוצאה חדשה, + מנקדת ומפסקת ובפענוח ראשי־תבות ובהגהה מדקדקת.260-05/(2/r‏‏[Jerusalem? :‏‏חמו״ל,‏‏‪752-<[768]> [1992-<2007 or 2008>]‏‏(ירושלים :‏‏נדפס ע״י מכון להוצאת ספרים + ע.ל.ב.)‬630-00/(2/r‏‏שלחן ערוך.‏‏ארח חיים.700-06/(2/r‏‏איסרליש, + משה.700-07/(2/r‏‏קארו, יוסף.‏‏אורח חיים.740-08/(2/r‏‏משנה + ברורה.740-09/(2/r‏‏ספר משנה ברורה המנקד.740-10/(2/rאיש מצליח." + published_display: + - Jerusalem? + author_display: Israel Meir, ha-Kohen, 1838-1933 + title_vern_display: "‏ספר משנה ברורה :‏" + lc_callnum_display: + - BM520.88.A53 I88 1992b + title_t: + - 'Sefer Mishnah berurah :' + - "‏ספר משנה ברורה :‏" + pub_date: + - '1992' + pub_date_sort: 1992 + published_vern_display: + - "‏[Jerusalem? :‏" + format: Book + subtitle_vern_display: "‏והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף + קארו ... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש /‏" + lc_b4cutter_facet: + - BM520.88.A53 + material_type_display: + - v. <1-5> + subject_t: + - Karo, Joseph ben Ephraim, 1488-1575. Oraḥ ḥayim + - Jewish law + - Judaism + - "‏שלחן ערוך.‏ ‏ארח חיים" + title_sort: sefer mishnah berurah :ṿe-hu perush yafeh u-menupeh ʻal shulḥan ʻarukh + oraḥ ḥayim asher ḥiber yosef ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon + ... ṿe-himtsiʼam ... mosheh iserlish + author_sort: Israel Meir haKohen 18381933 Mishnah berurah Sefer Mishnah berurah + ṿehu perush yafeh umenupeh ʻal Shulḥan ʻarukh Oraḥ ḥayim asher ḥiber Yosef + Ḳaro ʻim ḥidushe dinim shehishmiṭ hagaʼon ṿehimtsiʼam Mosheh Iserlish + title_addl_t: + - 'Sefer Mishnah berurah : ṿe-hu perush yafeh u-menupeh ʻal Shulḥan ʻarukh Oraḥ + ḥayim asher ḥiber Yosef Ḳaro ... ʻim ḥidushe dinim she-hishmiṭ ha-gaʼon ... + ṿe-himtsiʼam ... Mosheh Iserlish /' + - Mishnah berurah + - "‏ספר משנה ברורה :‏ ‏והוא פירוש יפה ומנפה על שלחן ערוך ארח חיים אשר חבר יוסף קארו + ... עם חידושי דינים שהשמיט הגאון ... והמציאם משה איסרליש /‏" + - "‏משנה ברורה" + author_addl_t: + - Isserles, Moses ben Israel, + - Karo, Joseph ben Ephraim, + - "‏איסרליש, משה" + - "‏קארו, יוסף.‏" + title_added_entry_t: + - Oraḥ ḥayim + - Mishnah berurah. + - Sefer Mishnah berurah ha-menuḳad. + - Ish matsliaḥ. + - "‏אורח חיים" + - "‏משנה ברורה" + - "‏ספר משנה ברורה המנקד" + - "איש מצליח" + language_facet: + - Hebrew + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: 'kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin setʻae rŭpʻo' + author_vern_display: "김 홍신, 1947-" + subject_addl_t: + - Korea (South) Social conditions + - Social conditions + title_display: Ajikto kŭrŏk chŏrŏk sasimnikka + id: '94120425' + subject_geo_facet: + - Seoul (Korea) + - Korea (South) + subject_topic_facet: + - Women + lc_alpha_facet: + - HQ + subtitle_t: + - 'kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin setʻae rŭpʻo.' + - "강남 여인 과 신 팔불출 : 金 洪信 세태 르포" + author_t: + - Kim, Hong-sin, + - "김 홍신" + lc_1letter_facet: + - H - Social Sciences + marc_display: "01149cam + a2200301 a 4500 94120425 DLC20090123075708.0940328s1990 ko 000 0 kor d 94120425 W3800(CStRLIN)DCLP94-B5791CLASIACLASIADLCCStRLINDLC-Rlccopycata-ko---HQ1765.5.K46 1990$1880-01Kim, Hong-sin,1947-880-02Ajikto kŭrŏk chŏrŏk sasimnikka + :kangnam yŏin kwa sin pʻalbulchʻul : Kim Hong-sin + setʻae rŭpʻo.880-03Chʻopʻan.880-04Sŏul :Yŏwŏn Chʻulpʻanʼguk,1990(1992 printing)289 p. ;22 cm.WomenKorea (South)Social conditions.Seoul (Korea)Social + conditions.100-01/$1김 홍신,1947-245-02/$1아직도 그럭 저럭 사십니까 :강남 여인 과 신 팔불출 : 金 洪信 세태 르포.250-03/$1초판.260-04/$1서울 :女苑 出版局,1990(1992 printing)" + published_display: + - Sŏul + author_display: Kim, Hong-sin, 1947- + title_vern_display: "아직도 그럭 저럭 사십니까" + lc_callnum_display: + - HQ1765.5 .K46 1990 + title_t: + - 'Ajikto kŭrŏk chŏrŏk sasimnikka :' + - "아직도 그럭 저럭 사십니까" + pub_date: + - '1990' + pub_date_sort: 1990 + published_vern_display: + - "서울" + format: Book + subtitle_vern_display: "강남 여인 과 신 팔불출 : 金 洪信 세태 르포" + lc_b4cutter_facet: + - HQ1765.5 + material_type_display: + - 289 p. + subject_t: + - Women + - Seoul (Korea) + title_sort: 'ajikto kŭrŏk chŏrŏk sasimnikka :kangnam yŏin kwa sin pʻalbulchʻul + : kim hong-sin setʻae rŭpʻo' + author_sort: Kim Hongsin 1947 Ajikto kŭrŏk chŏrŏk sasimnikka kangnam yŏin kwa + sin pʻalbulchʻul Kim Hongsin setʻae rŭpʻo + title_addl_t: + - 'Ajikto kŭrŏk chŏrŏk sasimnikka : kangnam yŏin kwa sin pʻalbulchʻul : Kim + Hong-sin setʻae rŭpʻo.' + - "아직도 그럭 저럭 사십니까 : 강남 여인 과 신 팔불출 : 金 洪信 세태 르포" + language_facet: + - Korean + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: dar khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān + author_vern_display: "‏رجايى، فرهنگ ." + subject_addl_t: + - Iran + - Ethnic identity + - Politics and government + - Civilization + title_display: Maʻrakah-ʼi jahānʹbīnīʹhā + id: '96933325' + subject_geo_facet: + - Iran + subject_topic_facet: + - Political science + - Iranians + lc_alpha_facet: + - DS + title_series_t: + - Sipihr-i farhang va jāmiʻah ; 1 + - "‏سپهر فرهنگ و جامعه ؛‏ ‏1" + subtitle_t: + - dar khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān / + - "‏در خردورزى سياسى و هويت ما ايرانيان /‏" + author_t: + - Rajāyī, Farhang, + - "‏رجايى، فرهنگ ." + lc_1letter_facet: + - D - World History + marc_display: "01484cam + a2200349 a 4500 96933325 DLC20090121112252.0040115s1994 ir b 001 0 per 96933325 (CStRLIN)DCLN04-B274DLC-RDLC-Rlcodea-ir---DS274.R327 + 1994(3(4880-01Rajāyī, Farhang,1952 or 3-880-02Maʻrakah-ʼi jahānʹbīnīʹhā :dar + khiradvarzī-i siyāsī va huvīyat-i mā Īrānīyān /Farhang + Rajāʼī.880-03Chāp-i 1.880-04Tihrān :Iḥyā-yi Kitāb,1373 [1994 or 1995]323 p. ;22 + cm.880-05Sipihr-i farhang va jāmiʻah + ;1Includes bibliographical references + (p.287-320) and index.IranPolitics and + government.Political scienceIran.IraniansEthnic identity.IranCivilization.100-01/(4/r‏‏رجايى، فرهنگ .245-02/(3/r‏‏معركۀ + جهان‌بينىها :‏‏در خردورزى سياسى و هويت ما ايرانيان + /‏‏فرهنگ رجائى.250-03/(4/r‏‏چاپ 1.260-04/(3/r‏‏تهران :‏‏احياء كتاب،‏‏‪1373 [1994 or 1995]‬.440-05/(3/r‏‏سپهر فرهنگ و جامعه ؛‏‏1" + published_display: + - Tihrān + author_display: Rajāyī, Farhang, 1952 or 3- + title_vern_display: "‏معركۀ جهان‌بينىها :‏" + lc_callnum_display: + - DS274 .R327 1994 + title_t: + - 'Maʻrakah-ʼi jahānʹbīnīʹhā :' + - "‏معركۀ جهان‌بينىها :‏" + pub_date: + - '1994' + pub_date_sort: 1994 + published_vern_display: + - "‏تهران :‏" + format: Book + subtitle_vern_display: "‏در خردورزى سياسى و هويت ما ايرانيان /‏" + material_type_display: + - 323 p. + lc_b4cutter_facet: + - DS274 + subject_t: + - Political science + - Iranians + - Iran + title_sort: maʻrakah-ʼi jahānʹbīnīʹhā :dar khiradvarzī-i siyāsī va huvīyat-i + mā īrānīyān + author_sort: Rajāyī Farhang 1952 or 3 Maʻrakahʼi jahānʹbīnīʹhā dar khiradvarzīi + siyāsī va huvīyati mā Īrānīyān + title_addl_t: + - 'Maʻrakah-ʼi jahānʹbīnīʹhā : dar khiradvarzī-i siyāsī va huvīyat-i mā + Īrānīyān /' + - "‏معركۀ جهان‌بينىها :‏ ‏در خردورزى سياسى و هويت ما ايرانيان /‏" + language_facet: + - Persian + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - P - Language & Literature + author_t: + - Nārāyaṇa Paṇḍitācārya, + marc_display: "01588cam + a2200313 a 4500 2001417245DLC20090121030347.0011001m20009999ii 001 0 sano 2001417245I-San-2001-417245; 11Library of Congress -- + New Delhi Overseas OfficeRs200.00 (v. 1)DLCDLCDLCsanengkanlcodePK3798.N313S87 2000Nārāyaṇa Paṇḍitācārya,13th + cent.Sumadhvavijayaḥ /Nārāyaṇapaṇḍitācāryaviracitaḥ + ; Nārāyaṇapaṇḍitācāryaviracitabhāvaprakāśikā, Viśvapatitīrthaviracitapadārthadīpikodbodhikā, + Chalārīśeṣācāryaviracitamandopakāriṇī iti vyākhyānatrayasametaḥ ; + edited by A.B. Shyamachar and S.R. Pandurangi.Bangalore :Dvaita Vedanta Studies and Research Foundation,2000-v. <1 > ;25 cm.In Sanskrit; prefatory + matter in English and Kannada.Verse work on Madhva, 13th cent. Vaishnava + religious leader and exponent of dualistic philosophy; includes autocommentary + and two classical commentaries.Includes indexes.Madhva,13th cent.Poetry.Nārāyaṇa Paṇḍitācārya,17th cent.Bhāvaprakāśikā.2000.Viśvapatitīrtha,16th cent.Padārthadīpikodbodhikā.2000.Chalāriśeṣācārya.Mandopakāriṇī.2000.Shyamachar, A. B.Pandurangi, S. R." + published_display: + - Bangalore + author_display: Nārāyaṇa Paṇḍitācārya, 13th cent + lc_callnum_display: + - PK3798.N313 S87 2000 + title_t: + - Sumadhvavijayaḥ / + pub_date: + - '2000' + pub_date_sort: 2000 + format: Book + material_type_display: + - v. <1 > + lc_b4cutter_facet: + - PK3798.N313 + title_display: Sumadhvavijayaḥ + subject_addl_t: + - Poetry + subject_t: + - Madhva, 13th cent + title_sort: sumadhvavijayaḥ + id: '2001417245' + author_sort: Nārāyaṇa Paṇḍitācārya 13th cent Sumadhvavijayaḥ + title_addl_t: + - Sumadhvavijayaḥ / + subject_topic_facet: + - Madhva, 13th cent + author_addl_t: + - Nārāyaṇa Paṇḍitācārya, + - Viśvapatitīrtha, + - Chalāriśeṣācārya. + - Shyamachar, A. B. + - Pandurangi, S. R. + title_added_entry_t: + - Bhāvaprakāśikā + - Padārthadīpikodbodhikā + - Mandopakāriṇī + lc_alpha_facet: + - PK + language_facet: + - Sanskrit + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - U - Military Science + author_t: + - Wuld Mawlāy al-Zayn, Sayyid Muḥammad wuld Sayyid. + - "ولد مولاي الزين، سيد محمد ولد سيد" + marc_display: "01197cam + a22003014a 4500 2003546302DLC20090123173626.0030922s2003 mu 000 0 ara 2003546302(CStRLIN)DCLN03-B4961DLC-RDLC-RDLClcodeU21.2.W85 2003(3880-01Wuld Mawlāy + al-Zayn, Sayyid Muḥammad wuld Sayyid.880-02al-Ḥarb + fī al-alfīyah al-thālithah /bi-qalam Sayyid + Muḥammad wuld Sayyid wuld Mawlāy al-Zayn.880-03Nuwākshūṭ + :[s.n.],2003.128 p. ;20 cm.WarHistory21st + century.Military art and scienceHistory21st century.WarForecasting.Military art and scienceForecasting.Warfare, Conventional.Military weapons.100-01/(3/rولد مولاي الزين، سيد محمد ولد سيد.245-02/(3/rالحرب في الألفية الثالثة /بقلم سيد + محمد ولد سيد ولد مولاي الزين.260-03/(3/rنواكشوط + :[s.n.]،2003." + published_display: + - Nuwākshūṭ + title_vern_display: "الحرب في الألفية الثالثة" + author_display: Wuld Mawlāy al-Zayn, Sayyid Muḥammad wuld Sayyid + lc_callnum_display: + - U21.2 .W85 2003 + title_t: + - al-Ḥarb fī al-alfīyah al-thālithah / + - "الحرب في الألفية الثالثة" + pub_date: + - '2003' + pub_date_sort: 2003 + published_vern_display: + - "نواكشوط" + format: Book + author_vern_display: "ولد مولاي الزين، سيد محمد ولد سيد" + material_type_display: + - 128 p. + lc_b4cutter_facet: + - U21.2 + title_display: al-Ḥarb fī al-alfīyah al-thālithah + subject_addl_t: + - History 21st century + - Forecasting + subject_t: + - War + - Military art and science + - Warfare, Conventional + - Military weapons + subject_era_facet: + - 21st century + title_sort: ḥarb fī al-alfīyah al-thālithah + id: '2003546302' + author_sort: Wuld Mawlāy alZayn Sayyid Muḥammad wuld Sayyid Ḥarb fī alalfīyah + althālithah + title_addl_t: + - al-Ḥarb fī al-alfīyah al-thālithah / + - "الحرب في الألفية الثالثة" + subject_topic_facet: + - War + - Military art and science + - Warfare, Conventional + - Military weapons + lc_alpha_facet: + - U + language_facet: + - Arabic + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - D - World History + author_t: + - Bstan-ʼdzin-mkhas-grub, + marc_display: "00875cam + a22002534a 4500 2004310986DLC20090123105515.0040812s2004 cc a 000 0 tibo 2004310986Ch-Tib-2004-310986; 16Library of Congress -- + New Delhi Overseas OfficeRs154.00DLCDLCDLClcodea-cc-tiDS797.82.B663B75 2004Bstan-ʼdzin-mkhas-grub,1967-Bon-brgyaʼi lo rgyus lugs + gñis gsal baʼi me loṅ źes bya ba bźugs so /Bstan-ʼdzin-mkhas-grub + kyis brtsams.[Lha-sa :s.n.,2004]149 p. :ill. ;21 cm.In Tibetan.Historical account of Bon-brgya in + Tibet during 7th-9th cent.Bon-brgya (China)History.Bon-brgya (China)Kings and rulers." + published_display: + - Lha-sa + author_display: Bstan-ʼdzin-mkhas-grub, 1967- + lc_callnum_display: + - DS797.82.B663 B75 2004 + title_t: + - Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so / + pub_date: + - '2004' + pub_date_sort: 2004 + format: Book + material_type_display: + - 149 p. + lc_b4cutter_facet: + - DS797.82.B663 + title_display: Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs + so + subject_addl_t: + - History + - Kings and rulers + subject_t: + - Bon-brgya (China) + title_sort: bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs + so + id: '2004310986' + author_sort: Bstanʼdzinmkhasgrub 1967 Bonbrgyaʼi lo rgyus lugs gñis gsal baʼi me + loṅ źes bya ba bźugs so + title_addl_t: + - Bon-brgyaʼi lo rgyus lugs gñis gsal baʼi me loṅ źes bya ba bźugs so / + subject_geo_facet: + - Bon-brgya (China) + lc_alpha_facet: + - DS + language_facet: + - Tibetan + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: min jald al-dhāt ilá ṣidq al-sharḥ + author_vern_display: "أبو الخير، علي عبد الحميد" + subject_addl_t: + - 20th century + - 21st century + title_display: Thuqūb fī ʻaql al-ummah + subject_era_facet: + - 20th century + - 21st century + id: '2005461726' + subject_topic_facet: + - Islam + lc_alpha_facet: + - BP + subtitle_t: + - min jald al-dhāt ilá ṣidq al-sharḥ. + - "من جلد الذات إلى صدق الشرح" + author_t: + - Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd. + - "أبو الخير، علي عبد الحميد" + lc_1letter_facet: + - B - Philosophy, Psychology, Religion + marc_display: "01127nam + a2200277 a 4500 2005461726DLC20090126155550.0070712s2006 ua 000 0 ara d 2005461726(CStRLIN)DCLN07-B4171EMUEMUCUYDLC-RlccopycatlcodeBP161.3.A27 2006(3880-01Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd.880-02Thuqūb fī ʻaql al-ummah :min jald + al-dhāt ilá ṣidq al-sharḥ.880-03al-Ṭabʻah + 1.880-04al-Maʻādī, al-Qāhirah :Markaz Yāfā lil-Dirāsāt wa-al-Abḥāth,2006.85 p. ;24 cm.Islam20th century.Islam21st century.100-01/(3/rأبو + الخير، علي عبد الحميد.245-02/(3/rثقوب + في عقل الأمة :من جلد الذات إلى صدق الشرح.250-03/(3/rالطبعة 1.260-04/(3/rالمعادي، القاهرة + :مركز يافا للدراسات والأبحاث،2006." + published_display: + - al-Maʻādī, al-Qāhirah + author_display: Abū al-Khayr, ʻAlī ʻAbd al-Ḥamīd + title_vern_display: "ثقوب في عقل الأمة" + lc_callnum_display: + - BP161.3 .A27 2006 + title_t: + - 'Thuqūb fī ʻaql al-ummah :' + - "ثقوب في عقل الأمة" + pub_date: + - '2006' + pub_date_sort: 2006 + published_vern_display: + - "المعادي، القاهرة" + format: Book + subtitle_vern_display: "من جلد الذات إلى صدق الشرح" + lc_b4cutter_facet: + - BP161.3 + material_type_display: + - 85 p. + subject_t: + - Islam + title_sort: thuqūb fī ʻaql al-ummah :min jald al-dhāt ilá ṣidq al-sharḥ + author_sort: Abū alKhayr ʻAlī ʻAbd alḤamīd Thuqūb fī ʻaql alummah min jald + aldhāt ilá ṣidq alsharḥ + title_addl_t: + - 'Thuqūb fī ʻaql al-ummah : min jald al-dhāt ilá ṣidq al-sharḥ.' + - "ثقوب في عقل الأمة : من جلد الذات إلى صدق الشرح" + language_facet: + - Arabic + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - H - Social Sciences + marc_display: "03730cam + a22006257a 4500 2005553155DLC20090121104139.0051007m19659999is | l 000 0 heb 2005553155(CStRLIN)DCLH05-B11400DLC-RDLC-Ra-is---HG8695.2.B57 1962(2880-01[Bituaḥ u-viṭaḥon sotsyali].[Israel ,1962-<2001>]items 1-<13> of <13> + ;22-25 cm.[1] Megamot be-mesheḳ ha-biṭuaḥ + ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat 1965. 1966. 52 leaves ; 25 cm. -- + [2] Biṭuaḥ ziḳnah : meʻudkan le-Yuli 2001. 24 p. ; 22 cm. -- [3] Biṭuaḥ sheʼirim + : meʻudkan le-Yuli 2001. 2001. 24 p. ; 22 cm. -- [4] Gimlah le-yeled nekheh : + meʻudkan le-Yuni 2001. 2001. 16 p. 22 cm. -- [5] Biṭuaḥ imahut : meʻudkan le-Yuli + 2002. 24 p. ; 22 cm. -- [6] Biṭuaḥ siʻud : meʻudkan le-Februʼar 2001. 2001. + 12 p. ; 22 cm. -- [7] Medaʻ le-ʻoved ʻatsmaʼi : meʻudkan le-Februʼar 2000. 2000. + 18 p. ; 22 cm. -- [8] Biṭuaḥ nifgeʻe teʻunot. 1999. 1 folded leaflet ; 22 cm. + -- [9] ha-Ḳeren le-nifgeʻe ṭeror -- [10] Teluyim be-nifgeʻe ʻavodah : meʻudkan + le-Februʼar 2001. 2001. 24 p. ; 22 cm. -- [11] Sherut miluʼim : meʻudkan le-Yuli + 2002. 2002. 16 p. ; 22 cm. -- [12] Ḳitsbah le-sherutim meyuhadim le-nekhim ḳashim + : meʻudkan le-Detsember 2002. 2002. 16 p. ; 22 cm. -- [13] Mumḥim benleʼumiyim + ʻal medukat ha-biṭaḥon ha-sotsyali / Yitsḥaḳ Ḳanev. 1962. 10 p. ; 24 cm.InsuranceIsrael.Social securityIsrael.Family allowancesIsrael.Maternity insuranceIsrael.Accident insuranceIsrael.Old ageEconomic aspects.IsraelSocial policy.IsraelArmed + ForcesReservesPay, + allowances, etc.Law and legislationSocial securityLaw and legislationIsrael.880-02Megamot be-mesheḳ ha-biṭuaḥ ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat + 1965.880-03Biṭuaḥ ziḳnah.880-04Biṭuaḥ sheʼirim.880-05Gimlah le-yeled + nekheh.880-06Biṭuaḥ imahut.880-07Biṭuaḥ siʻud.880-08Medaʻ le-ʻoved + ʻatsmaʼi.880-09Biṭuaḥ nifgeʻe teʻunot.880-10Ḳeren le-nifgeʻe ṭeror.880-11Teluyim + be-nifgeʻe ʻavodah.880-12Sherut miluʼim.880-13Ḳitsbah le-sherutim meyuḥadim le-nekhim ḳashim.880-14Mumḥim benleʼumiyim ʻal medukat ha-biṭaḥon ha-sotsyali.245-01/(2/r[ביטוח וביטחון סוציאלי].740-02/(2/rמגמות + במשק הביטוח והפיקוח על עסקי ביטוח בשנת 1965.740-03/(2/rביטוח זקנה.740-04/(2/rביטוח + שאירים.740-05/(2/rגמלה לילד נכה.740-06/(2/rביטוח אמהות.740-07/(2/rביטוח + סיעוד.740-08/(2/rמדע לעובד עצמאי.740-09/(2/rביטוח נפגעי תעונות.740-10/(2/rקרן + לנפגעי טרור.740-11/(2/rתלויים בניפגעי תעונה.740-12/(2/rשירות מילואים.740-13/(2/rקצבה + לשירותים מיוחדים לנכים קשים.740-14/(2/rמומחים + בינלאומיים על מדוכת הביטחון הסוציאלי." + published_display: + - Israel + title_vern_display: "ביטוח וביטחון סוציאלי" + lc_callnum_display: + - HG8695.2 .B57 1962 + title_t: + - "[Bituaḥ u-viṭaḥon sotsyali]." + - "ביטוח וביטחון סוציאלי" + pub_date: + - '1962' + pub_date_sort: 1962 + format: Book + material_type_display: + - items 1-<13> of <13> + lc_b4cutter_facet: + - HG8695.2 + title_display: Bituaḥ u-viṭaḥon sotsyali + subject_addl_t: + - Israel + - Economic aspects + - Law and legislation Israel + - Social policy + - Armed Forces Reserves Pay, allowances, etc. Law and legislation + subject_t: + - Insurance + - Social security + - Family allowances + - Maternity insurance + - Accident insurance + - Old age + - Israel + title_sort: bituaḥ u-viṭaḥon sotsyali + id: '2005553155' + author_sort: "\U0010FFFF Bituaḥ uviṭaḥon sotsyali" + title_addl_t: + - "[Bituaḥ u-viṭaḥon sotsyali]." + - "ביטוח וביטחון סוציאלי" + subject_geo_facet: + - Israel + subject_topic_facet: + - Insurance + - Social security + - Family allowances + - Maternity insurance + - Accident insurance + - Old age + title_added_entry_t: + - Megamot be-mesheḳ ha-biṭuaḥ ṿeha-piḳuaḥ ʻal ʻisḳe biṭuaḥ bi-shenat 1965. + - Biṭuaḥ ziḳnah. + - Biṭuaḥ sheʼirim. + - Gimlah le-yeled nekheh. + - Biṭuaḥ imahut. + - Biṭuaḥ siʻud. + - Medaʻ le-ʻoved ʻatsmaʼi. + - Biṭuaḥ nifgeʻe teʻunot. + - Ḳeren le-nifgeʻe ṭeror. + - Teluyim be-nifgeʻe ʻavodah. + - Sherut miluʼim. + - Ḳitsbah le-sherutim meyuḥadim le-nekhim ḳashim. + - Mumḥim benleʼumiyim ʻal medukat ha-biṭaḥon ha-sotsyali. + - "מגמות במשק הביטוח והפיקוח על עסקי ביטוח בשנת 1965" + - "ביטוח זקנה" + - "ביטוח שאירים" + - "גמלה לילד נכה" + - "ביטוח אמהות" + - "ביטוח סיעוד" + - "מדע לעובד עצמאי" + - "ביטוח נפגעי תעונות" + - "קרן לנפגעי טרור" + - "תלויים בניפגעי תעונה" + - "שירות מילואים" + - "קצבה לשירותים מיוחדים לנכים קשים" + - "מומחים בינלאומיים על מדוכת הביטחון הסוציאלי" + lc_alpha_facet: + - HG + language_facet: + - Hebrew + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - E - History of the Americas (General) + author_t: + - Hearth, Amy Hill, + marc_display: "01490cam + a2200361 a 4500 2007020969DLC20090126093447.0070522s2008 nyua b 000 0beng 20070209699780743297790 (alk. paper)0743297792 (alk. paper)(OCoLC)ocn137335139(OCoLC)137335139DLCDLCBAKERBTCTAYDXCPC#PDLCn-us-njE99.D2H437 2008974.004/97345B22Hearth, Amy Hill,1958-\"Strong Medicine speaks\" + :a Native American elder has her say : an oral + history /Amy Hill Hearth.1st Atria Books hardcover + ed.New York :Atria Books,2008.xvii, 267 p. :ill. ;23 cm.Includes bibliographical references (p. 261-266).Strong Medicine,1922-Delaware womenNew JerseyBridgetonBiography.Indian women shamansNew JerseyBridgetonBiography.Delaware IndiansNew + JerseyBridgetonBiography.Delaware IndiansNew JerseyBridgetonHistory.Strong Medicine,1922-Table of contents onlyhttp://www.loc.gov/catdir/toc/ecip0719/2007020969.htmlPublisher descriptionhttp://www.loc.gov/catdir/enhancements/fy0808/2007020969-d.htmlSample texthttp://www.loc.gov/catdir/enhancements/fy0808/2007020969-s.html" + published_display: + - New York + author_display: Hearth, Amy Hill, 1958- + lc_callnum_display: + - E99.D2 H437 2008 + title_t: + - "\"Strong Medicine speaks\" :" + pub_date: + - '2008' + pub_date_sort: 2008 + subtitle_display: 'a Native American elder has her say : an oral history' + format: Book + url_suppl_display: + - http://www.loc.gov/catdir/toc/ecip0719/2007020969.html + - http://www.loc.gov/catdir/enhancements/fy0808/2007020969-d.html + - http://www.loc.gov/catdir/enhancements/fy0808/2007020969-s.html + material_type_display: + - xvii, 267 p. + lc_b4cutter_facet: + - E99.D2 + title_display: "\"Strong Medicine speaks\"" + subject_addl_t: + - New Jersey Bridgeton Biography + - New Jersey Bridgeton History + subject_t: + - Strong Medicine, 1922- + - Delaware women + - Indian women shamans + - Delaware Indians + title_sort: "\"strong medicine speaks\" :a native american elder has her say : an + oral history" + isbn_t: + - '9780743297790' + - 0743297792 + id: '2007020969' + author_sort: Hearth Amy Hill 1958 Strong Medicine speaks a Native American elder + has her say an oral history + title_addl_t: + - "\"Strong Medicine speaks\" : a Native American elder has her say : an oral history + /" + subject_geo_facet: + - New Jersey + - Bridgeton + subject_topic_facet: + - Strong Medicine, 1922- + - Delaware women + - Indian women shamans + - Delaware Indians + author_addl_t: + - Strong Medicine, + lc_alpha_facet: + - E + language_facet: + - English + subtitle_t: + - 'a Native American elder has her say : an oral history /' + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - B - Philosophy, Psychology, Religion + author_t: + - Dkon-mchog-rgya-mtsho, Ra-se, + marc_display: "01099cam + a22002534a 4500 2008305903DLC20090122162012.0080602s2008 ii a 000 0 tibo 2008305903I-Tib-2008-305903; 01; + 05-01Library of Congress -- New Delhi Overseas OfficeRs400.00DLCDLClcodeBQ7684.4.D564 2008Dkon-mchog-rgya-mtsho,Ra-se,1968-Dris lan don gcig ma :dam paʼi chos + dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan Dgoṅs-gcig + smra baʼi mdzes rgyan źes bya ba bźugs so /Dwags-po + Spyan-sṅa-ba Dkon-mchog-rgya-mtshos brtsams.Par theṅ 2.[ʼPhags-yul Dhe-ra-dhun + :Sroṅ-btsan dpe mdzod khaṅ nas grems spel byas,2008]208 p. :1 col. ill. ;24 cm.In Tibetan.On the Dgoṅs-gcig teaching of Drikung + Kagyudpa sect in questions/answers format.ʼBri-guṅ-pa (Sect)DoctrinesMiscellanea.Sroṅ-btsan dpe mdzod khaṅ." + published_display: + - "ʼPhags-yul Dhe-ra-dhun" + author_display: Dkon-mchog-rgya-mtsho, Ra-se, 1968- + lc_callnum_display: + - BQ7684.4 .D564 2008 + title_t: + - 'Dris lan don gcig ma :' + pub_date: + - '2008' + pub_date_sort: 2008 + subtitle_display: dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho + ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so + format: Book + material_type_display: + - 208 p. + lc_b4cutter_facet: + - BQ7684.4 + title_display: Dris lan don gcig ma + subject_addl_t: + - Doctrines Miscellanea + subject_t: + - "ʼBri-guṅ-pa (Sect)" + title_sort: dris lan don gcig ma :dam paʼi chos dgoṅs pa gcig paʼi dri ba legs + bśad bsu baʼi pho ñaʼi dris lan dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba + bźugs so + id: '2008305903' + author_sort: Dkonmchogrgyamtsho Rase 1968 Dris lan don gcig ma dam paʼi chos dgoṅs + pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan Dgoṅsgcig smra baʼi + mdzes rgyan źes bya ba bźugs so + title_addl_t: + - 'Dris lan don gcig ma : dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu + baʼi pho ñaʼi dris lan Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so + /' + subject_topic_facet: + - "ʼBri-guṅ-pa (Sect)" + author_addl_t: + - Sroṅ-btsan dpe mdzod khaṅ. + lc_alpha_facet: + - BQ + language_facet: + - Tibetan + subtitle_t: + - dam paʼi chos dgoṅs pa gcig paʼi dri ba legs bśad bsu baʼi pho ñaʼi dris lan + Dgoṅs-gcig smra baʼi mdzes rgyan źes bya ba bźugs so / + timestamp: '2014-02-03T18:42:53.056Z' +- subtitle_display: a supplication to the noble Lama Mahaguru Padmasambhava + subject_addl_t: + - Prayers and devotions + - India Prayers and devotions + title_display: Pluvial nectar of blessings + id: '2008308175' + isbn_t: + - '8186470336' + subject_geo_facet: + - India + subject_topic_facet: + - Padma Sambhava, ca. 717-ca. 762 + - Priests, Buddhist + lc_alpha_facet: + - BQ + subtitle_t: + - a supplication to the noble Lama Mahaguru Padmasambhava / + author_t: + - Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V, + lc_1letter_facet: + - B - Philosophy, Psychology, Religion + marc_display: "01582cam + a2200325 a 4500 2008308175DLC20090123091532.0080718s2002 ii b 000 0 eng 20083081758186470336I-E-2008-308175; 59-13Library of Congress -- + New Delhi Overseas OfficeRs185.00DLCDLCengtibtiblcodea-ii---BQ5593.P3N3313 + 2002Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho,Dalai + Lama V,1617-1682.Rje btsun bla ma ma hā + gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs bdud rtsiʼi char rgyun.English & TibetanPluvial nectar of blessings :a supplication to the noble Lama Mahaguru Padmasambhava /by His Holiness Ngag-dbang-blo-bzang-rgya-mtsho, the fifth Dalai Lama + ; translated from the Tibetan with commentary by Dennis Cordell.Dharamsala :Library of Tibetan Works and Archives,2002.viii, 101 p. ;22 cm.English and Tibetan(Tibetan + also in roman).Includes bibliographical references (p. [97]-101).Padma Sambhava,ca. 717-ca. 762Prayers and devotions.Priests, BuddhistIndiaPrayers and devotions.Cordell, Dennis.Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho,Dalai Lama V,1617-1682Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa + byin rlabs bdud rtsiʼi char rgyun.2002Library of Tibetan Works + & Archives." + published_display: + - Dharamsala + author_display: Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V, 1617-1682 + lc_callnum_display: + - BQ5593.P3 N3313 2002 + title_t: + - 'Pluvial nectar of blessings :' + pub_date: + - '2002' + pub_date_sort: 2002 + format: Book + lc_b4cutter_facet: + - BQ5593.P3 + material_type_display: + - viii, 101 p. + subject_t: + - Padma Sambhava, ca. 717-ca. 762 + - Priests, Buddhist + title_sort: pluvial nectar of blessings :a supplication to the noble lama mahaguru + padmasambhava + author_sort: Ṅagdbaṅblobzaṅrgyamtsho Dalai Lama V 16171682 Rje btsun bla ma ma + hā gu ru Padmaʼbyuṅgnas la gsol ba ʼdebs pa byin rlabs bdud rtsiʼi char rgyun + English Tibetan Pluvial nectar of blessings a supplication to the noble Lama + Mahaguru Padmasambhava + title_addl_t: + - 'Pluvial nectar of blessings : a supplication to the noble Lama Mahaguru Padmasambhava + /' + - Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs + bdud rtsiʼi char rgyun. English & Tibetan + author_addl_t: + - Cordell, Dennis. + - Ṅag-dbaṅ-blo-bzaṅ-rgya-mtsho, Dalai Lama V, + - Library of Tibetan Works & Archives. + title_added_entry_t: + - Rje btsun bla ma ma hā gu ru Padma-ʼbyuṅ-gnas la gsol ba ʼdebs pa byin rlabs + bdud rtsiʼi char rgyun + language_facet: + - English + - Tibetan + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - B - Philosophy, Psychology, Religion + author_t: + - Bstan-ʼdzin-rgya-mtsho, Dalai Lama XIV, + marc_display: "01221cam + a22002534a 4500 2008308201DLC20090122162646.0080721s2008 ii 000 0 tibo 2008308201I-Tib-2008-308201; 27Library of Congress -- + New Delhi Overseas OfficeRs150.00DLCDLClcodeBQ4036.B78 2008Bstan-ʼdzin-rgya-mtsho,Dalai Lama XIV,1935-Bod kyi naṅ chos ṅo sprod + sñiṅ bsdus :goṅ sa skyabs mgon chen po mchog + nas deṅ dus Bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs so.Par theṅs 2.Dharamsala, H.P. :Sku-bcar Rnam-par-rgyal-ba Phan-bde-legs-bśad-gliṅ Grwa-tshaṅ gi + Śes-yon Lhan-tshogs,2008.4, iv, 254 p. ;23 cm.In Tibetan.Series of lectures delivered by His + Holiness the Dali Lama to younger generation of Tibetan studying in different + colleges and universities in India and students from schools in Dharamsala on + the introduction of Buddhist teaching.BuddhismEssence, + genius, nature.Rnam-rgyal Grwa-tshaṅ.Śes-yon + Lhan-tshogs." + published_display: + - Dharamsala, H.P. + author_display: Bstan-ʼdzin-rgya-mtsho, Dalai Lama XIV, 1935- + lc_callnum_display: + - BQ4036 .B78 2008 + title_t: + - 'Bod kyi naṅ chos ṅo sprod sñiṅ bsdus :' + pub_date: + - '2008' + pub_date_sort: 2008 + subtitle_display: goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon + rnams la naṅ chos ṅo sprod bstsal ba bźugs so + format: Book + material_type_display: + - 4, iv, 254 p. + lc_b4cutter_facet: + - BQ4036 + title_display: Bod kyi naṅ chos ṅo sprod sñiṅ bsdus + subject_addl_t: + - Essence, genius, nature + subject_t: + - Buddhism + title_sort: bod kyi naṅ chos ṅo sprod sñiṅ bsdus :goṅ sa skyabs mgon chen po + mchog nas deṅ dus bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs + so + id: '2008308201' + author_sort: Bstanʼdzinrgyamtsho Dalai Lama XIV 1935 Bod kyi naṅ chos ṅo sprod + sñiṅ bsdus goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon + rnams la naṅ chos ṅo sprod bstsal ba bźugs so + title_addl_t: + - 'Bod kyi naṅ chos ṅo sprod sñiṅ bsdus : goṅ sa skyabs mgon chen po mchog + nas deṅ dus Bod rigs na gźon rnams la naṅ chos ṅo sprod bstsal ba bźugs so.' + subject_topic_facet: + - Buddhism + author_addl_t: + - Rnam-rgyal Grwa-tshaṅ. Śes-yon Lhan-tshogs. + lc_alpha_facet: + - BQ + language_facet: + - Tibetan + subtitle_t: + - goṅ sa skyabs mgon chen po mchog nas deṅ dus Bod rigs na gźon rnams la naṅ + chos ṅo sprod bstsal ba bźugs so. + timestamp: '2014-02-03T18:42:53.056Z' +- lc_1letter_facet: + - D - World History + author_t: + - Thub-bstan-yar-ʼphel, Rnam-grwa. + marc_display: "01111cam + a2200289 a 4500 2008308202DLC20090121092141.0080721s2005 ii b b 000 0 tibo 2008308202I-Tib-2008-308202; 16Library of Congress -- + New Delhi Overseas OfficeRs150.00DLCDLClcodea-cc-tiDS785.T475 + 2005Thub-bstan-yar-ʼphel,Rnam-grwa.Bod gaṅs can gyi rgyal + rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me loṅ źes bya ba bźugs + so /Rnam-grwa Thub-bstan-yar-ʼphel.Rgyal rabs dris lan brgya + pa rab gsal śel gyi me loṅ1st ed.Dharamsala, H.P. :Sku-bcar Rnam-rgyal Grwa-tshaṅ nas ʼgrems spel źus,2005.a-e, iv, ii, 407 p. :maps + ;23 cm.In Tibetan.History of Tibet in questions/answers + format.Includes bibliographical references (p. 406-407).Tibet (China)HistoryMiscellanea.Rnam-rgyal Grwa-tshaṅ." + published_display: + - Dharamsala, H.P. + author_display: Thub-bstan-yar-ʼphel, Rnam-grwa + lc_callnum_display: + - DS785 .T475 2005 + title_t: + - Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me + loṅ źes bya ba bźugs so / + pub_date: + - '2005' + pub_date_sort: 2005 + format: Book + material_type_display: + - a-e, iv, ii, 407 p. + lc_b4cutter_facet: + - DS785 + title_display: Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal + śel gyi me loṅ źes bya ba bźugs so + subject_addl_t: + - History Miscellanea + subject_t: + - Tibet (China) + title_sort: bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel + gyi me loṅ źes bya ba bźugs so + id: '2008308202' + author_sort: Thubbstanyarʼphel Rnamgrwa Bod gaṅs can gyi rgyal rabs mdor bsdus + dris lan brgya pa rab gsal śel gyi me loṅ źes bya ba bźugs so + title_addl_t: + - Bod gaṅs can gyi rgyal rabs mdor bsdus dris lan brgya pa rab gsal śel gyi me + loṅ źes bya ba bźugs so / + - Rgyal rabs dris lan brgya pa rab gsal śel gyi me loṅ + subject_geo_facet: + - Tibet (China) + author_addl_t: + - Rnam-rgyal Grwa-tshaṅ. + lc_alpha_facet: + - DS + language_facet: + - Tibetan + timestamp: '2014-02-03T18:42:53.056Z' +- marc_display: "01127cam + a22002895a 4500 2008308478DLC20090123131001.0080728s2007 ii 000 0 tibo 2008308478I-Tib-2008-308478; 23Library of Congress -- + New Delhi Overseas OfficeDLCDLClcodea-cc-tia-ii---Śes yon.1st ed.Dharamsala, Distt. Kangra, H.P. :Skabs bźi paʼi ʼbriṅ rim dge ʼos slob thon pa thun moṅ gis ʼgrems + spel źus,2007.xii, 419 p. ;22 cm.In Tibetan.Copyright: College for Higher Tibetan + Studies.Contributed articles reflecting new educational policy for development + of Tibetan education system in exile Tibetan community and Tibetan language teaching + method etc.Education and stateChinaTibet.TibetansEducationIndia.Tibetan languageStudy and teachingIndia.TeachingMethodology.Sa-rā Bod kyi mtho rim + slob gñer khaṅ." + published_display: + - Dharamsala, Distt. Kangra, H.P. + title_t: + - Śes yon. + pub_date: + - '2007' + pub_date_sort: 2007 + format: Book + title_display: Śes yon + subject_addl_t: + - China Tibet + - Education India + - Study and teaching India + - Methodology + - Education Policy + material_type_display: + - xii, 419 p. + subject_t: + - Education and state + - Tibetans + - Tibetan language + - Teaching + title_sort: śes yon + id: '2008308478' + author_sort: "\U0010FFFF Śes yon" + title_addl_t: + - Śes yon. + subject_geo_facet: + - China + - Tibet + - India + subject_topic_facet: + - Education and state + - Tibetans + - Tibetan language + - Teaching + author_addl_t: + - Sa-rā Bod kyi mtho rim slob gñer khaṅ. + language_facet: + - Tibetan + timestamp: '2014-02-03T18:42:53.056Z' +- author_vern_display: "吉田一, 1934-" + subject_addl_t: + - 20th century History and criticism + - History and criticism + - Japan History + title_display: Kubo Sakae 'Kazanbaichi' o yomu + subject_era_facet: + - 20th century + id: '2008543486' + isbn_t: + - '9784588460050' + - '4588460056' + subject_geo_facet: + - Japan + subject_topic_facet: + - Kubo, Sakae, 1901-1958 + - Japanese drama + - Political plays, Japanese + - Theater + lc_alpha_facet: + - PL + author_t: + - Yoshida, Hajime, + - "吉田一" + lc_1letter_facet: + - P - Language & Literature + marc_display: "01230nam + a22003494a 4500 2008543486DLC20090126101044.0081217s1997 ja 000 0 jpn d 2008543486 200031424797845884600504588460056(OCoLC)ocm40868083UIUUIUTRCLSOCLCGDLClccopycata-ja---PL832.U25Z96 1997$1880-01Yoshida, + Hajime,1934-880-02Kubo Sakae 'Kazanbaichi' o yomu /Yoshida + Hajime cho.880-03Shohan.880-04Tōkyō :Hōsei Daigaku Shuppankyoku,1997.480 p. ;19 cm.880-05Kubo, Sakae,1901-1958.Kazanbaichi.Japanese drama20th + centuryHistory and criticism.Political plays, JapaneseHistory and criticism.TheaterJapanHistory.100-01/$1吉田一,1934-245-02/$1久保栄「火山灰地」を読む /吉田一著.250-03/$1初版.260-04/$1東京 :法政大学出版局,1997.600-05/$1久保栄,1901-1958.Kazanbaichi." + published_display: + - Tōkyō + author_display: Yoshida, Hajime, 1934- + title_vern_display: "久保栄「火山灰地」を読む" + lc_callnum_display: + - PL832.U25 Z96 1997 + title_t: + - Kubo Sakae 'Kazanbaichi' o yomu / + - "久保栄「火山灰地」を読む" + pub_date: + - '1997' + pub_date_sort: 1997 + published_vern_display: + - "東京" + format: Book + lc_b4cutter_facet: + - PL832.U25 + material_type_display: + - 480 p. + subject_t: + - Kubo, Sakae, 1901-1958. Kazanbaichi + - Japanese drama + - Political plays, Japanese + - Theater + - "久保栄, 1901-1958. Kazanbaichi" + title_sort: kubo sakae 'kazanbaichi' o yomu + author_sort: Yoshida Hajime 1934 Kubo Sakae Kazanbaichi o yomu + title_addl_t: + - Kubo Sakae 'Kazanbaichi' o yomu / + - "久保栄「火山灰地」を読む" + language_facet: + - Japanese + timestamp: '2014-02-03T18:42:53.056Z' +- author_vern_display: "林行止" + subject_addl_t: + - 1990- + - 2005-2015 + - Economic conditions 1997- + - Politics and government 1997- + title_display: Ci an zhou bian + subject_era_facet: + - 1990- + - 2005-2015 + - 1997- + id: '2009373513' + isbn_t: + - '9789573908678' + - '9573908670' + subject_geo_facet: + - Economic history + - World politics + - Hong Kong (China) + lc_alpha_facet: + - HC + title_series_t: + - Lin Xingzhi zuo pin ji ; 51 + - "林行止作品集 ; 51" + author_t: + - Lin, Xingzhi. + - "林行止" + lc_1letter_facet: + - H - Social Sciences + marc_display: "01213nam + a22003614a 4500 2009373513DLC20090121153231.0090114s2008 ch 000 0 chi d 200937351397895739086789573908670(OCoLC)ocn268619391HUAHUAHKPDLClccopycata-cc-hkHC59.15.L533 2008$1880-01Lin, + Xingzhi.880-02Ci an zhou bian /Lin Xingzhi zhu.880-03Chu ban.880-04Taibei Xian Banqiao Shi :Yuan jing + chu ban shi ye you xian gong si,2008.5, 300 p. ;21 cm.880-05Lin Xingzhi zuo + pin ji ;51Economic history1990-World politics2005-2015.Hong Kong (China)Economic conditions1997-Hong Kong (China)Politics and government1997-100-01/$1林行止.245-02/$1次按驟變 /林行止著.250-03/$1初版.260-04/$1臺北縣板橋市 :遠景出版事業有限公司,2008.490-05/$1林行止作品集 ;51" + published_display: + - Taibei Xian Banqiao Shi + author_display: Lin, Xingzhi + title_vern_display: "次按驟變" + lc_callnum_display: + - HC59.15 .L533 2008 + title_t: + - Ci an zhou bian / + - "次按驟變" + pub_date: + - '2008' + pub_date_sort: 2008 + published_vern_display: + - "臺北縣板橋市" + format: Book + lc_b4cutter_facet: + - HC59.15 + material_type_display: + - 5, 300 p. + subject_t: + - Economic history + - World politics + - Hong Kong (China) + title_sort: ci an zhou bian + author_sort: Lin Xingzhi Ci an zhou bian + title_addl_t: + - Ci an zhou bian / + - "次按驟變" + language_facet: + - Chinese + timestamp: '2014-02-03T18:42:53.056Z' From f5fd73551aa11edf1554633dd9a2b7b1387b1c6e Mon Sep 17 00:00:00 2001 From: Chris Colvard Date: Fri, 2 Jul 2021 11:50:34 -0400 Subject: [PATCH 3/3] Remove all references to internal test hyrax --- Rakefile | 1 - bin/rails | 2 +- docker-compose.yml | 6 ++++-- spec/internal_test_hyrax | 1 - spec/rails_helper.rb | 13 ------------- spec/spec_helper.rb | 12 ------------ 6 files changed, 5 insertions(+), 30 deletions(-) delete mode 160000 spec/internal_test_hyrax diff --git a/Rakefile b/Rakefile index 1d1d232..0e7ddb5 100644 --- a/Rakefile +++ b/Rakefile @@ -15,7 +15,6 @@ RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_files.include('lib/**/*.rb') end -APP_RAKEFILE = File.expand_path("spec/internal_test_hyrax/Rakefile", __dir__) load 'rails/tasks/engine.rake' load 'rails/tasks/statistics.rake' diff --git a/bin/rails b/bin/rails index a98efc9..ddffbe3 100644 --- a/bin/rails +++ b/bin/rails @@ -5,7 +5,7 @@ ENGINE_ROOT = File.expand_path('..', __dir__) ENGINE_PATH = File.expand_path('../lib/hyrax/orcid/engine', __dir__) -APP_PATH = File.expand_path('../spec/internal_test_hyrax/config/application', __dir__) +# APP_PATH set to /app/samvera/hyrax-webapp in docker environment # Set up gems listed in the Gemfile. ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) diff --git a/docker-compose.yml b/docker-compose.yml index c6fef9c..8f90608 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,8 +5,8 @@ services: build: context: . target: hyrax-orcid-dev - # args: - # - EXTRA_APK_PACKAGES=git less + args: + - HYRAX_IMAGE_VERSION=latest #image: ghcr.io/samvera/dassie stdin_open: true tty: true @@ -112,6 +112,8 @@ services: build: context: . target: hyrax-orcid-dev-worker + args: + - HYRAX_IMAGE_VERSION=latest #image: ghcr.io/samvera/dassie-worker env_file: - .env diff --git a/spec/internal_test_hyrax b/spec/internal_test_hyrax deleted file mode 160000 index 99b7dc3..0000000 --- a/spec/internal_test_hyrax +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 99b7dc3078b1d627ddf5ef87ecb54662d361cec0 diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 2327cd6..5413660 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -2,9 +2,7 @@ # This file is copied to spec/ when you run 'rails generate rspec:install' require 'spec_helper' -require File.expand_path('internal_test_hyrax/spec/rails_helper.rb', __dir__) ENV['RAILS_ENV'] ||= 'test' -require File.expand_path('internal_test_hyrax/config/environment', __dir__) # Prevent database truncation if the environment is production abort("The Rails environment is running in production mode!") if Rails.env.production? @@ -136,17 +134,6 @@ config.include Devise::TestHelpers, type: :controller end - # Internal Tests to skip - # Make sure this around is declared first so it runs before other around callbacks - skip_internal_test_list = ['./spec/internal_test_hyrax/spec/features/create_generic_work_spec.rb'] - config.around do |example| - if skip_internal_test_list.include? example.file_path - skip "Internal test skipped." - else - example.run - end - end - # Configuration for feature tests config.include Features::SessionHelpers, type: :feature config.include Warden::Test::Helpers, type: :feature diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 3fbb69c..6673fda 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -22,16 +22,4 @@ end config.shared_context_metadata_behavior = :apply_to_host_groups - - # Look for an overriding spec file and skip if it exists - config.around do |example| - if example.file_path.starts_with?('./spec/internal_test_hyrax') && File.exist?(example.file_path.sub('./spec/internal_test_hyrax', '.')) - skip "Override exists of this test file in engine." - else - example.run - end - end end - -require File.expand_path('internal_test_hyrax/spec/rails_helper.rb', __dir__) -require File.expand_path('internal_test_hyrax/spec/spec_helper.rb', __dir__)