Optimize single-target sortmap - keep record order PAZ-1017
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 27 Jul 2015 13:22:10 +0000 (15:22 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 27 Jul 2015 13:22:10 +0000 (15:22 +0200)
12 files changed:
src/client.c
src/client.h
src/reclists.c
src/session.c
src/session.h
test/test_solr.urls
test/test_solr_32.res
test/test_solr_34.res
test/test_solr_36.res
test/test_solr_38.res
test/test_solr_39.res [new file with mode: 0644]
test/test_solr_40.res [new file with mode: 0644]

index ff6e2a7..b498751 100644 (file)
@@ -1629,8 +1629,11 @@ int client_parse_query(struct client *cl, const char *query,
     return ret_value;
 }
 
-int client_parse_sort(struct client *cl, struct reclist_sortparms *sp)
+int client_parse_sort(struct client *cl, struct reclist_sortparms *sp,
+                      int *has_sortmap)
 {
+    if (has_sortmap)
+        *has_sortmap = 0;
     if (sp)
     {
         const char *sort_strategy_and_spec =
@@ -1666,6 +1669,8 @@ int client_parse_sort(struct client *cl, struct reclist_sortparms *sp)
                     xfree(cl->sort_criteria);
                     cl->sort_criteria = xstrdup(p);
                 }
+                if (has_sortmap)
+                    (*has_sortmap)++;
             }
             else {
                 yaz_log(YLOG_LOG, "Client %s: "
index a7866ba..cac4a2f 100644 (file)
@@ -77,7 +77,8 @@ int client_start_search(struct client *cl);
 int client_fetch_more(struct client *cl);
 int client_parse_init(struct client *cl, int same_search);
 int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs);
-int client_parse_sort(struct client *cl, struct reclist_sortparms *sp);
+int client_parse_sort(struct client *cl, struct reclist_sortparms *sp,
+                      int *has_sortmap);
 void client_set_session(struct client *cl, struct session *se);
 int client_is_active(struct client *cl);
 int client_is_active_preferred(struct client *cl);
index 245d061..e96ee92 100644 (file)
@@ -127,7 +127,7 @@ struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms,
             {
                 type = Metadata_type_retrieval;
             }
-            else
+            else if (service)
             {
                 for (i = 0; i < service->num_sortkeys; i++)
                 {
@@ -146,6 +146,12 @@ struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms,
                 }
                 offset = i;
             }
+            else
+            {
+                yaz_log(YLOG_FATAL, "Sortkey not defined in service: %s",
+                        parm);
+                return 0;
+            }
         }
         new = *rp = nmem_malloc(nmem, sizeof(struct reclist_sortparms));
         new->next = 0;
index 1928aae..c607418 100644 (file)
@@ -714,7 +714,7 @@ void session_sort(struct session *se, struct reclist_sortparms *sp,
                 break;
         if (sr)
         {
-            session_log(se, YLOG_DEBUG, "session_sort: field=%s increasing=%d type=%d already fetched",
+            session_log(se, YLOG_LOG, "session_sort: field=%s increasing=%d type=%d already fetched",
                         field, increasing, type);
             session_leave(se, "session_sort");
             return;
@@ -732,7 +732,7 @@ void session_sort(struct session *se, struct reclist_sortparms *sp,
         struct client *cl = l->client;
         // Assume no re-search is required.
         client_parse_init(cl, 1);
-        clients_research += client_parse_sort(cl, sp);
+        clients_research += client_parse_sort(cl, sp, 0);
     }
     if (!clients_research || se->clients_starting)
     {
@@ -774,6 +774,7 @@ void session_sort(struct session *se, struct reclist_sortparms *sp,
         }
         session_enter(se, "session_sort");
         se->clients_starting = 0;
+        se->force_position = 0;
         session_leave(se, "session_sort");
     }
 }
@@ -821,6 +822,7 @@ enum pazpar2_error_code session_search(struct session *se,
     int no_working = 0;
     int no_failed_query = 0;
     int no_failed_limit = 0;
+    int no_sortmap = 0;
     struct client_list *l;
 
     session_log(se, YLOG_DEBUG, "Search");
@@ -834,6 +836,7 @@ enum pazpar2_error_code session_search(struct session *se,
         return PAZPAR2_NO_ERROR;
     }
     se->clients_starting = 1;
+    se->force_position = 0;
     session_leave(se, "session_search0");
 
     if (se->settings_modified) {
@@ -902,12 +905,19 @@ enum pazpar2_error_code session_search(struct session *se,
         else
         {
             client_parse_range(cl, startrecs, maxrecs);
-            client_parse_sort(cl, sp);
+            client_parse_sort(cl, sp, &no_sortmap);
             client_start_search(cl);
             no_working++;
         }
     }
+    yaz_log(YLOG_LOG, "session_search: no_working=%d no_sortmap=%d",
+            no_working, no_sortmap);
     session_enter(se, "session_search2");
+    if (no_working == 1 && no_sortmap == 1)
+    {
+        se->force_position = 1;
+        yaz_log(YLOG_LOG, "force_position=1");
+    }
     se->clients_starting = 0;
     session_leave(se, "session_search2");
     if (no_working == 0)
@@ -1091,6 +1101,7 @@ struct session *new_session(NMEM nmem, struct conf_service *service,
     session->mergekey = 0;
     session->rank = 0;
     session->clients_starting = 0;
+    session->force_position = 0;
 
     for (i = 0; i <= SESSION_WATCH_MAX; i++)
     {
@@ -1409,6 +1420,7 @@ struct record_cluster **show_range_start(struct session *se,
     struct reclist_sortparms *spp;
     struct client_list *l;
     int i;
+    NMEM nmem_tmp = 0;
 #if USE_TIMING
     yaz_timing_t t = yaz_timing_create();
 #endif
@@ -1430,7 +1442,15 @@ struct record_cluster **show_range_start(struct session *se,
             *approx_hits += client_get_approximation(l->client);
         }
     }
+    if (se->force_position)
+    {
+        nmem_tmp = nmem_create();
+        sp = reclist_parse_sortparms(nmem_tmp, "position:1", 0);
+        assert(sp);
+    }
     reclist_sort(se->reclist, sp);
+    if (nmem_tmp)
+        nmem_destroy(nmem_tmp);
 
     reclist_enter(se->reclist);
     *total = reclist_get_num_records(se->reclist);
index 49e5338..07972be 100644 (file)
@@ -112,6 +112,7 @@ struct session {
     int settings_modified;
     facet_limits_t facet_limits;
     int clients_starting;
+    int force_position;
     struct reclist_sortparms *sorted_results;
     struct facet_id *facet_id_list;
 };
index 264cdc0..17aec2f 100644 (file)
@@ -36,3 +36,5 @@ http://localhost:9763/search.pz2?session=1&command=search&query=au%3D%3F&sort=au
 http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=author:1
 http://localhost:9763/search.pz2?session=1&command=search&query=au%3D%3F&sort=author:0
 http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=author:0
+http://localhost:9763/search.pz2?session=1&command=search&query=au%3D%3F&sort=author:0
+http://localhost:9763/search.pz2?session=1&command=show&block=1
index a9ff9c9..307bf17 100644 (file)
@@ -6,6 +6,90 @@
 <start>0</start>
 <num>20</num>
 <hit>
+ <md-title>Forensic declamations, for the use of schools and colleges;</md-title>
+ <md-date>1901</md-date>
+ <md-author>Espenshade, Abraham Howry</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Forensic declamations, for the use of schools and colleges;</md-title>
+  <md-date>1901</md-date>
+  <md-author>Espenshade, Abraham Howry</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title forensic declamations for the use of schools and colleges author espenshade abraham howry medium book</recid>
+</hit>
+<hit>
+ <md-title>Modern Birmingham and its institutions</md-title>
+ <md-title-remainder>a chronicle of local events, from 1841 to 1871</md-title-remainder>
+ <md-date>1873-1877</md-date>
+ <md-author>Langford, John Alfred</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Modern Birmingham and its institutions</md-title>
+  <md-title-remainder>a chronicle of local events, from 1841 to 1871</md-title-remainder>
+  <md-date>1873-1877</md-date>
+  <md-author>Langford, John Alfred</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title modern birmingham and its institutions author langford john alfred medium book</recid>
+</hit>
+<hit>
+ <md-title>Geography of New Zealand for senior pupils in the public schools</md-title>
+ <md-title-remainder>scholarship candidates, and pupil teachers</md-title-remainder>
+ <md-date>1903</md-date>
+ <md-author>Macdonald, J. R</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Geography of New Zealand for senior pupils in the public schools</md-title>
+  <md-title-remainder>scholarship candidates, and pupil teachers</md-title-remainder>
+  <md-date>1903</md-date>
+  <md-author>Macdonald, J. R</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title geography of new zealand for senior pupils in the public schools author macdonald j r medium book</recid>
+</hit>
+<hit>
+ <md-title>The Master&apos;s touch</md-title>
+ <md-date>1907</md-date>
+ <md-author>Stewart, Wentworth Fall</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>The Master&apos;s touch</md-title>
+  <md-date>1907</md-date>
+  <md-author>Stewart, Wentworth Fall</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title the master s touch author stewart wentworth fall medium book</recid>
+</hit>
+<hit>
+ <md-title>Novum Belgium</md-title>
+ <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
+ <md-date>1862</md-date>
+ <md-author>Jogues, Isaac</md-author>
+ <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Novum Belgium</md-title>
+  <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
+  <md-date>1862</md-date>
+  <md-author>Jogues, Isaac</md-author>
+  <md-description>&quot;Tiré à 100 exemplaires.&quot; This copy is not numbered</md-description>
+  <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title novum belgium author jogues isaac medium book</recid>
+</hit>
+<hit>
  <md-title>De successione ab intestato</md-title>
  <md-date>1470-1970</md-date>
  <md-author>Cino</md-author>
  <count>1</count>
  <recid>content: title a glimpse of hayti and her negro chief medium book</recid>
 </hit>
-<hit>
- <md-title>The history of the ancient Scots</md-title>
- <md-title-remainder>In three parts: I. Their origin and history, to the beginning of the ninth century. II. From the beginning of the ninth century to the end of the thirteenth. III. The Hebrides under the government of Norway.--Somerled.--Chiefs descended from Somerled</md-title-remainder>
- <md-date>1858</md-date>
- <md-author>MacCallum, Duncan</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3781833939">
-  <md-title>The history of the ancient Scots</md-title>
-  <md-title-remainder>In three parts: I. Their origin and history, to the beginning of the ninth century. II. From the beginning of the ninth century to the end of the thirteenth. III. The Hebrides under the government of Norway.--Somerled.--Chiefs descended from Somerled</md-title-remainder>
-  <md-date>1858</md-date>
-  <md-author>MacCallum, Duncan</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title the history of the ancient scots author maccallum duncan medium book</recid>
-</hit>
-<hit>
- <md-title>Novum Belgium</md-title>
- <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
- <md-date>1862</md-date>
- <md-author>Jogues, Isaac</md-author>
- <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3717838211">
-  <md-title>Novum Belgium</md-title>
-  <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
-  <md-date>1862</md-date>
-  <md-author>Jogues, Isaac</md-author>
-  <md-description>&quot;Tiré à 100 exemplaires.&quot; This copy is not numbered</md-description>
-  <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title novum belgium author jogues isaac medium book</recid>
-</hit>
-<hit>
- <md-title>Lake George and Lake Champlain</md-title>
- <md-title-remainder>from their first discovery to 1759</md-title-remainder>
- <md-date>1869</md-date>
- <md-author>Butler, B. C</md-author>
- <md-description>Pages 64-240 deal with events in this region in the French and Indian war</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1101479112">
-  <md-title>Lake George and Lake Champlain</md-title>
-  <md-title-remainder>from their first discovery to 1759</md-title-remainder>
-  <md-date>1869</md-date>
-  <md-author>Butler, B. C</md-author>
-  <md-description>Pages 64-240 deal with events in this region in the French and Indian war</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title lake george and lake champlain author butler b c medium book</recid>
-</hit>
-<hit>
- <md-title>Genealogy of the Dutton family of Pennsylvania, preceded by a history of the family in England from the time of William the Conqueror to the year 1669: with an appendix containing a short account of the Duttons of Conn</md-title>
- <md-date>1871</md-date>
- <md-author>Cope, Gilbert</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2716091581">
-  <md-title>Genealogy of the Dutton family of Pennsylvania, preceded by a history of the family in England from the time of William the Conqueror to the year 1669: with an appendix containing a short account of the Duttons of Conn</md-title>
-  <md-date>1871</md-date>
-  <md-author>Cope, Gilbert</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title genealogy of the dutton family of pennsylvania preceded by a history of the family in england from the time of william the conqueror to the year with an appendix containing a short account of the duttons of conn author cope gilbert medium book</recid>
-</hit>
-<hit>
- <md-title>The land of the Veda</md-title>
- <md-title-remainder>being personal reminiscences of India; its people, castes, thugs, and fakirs ; its religions, mythology, principal monuments, palaces, and mausoleums: together with the incidents of the great Sepoy rebellion, and its results to Christianity and civilization ; also, statistical tables of Christian missions, and a glossary of Indian terms used in this work and in missionary correspondence</md-title-remainder>
- <md-date>1872</md-date>
- <md-author>Butler, William</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="35736754">
-  <md-title>The land of the Veda</md-title>
-  <md-title-remainder>being personal reminiscences of India; its people, castes, thugs, and fakirs ; its religions, mythology, principal monuments, palaces, and mausoleums: together with the incidents of the great Sepoy rebellion, and its results to Christianity and civilization ; also, statistical tables of Christian missions, and a glossary of Indian terms used in this work and in missionary correspondence</md-title-remainder>
-  <md-date>1872</md-date>
-  <md-author>Butler, William</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title the land of the veda author butler william medium book</recid>
-</hit>
 </show>
\ No newline at end of file
index 808187e..d2b03d4 100644 (file)
@@ -6,21 +6,24 @@
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Liechtensteinische Betriebszählung 1995</md-title>
- <md-title-remainder>Industrie, Gewerbe, Dienstleistungen</md-title-remainder>
- <md-date>1999</md-date>
- <md-description>&quot;Nr. 312&quot;--Spine</md-description>
+ <md-title>Leaves of grass</md-title>
+ <md-date>1860</md-date>
+ <md-author>Whitman, Walt</md-author>
+ <md-description>Myerson describes 2 authorized printings, with 3 states of frontispiece and 5 states of binding. For unauthorized printings, cf. LC record 45-46794</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="99732482">
-  <md-title>Liechtensteinische Betriebszählung 1995</md-title>
-  <md-title-remainder>Industrie, Gewerbe, Dienstleistungen</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-description>&quot;Nr. 312&quot;--Spine</md-description>
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Leaves of grass</md-title>
+  <md-date>1860</md-date>
+  <md-author>Whitman, Walt</md-author>
+  <md-description>Author&apos;s name, Walt Whitman, appears in copyright statement on t.p. verso</md-description>
+  <md-description>Third edition</md-description>
+  <md-description>Myerson describes 2 authorized printings, with 3 states of frontispiece and 5 states of binding. For unauthorized printings, cf. LC record 45-46794</md-description>
+  <md-description>LC has rebound copy, with frontispiece in Myerson 1st state.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title liechtensteinische betriebsza hlung medium book</recid>
+ <recid>content: title leaves of grass author whitman walt medium book</recid>
 </hit>
 <hit>
  <md-title>New power</md-title>
  <recid>content: title new power author lowther christine medium book</recid>
 </hit>
 <hit>
- <md-title>Tres cartas de Serguei Esenin</md-title>
- <md-date>1995</md-date>
- <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
- <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
+ <md-title>Casus decretorum Bartholomei Brixiensis</md-title>
+ <md-date>1489</md-date>
+ <md-author>Bartolomeo</md-author>
+ <md-description>LC copy has 2 capitals supplied in red and silver (a2);  coat-of-arms in colors painted on verso of final blank. Half-bound in wooden boards with blind-stamped pigskin, and with 2 clasps.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2135223606">
-  <md-title>Tres cartas de Serguei Esenin</md-title>
-  <md-date>1995</md-date>
-  <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
-  <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
-  <md-description>Part of a collection of handmade chapbooks, most with cords for hanging (literatura de cordel), published by Ediciones Vigía under the auspices of the Cuban Ministry of Culture</md-description>
-  <md-description>&quot;Esta edición ... consta de doscientos ejemplares numerados, iluminados a mano&quot;--Colophon</md-description>
-  <md-description>LC copy unnumbered.DLC</md-description>
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Casus decretorum Bartholomei Brixiensis</md-title>
+  <md-date>1489</md-date>
+  <md-author>Bartolomeo</md-author>
+  <md-description>A modification of Benencasa&apos;s Casus. Cf. S. Kuttner. Repertorium der Kanonistik, I, 1937, p. 229-230; 455</md-description>
+  <md-description>Imprint from colophon</md-description>
+  <md-description>Printer&apos;s device at colophon</md-description>
+  <md-description>Colophon: Casus Decreti Bartholomei Brixien[sis] in vrbe Basilien[si] per Nicolaum Kesler ciuem eiusdem studiosissime impressi finiunt feliciter</md-description>
+  <md-description>Signatures: a⁸ b-z⁸/⁶ [et]⁸ [con]⁶ t[ra]⁶ [rum]⁸</md-description>
+  <md-description>BM 15th cent. omits the t[ra] gathering and indicates the corresponding number of leaves (182); the gathering is present in GW and in LC copy</md-description>
+  <md-description>Capital spaces, some with guide letters</md-description>
+  <md-description>LC copy has 2 capitals supplied in red and silver (a2);  coat-of-arms in colors painted on verso of final blank. Half-bound in wooden boards with blind-stamped pigskin, and with 2 clasps.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title tres cartas de serguei esenin author esenin sergei aleksandrovich medium book</recid>
+ <recid>content: title casus decretorum bartholomei brixiensis author bartolomeo medium book</recid>
 </hit>
 <hit>
- <md-title>The Chamorro language of Guam;</md-title>
- <md-title-remainder>a grammar of the idiom spoken by the inhabitants of the Marianne, or Ladrones, Islands</md-title-remainder>
- <md-date>1909</md-date>
- <md-author>Safford, William Edwin</md-author>
- <md-description>&quot;Reprinted from the American Anthropologist, 1903-1905.&quot;</md-description>
+ <md-title>Hymnes chantés dans la séance de la Convention nationale du 23 thermidor, jour anniversaire du 10 août</md-title>
+ <md-date>1795</md-date>
+ <md-description>Le chant républicain du 10 août / par Le Brun ; musique de Chérubini -- Hymne a la liberté / par Th. Desorgues ; musique de Langlé -- L&apos;hymne du 10 août / par M. Chénier ; musique de Catel -- Hymne a la liberté : chant de triomphe / par Baour Lormian ; musique de Rigel père</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1714344951">
-  <md-title>The Chamorro language of Guam;</md-title>
-  <md-title-remainder>a grammar of the idiom spoken by the inhabitants of the Marianne, or Ladrones, Islands</md-title-remainder>
-  <md-date>1909</md-date>
-  <md-author>Safford, William Edwin</md-author>
-  <md-description>Various pagings</md-description>
-  <md-description>&quot;Reprinted from the American Anthropologist, 1903-1905.&quot;</md-description>
-  <md-description>Issued in five parts</md-description>
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Hymnes chantés dans la séance de la Convention nationale du 23 thermidor, jour anniversaire du 10 août</md-title>
+  <md-date>1795</md-date>
+  <md-description>Without the music</md-description>
+  <md-description>Caption title. Imprint from colophon</md-description>
+  <md-description>Le chant républicain du 10 août / par Le Brun ; musique de Chérubini -- Hymne a la liberté / par Th. Desorgues ; musique de Langlé -- L&apos;hymne du 10 août / par M. Chénier ; musique de Catel -- Hymne a la liberté : chant de triomphe / par Baour Lormian ; musique de Rigel père</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the chamorro language of guam author safford william edwin medium book</recid>
+ <recid>content: title hymnes chante s dans la se ance de la convention nationale du thermidor jour anniversaire du aou t medium book</recid>
 </hit>
 <hit>
- <md-title>Felix Mendelssohn Bartholdy en zijne werken</md-title>
- <md-date>1908</md-date>
- <md-author>Hartog, Jacques</md-author>
- <md-description>On cover: Jubilé-uitgave</md-description>
+ <md-title>Policronicon</md-title>
+ <md-date>1527</md-date>
+ <md-author>Higden, Ranulf</md-author>
+ <md-description>Hidgen&apos;s work, divided into seven books and extending to the year 1348, was originally written in Latin.  The present English translation was made by John de Trevisa, who continued it to 1357.  The eighth book, 1358-1460, was added by Caxton, who in 1482 printed the work from Trevisa&apos;s translation, revising the antiquated text. This continuation is of interest as being the only original work of any magnitude from his pen.  Cf. W. Blades, Life and typography of William Caxton, 1863, v. 2, p. 125</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="648602593">
-  <md-title>Felix Mendelssohn Bartholdy en zijne werken</md-title>
-  <md-date>1908</md-date>
-  <md-author>Hartog, Jacques</md-author>
-  <md-description>On cover: Jubilé-uitgave</md-description>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Policronicon</md-title>
+  <md-date>1527</md-date>
+  <md-author>Higden, Ranulf</md-author>
+  <md-description>Imprint from colophon</md-description>
+  <md-description>This is a reprint of the edition printed by Wynken de Worde in 1495. The only variation appears to be the introduction of a few woodcuts and the omission of the date of Wynken de Worde&apos;s edition at the end. Cf. S.E. Brydges. The British bibliographer, 1814, v. 4, p. 349-350</md-description>
+  <md-description>Hidgen&apos;s work, divided into seven books and extending to the year 1348, was originally written in Latin.  The present English translation was made by John de Trevisa, who continued it to 1357.  The eighth book, 1358-1460, was added by Caxton, who in 1482 printed the work from Trevisa&apos;s translation, revising the antiquated text. This continuation is of interest as being the only original work of any magnitude from his pen.  Cf. W. Blades, Life and typography of William Caxton, 1863, v. 2, p. 125</md-description>
+  <md-description>The first book comprises a brief description of the countries of the known world, and a more particular account of Great Britain</md-description>
+  <md-description>Error in foliation: CCCxxxvi repeated</md-description>
+  <md-description>2a⁸ 2b-2h⁶ a-y⁸ z⁶ A-S⁸ T⁶ Y⁸ X⁸ (2h6 blank)</md-description>
+  <md-description>Ill. t.p. printed in red and black</md-description>
+  <md-description>Printed in double columns</md-description>
+  <md-description>LC copy imperfect: final leaf wanting. Imprint statement from RLIN record UTBGDDV8260-B. Many leaves re-margined and inlaid.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title felix mendelssohn bartholdy en zijne werken author hartog jacques medium book</recid>
+ <recid>content: title policronicon author higden ranulf medium book</recid>
 </hit>
 <hit>
- <md-title>The small holding</md-title>
- <md-date>1908</md-date>
- <md-author>Green, Frederick Ernest</md-author>
- <md-description>&quot;Much of the matter reprinted in this ... book has appeared in Farm and garden, and some of it in Farm and home.&quot;</md-description>
+ <md-title>Vitas patrum</md-title>
+ <md-date>1495</md-date>
+ <md-description>LC Vollbehr Collection copy 2 imperfect: leaf CCCxlvii [i.e. 348] in facsimile (cf. Vollbehr&apos;s files, Proctor 9697), and used as t.p. (wanting original); book measures 27 cm., bound in red leather, with coat-of-arms of Curzon in gilt on cover; inside dentelles.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3328957420">
-  <md-title>The small holding</md-title>
-  <md-date>1908</md-date>
-  <md-author>Green, Frederick Ernest</md-author>
-  <md-description>&quot;Much of the matter reprinted in this ... book has appeared in Farm and garden, and some of it in Farm and home.&quot;</md-description>
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Vitas patrum</md-title>
+  <md-date>1495</md-date>
+  <md-description>&quot;By the blessyd [and] holy saynt Saynt Ierome ... [and] other solytarye relygyouse persones after hy[m] ...&quot;: leaf Aa2</md-description>
+  <md-description>Imprint from colophon</md-description>
+  <md-description>Signatures: Aa⁸ a-o⁸ p⁶ q-x⁸ y¹⁰ z-2t⁸ 2v-2x⁶</md-description>
+  <md-description>Error in foliation: lxxxxiii repeated</md-description>
+  <md-description>The title is xylographic (white on black)</md-description>
+  <md-description>LC Vollbehr Collection copy 1 bound in full leather, stamped in gilt and blind; inside dentelles, with blind stamping on the paste-down endpapers.DLC</md-description>
+  <md-description>LC Vollbehr Collection copy 2 imperfect: leaf CCCxlvii [i.e. 348] in facsimile (cf. Vollbehr&apos;s files, Proctor 9697), and used as t.p. (wanting original); book measures 27 cm., bound in red leather, with coat-of-arms of Curzon in gilt on cover; inside dentelles.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the small holding author green frederick ernest medium book</recid>
+ <recid>content: title vitas patrum medium book</recid>
 </hit>
 <hit>
- <md-title>Essai sur les emprunts d&apos;états, et la protection des droits des porteurs de fonds d&apos;états étrangers</md-title>
- <md-date>1907</md-date>
- <md-author>Wuarin, Albert</md-author>
+ <md-title>A shorte treatise vpon the Turkes chronicles</md-title>
+ <md-date>1546</md-date>
+ <md-author>Giovio, Paolo</md-author>
+ <md-description>(from t.p.) The conte[n]tes of the boke [brace] the begynnyng of the Turkyshe empyre -- The lyues of al the Turkyshe emperours -- The araye and discipline of the Turkysh warfare described &amp; set forth most exactly / the sayd Paulus beyng the authour</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1197472704">
-  <md-title>Essai sur les emprunts d&apos;états, et la protection des droits des porteurs de fonds d&apos;états étrangers</md-title>
-  <md-date>1907</md-date>
-  <md-author>Wuarin, Albert</md-author>
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>A shorte treatise vpon the Turkes chronicles</md-title>
+  <md-date>1546</md-date>
+  <md-author>Giovio, Paolo</md-author>
+  <md-description>Imprint from colophon</md-description>
+  <md-description>Signatures: *⁸ A-S⁸</md-description>
+  <md-description>(from t.p.) The conte[n]tes of the boke [brace] the begynnyng of the Turkyshe empyre -- The lyues of al the Turkyshe emperours -- The araye and discipline of the Turkysh warfare described &amp; set forth most exactly / the sayd Paulus beyng the authour</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title essai sur les emprunts d e tats et la protection des droits des porteurs de fonds d e tats e trangers author wuarin albert medium book</recid>
+ <recid>content: title a shorte treatise vpon the turkes chronicles author giovio paolo medium book</recid>
 </hit>
 <hit>
- <md-title>Lancasterian schools in Philadelphia</md-title>
- <md-date>1907</md-date>
- <md-author>Ellis, Charles Calvert</md-author>
+ <md-title>The paradox of tradition</md-title>
+ <md-title-remainder>gender, land, and inheritance rights among the Baganda</md-title-remainder>
+ <md-author>Nalwanga-Sebina</md-author>
+ <md-description>Cover title</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="131730346">
-  <md-title>Lancasterian schools in Philadelphia</md-title>
-  <md-date>1907</md-date>
-  <md-author>Ellis, Charles Calvert</md-author>
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>The paradox of tradition</md-title>
+  <md-title-remainder>gender, land, and inheritance rights among the Baganda</md-title-remainder>
+  <md-author>Nalwanga-Sebina</md-author>
+  <md-description>Cover title</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title lancasterian schools in philadelphia author ellis charles calvert medium book</recid>
+ <recid>content: title the paradox of tradition author nalwanga sebina medium book</recid>
 </hit>
 <hit>
- <md-title>On fermentation</md-title>
- <md-date>1907</md-date>
- <md-author>Taylor, Alonzo Englebert</md-author>
- <md-description>Source: Gift of A.W. Bitting, presented in memory of Katherine Golden Bitting, Oct. 6, 1939.DLC</md-description>
+ <md-title>A Description of Kentucky, in North America</md-title>
+ <md-title-remainder>to which are prefixed miscellaneous observations respecting the United States</md-title-remainder>
+ <md-author>Toulmin, Harry</md-author>
+ <md-description>Pages 117-119 contain a letter received &quot;since the preceding account was printed&quot;, dated Feb. 2, 1793</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3877827531">
-  <md-title>On fermentation</md-title>
-  <md-date>1907</md-date>
-  <md-author>Taylor, Alonzo Englebert</md-author>
-  <md-description>LC copy has bookplate of Katherine Golden Bitting.DLC</md-description>
-  <md-description>Source: Gift of A.W. Bitting, presented in memory of Katherine Golden Bitting, Oct. 6, 1939.DLC</md-description>
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>A Description of Kentucky, in North America</md-title>
+  <md-title-remainder>to which are prefixed miscellaneous observations respecting the United States</md-title-remainder>
+  <md-author>Toulmin, Harry</md-author>
+  <md-description>Map accompanied by explanatory leaf</md-description>
+  <md-description>Pages 117-119 contain a letter received &quot;since the preceding account was printed&quot;, dated Feb. 2, 1793</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title on fermentation author taylor alonzo englebert medium book</recid>
+ <recid>content: title a description of kentucky in north america author toulmin harry medium book</recid>
 </hit>
 <hit>
- <md-title>The last siege of Louisburg</md-title>
- <md-date>1907</md-date>
- <md-author>Macdonald, C. Ochiltree</md-author>
+ <md-title>Vidas e obra de Antonio Oliveira Salazar</md-title>
+ <md-author>Duarte, Augusto</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2812085173">
-  <md-title>The last siege of Louisburg</md-title>
-  <md-date>1907</md-date>
-  <md-author>Macdonald, C. Ochiltree</md-author>
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Vidas e obra de Antonio Oliveira Salazar</md-title>
+  <md-author>Duarte, Augusto</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the last siege of louisburg author macdonald c ochiltree medium book</recid>
+ <recid>content: title vidas e obra de antonio oliveira salazar author duarte augusto medium book</recid>
 </hit>
 <hit>
- <md-title>The standard financial dictionary;</md-title>
- <md-title-remainder>an encyclopedia covering the entire field of finance, words, terms, phrases</md-title-remainder>
- <md-date>1906-1907</md-date>
- <md-author>Shea, Christopher Ambrose</md-author>
+ <md-title>A obra administrativa da ditadura em Mocambique</md-title>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2263215062">
-  <md-title>The standard financial dictionary;</md-title>
-  <md-title-remainder>an encyclopedia covering the entire field of finance, words, terms, phrases</md-title-remainder>
-  <md-date>1906-1907</md-date>
-  <md-author>Shea, Christopher Ambrose</md-author>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>A obra administrativa da ditadura em Mocambique</md-title>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the standard financial dictionary author shea christopher ambrose medium book</recid>
+ <recid>content: title a obra administrativa da ditadura em mocambique medium book</recid>
 </hit>
 <hit>
- <md-title>Die Musik in Böhmen</md-title>
- <md-date>1906</md-date>
- <md-author>Batka, Richard</md-author>
- <md-description>The frontispiece is a mounted photograph</md-description>
+ <md-title>Tres cartas de Serguei Esenin</md-title>
+ <md-date>1995</md-date>
+ <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
+ <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1746342815">
-  <md-title>Die Musik in Böhmen</md-title>
-  <md-date>1906</md-date>
-  <md-author>Batka, Richard</md-author>
-  <md-description>Series title also at head of t.-p</md-description>
-  <md-description>The frontispiece is a mounted photograph</md-description>
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Tres cartas de Serguei Esenin</md-title>
+  <md-date>1995</md-date>
+  <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
+  <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
+  <md-description>Part of a collection of handmade chapbooks, most with cords for hanging (literatura de cordel), published by Ediciones Vigía under the auspices of the Cuban Ministry of Culture</md-description>
+  <md-description>&quot;Esta edición ... consta de doscientos ejemplares numerados, iluminados a mano&quot;--Colophon</md-description>
+  <md-description>LC copy unnumbered.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title die musik in bo hmen author batka richard medium book</recid>
+ <recid>content: title tres cartas de serguei esenin author esenin sergei aleksandrovich medium book</recid>
 </hit>
 <hit>
- <md-title>Baku</md-title>
- <md-title-remainder>an eventful history</md-title-remainder>
- <md-date>1905</md-date>
- <md-author>Henry, James Dodds</md-author>
- <md-description>pt. I. The origin, progress and present position of the Russian petroleum industry.--pt. II. The rising in the Caucasus.--pt. III. Batoum, Baku&apos;s chief oil port</md-description>
+ <md-title>Refutação dos sofismas empregados por alguns jornalistas inglezes sobre dom Miguel em Portugal e os portugueses em Plymouth</md-title>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3360955284">
-  <md-title>Baku</md-title>
-  <md-title-remainder>an eventful history</md-title-remainder>
-  <md-date>1905</md-date>
-  <md-author>Henry, James Dodds</md-author>
-  <md-description>pt. I. The origin, progress and present position of the Russian petroleum industry.--pt. II. The rising in the Caucasus.--pt. III. Batoum, Baku&apos;s chief oil port</md-description>
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Refutação dos sofismas empregados por alguns jornalistas inglezes sobre dom Miguel em Portugal e os portugueses em Plymouth</md-title>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title baku author henry james dodds medium book</recid>
+ <recid>content: title refutac a o dos sofismas empregados por alguns jornalistas inglezes sobre dom miguel em portugal e os portugueses em plymouth medium book</recid>
 </hit>
 <hit>
- <md-title>The life of Froude</md-title>
- <md-date>1905</md-date>
- <md-author>Paul, Herbert W</md-author>
+ <md-title>Mount Washington;</md-title>
+ <md-title-remainder>a handbook for travelers</md-title-remainder>
+ <md-author>Burt, Frank H</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1682347087">
-  <md-title>The life of Froude</md-title>
-  <md-date>1905</md-date>
-  <md-author>Paul, Herbert W</md-author>
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Mount Washington;</md-title>
+  <md-title-remainder>a handbook for travelers</md-title-remainder>
+  <md-author>Burt, Frank H</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the life of froude author paul herbert w medium book</recid>
+ <recid>content: title mount washington author burt frank h medium book</recid>
 </hit>
 <hit>
- <md-title>Dějiny české hudby</md-title>
- <md-date>1903</md-date>
- <md-author>Nejedlý, Zdeněk</md-author>
+ <md-title>Practical religion exemplfy&apos;d in the lives of Mrs. Mary Terry who died Decemb. 8th 1708. in the eighteenth year of her age. and Miss Clissovld. who departed this life the 12th of Decemb. 1711. in the twenty ninth year of her age</md-title>
+ <md-date>1713</md-date>
+ <md-author>Reynolds, Thomas</md-author>
+ <md-description>Title within mourning border</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="680600457">
-  <md-title>Dějiny české hudby</md-title>
-  <md-date>1903</md-date>
-  <md-author>Nejedlý, Zdeněk</md-author>
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>Practical religion exemplfy&apos;d in the lives of Mrs. Mary Terry who died Decemb. 8th 1708. in the eighteenth year of her age. and Miss Clissovld. who departed this life the 12th of Decemb. 1711. in the twenty ninth year of her age</md-title>
+  <md-date>1713</md-date>
+  <md-author>Reynolds, Thomas</md-author>
+  <md-description>Title within mourning border</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title de jiny c eske hudby author nejedly zdene k medium book</recid>
+ <recid>content: title practical religion exemplfy d in the lives of mrs mary terry who died decemb th in the eighteenth year of her age and miss clissovld who departed this life the th of decemb in the twenty ninth year of her age author reynolds thomas medium book</recid>
 </hit>
 <hit>
- <md-title>The geological structure of Monzoni and Fassa</md-title>
- <md-date>1903</md-date>
- <md-author>Gordon, Maria M. Ogilvie</md-author>
+ <md-title>Tom-tell-troth, or, A free discourse touching the murmurs of the times</md-title>
+ <md-title-remainder>directed to His Majesty by way of humble advertisement</md-title-remainder>
+ <md-date>1642</md-date>
+ <md-description>Errors in paging: 15-16 repeated</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2295212926">
-  <md-title>The geological structure of Monzoni and Fassa</md-title>
-  <md-date>1903</md-date>
-  <md-author>Gordon, Maria M. Ogilvie</md-author>
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Tom-tell-troth, or, A free discourse touching the murmurs of the times</md-title>
+  <md-title-remainder>directed to His Majesty by way of humble advertisement</md-title-remainder>
+  <md-date>1642</md-date>
+  <md-description>Errors in paging: 15-16 repeated</md-description>
+  <md-description>Signatures: B⁴ ²B⁴ C-D⁴</md-description>
+  <md-description>LC copy wanting final blank.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the geological structure of monzoni and fassa author gordon maria m ogilvie medium book</recid>
+ <recid>content: title tom tell troth or a free discourse touching the murmurs of the times medium book</recid>
 </hit>
 <hit>
- <md-title>Four southern magazines</md-title>
- <md-date>1902</md-date>
- <md-author>Rogers, Edward Reinhold</md-author>
- <md-description>&quot;The four chapters of this brief discussion are limited to four of the principal ante-bellum southern magazines--namely, De Bow&apos;s review, of New Orleans; The Southern review, of Charleston, S. C.; The Southern quarterly review, also of Charleston, S. C.; The Southern literary messenger, of Richmond, Virginia.&quot;--Pref</md-description>
+ <md-title>A short discoverie of the coasts and continent of America, from the equinoctiall northward, and of the adjacent isles</md-title>
+ <md-date>1644</md-date>
+ <md-author>Castell, William</md-author>
+ <md-description>Signatures: [A]² ***⁴ B-F⁴ G², 2A-2F⁴ 2G⁴(-2G4)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1229470568">
-  <md-title>Four southern magazines</md-title>
-  <md-date>1902</md-date>
-  <md-author>Rogers, Edward Reinhold</md-author>
-  <md-description>&quot;The four chapters of this brief discussion are limited to four of the principal ante-bellum southern magazines--namely, De Bow&apos;s review, of New Orleans; The Southern review, of Charleston, S. C.; The Southern quarterly review, also of Charleston, S. C.; The Southern literary messenger, of Richmond, Virginia.&quot;--Pref</md-description>
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>A short discoverie of the coasts and continent of America, from the equinoctiall northward, and of the adjacent isles</md-title>
+  <md-date>1644</md-date>
+  <md-author>Castell, William</md-author>
+  <md-description>Signatures: [A]² ***⁴ B-F⁴ G², 2A-2F⁴ 2G⁴(-2G4)</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title four southern magazines author rogers edward reinhold medium book</recid>
+ <recid>content: title a short discoverie of the coasts and continent of america from the equinoctiall northward and of the adjacent isles author castell william medium book</recid>
 </hit>
 <hit>
- <md-title>Frederick Chopin</md-title>
- <md-title-remainder>as a man and musician;</md-title-remainder>
- <md-date>1902</md-date>
- <md-author>Niecks, Frederick</md-author>
+ <md-title>An ansvver to mis-led Doctor Fearne, according to his own method</md-title>
+ <md-title-remainder>of his book : sect. 1.2, The divinity being by Scripture : sect. 3.4.5, The reason by Aristotle : sect. 6.7, The sense or matter of fact by witnesse examined</md-title-remainder>
+ <md-date>1642</md-date>
+ <md-author>Herle, Charles</md-author>
+ <md-description>Signatures: [A]² B-E⁴ F⁴(-F4)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3909825395">
-  <md-title>Frederick Chopin</md-title>
-  <md-title-remainder>as a man and musician;</md-title-remainder>
-  <md-date>1902</md-date>
-  <md-author>Niecks, Frederick</md-author>
+    name="LOC Solr Test" checksum="3232963828">
+  <md-title>An ansvver to mis-led Doctor Fearne, according to his own method</md-title>
+  <md-title-remainder>of his book : sect. 1.2, The divinity being by Scripture : sect. 3.4.5, The reason by Aristotle : sect. 6.7, The sense or matter of fact by witnesse examined</md-title-remainder>
+  <md-date>1642</md-date>
+  <md-author>Herle, Charles</md-author>
+  <md-description>Signatures: [A]² B-E⁴ F⁴(-F4)</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title frederick chopin author niecks frederick medium book</recid>
+ <recid>content: title an ansvver to mis led doctor fearne according to his own method author herle charles medium book</recid>
 </hit>
 <hit>
- <md-title>What I saw in South Africa, September and October, 1902</md-title>
- <md-date>1902</md-date>
- <md-author>MacDonald, James Ramsay</md-author>
+ <md-title>A petition of W.C. exhibited to the High Court of Parliament now assembled</md-title>
+ <md-title-remainder>for the propagating of the Gospel in America and the West Indies, and for the setling of our plantations there : which petition is approved by 70 able English divines : also by Master Alexander Henderson and some other worthy ministers of Scotland</md-title-remainder>
+ <md-date>1641</md-date>
+ <md-author>Castell, William</md-author>
+ <md-description>LC copy wanting initial blank.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2844083037">
-  <md-title>What I saw in South Africa, September and October, 1902</md-title>
-  <md-date>1902</md-date>
-  <md-author>MacDonald, James Ramsay</md-author>
+    name="LOC Solr Test" checksum="552609001">
+  <md-title>A petition of W.C. exhibited to the High Court of Parliament now assembled</md-title>
+  <md-title-remainder>for the propagating of the Gospel in America and the West Indies, and for the setling of our plantations there : which petition is approved by 70 able English divines : also by Master Alexander Henderson and some other worthy ministers of Scotland</md-title-remainder>
+  <md-date>1641</md-date>
+  <md-author>Castell, William</md-author>
+  <md-description>Signatures: A-B⁴ C²</md-description>
+  <md-description>LC copy wanting initial blank.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title what i saw in south africa september and october author macdonald james ramsay medium book</recid>
+ <recid>content: title a petition of w c exhibited to the high court of parliament now assembled author castell william medium book</recid>
 </hit>
 <hit>
- <md-title>History of the First Light Battery Connecticut Volunteers, 1861-1865</md-title>
- <md-title-remainder>Personal records and reminiscences. The story of the battery from its organization to the present time</md-title-remainder>
- <md-date>1901</md-date>
- <md-author>Beecher, Herbert W</md-author>
- <md-description>Edited by John De Morgan</md-description>
+ <md-title>The priviledges and practice of parliaments in England</md-title>
+ <md-title-remainder>collected out of the common lawes of this land, seene and allowed by the learned in the lawes, commended to the high court of Parliament now assembled</md-title-remainder>
+ <md-date>1641</md-date>
+ <md-description>Place of printing from Wing</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="163728210">
-  <md-title>History of the First Light Battery Connecticut Volunteers, 1861-1865</md-title>
-  <md-title-remainder>Personal records and reminiscences. The story of the battery from its organization to the present time</md-title-remainder>
-  <md-date>1901</md-date>
-  <md-author>Beecher, Herbert W</md-author>
-  <md-description>Edited by John De Morgan</md-description>
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>The priviledges and practice of parliaments in England</md-title>
+  <md-title-remainder>collected out of the common lawes of this land, seene and allowed by the learned in the lawes, commended to the high court of Parliament now assembled</md-title-remainder>
+  <md-date>1641</md-date>
+  <md-description>Place of printing from Wing</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title history of the first light battery connecticut volunteers author beecher herbert w medium book</recid>
+ <recid>content: title the priviledges and practice of parliaments in england medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 365a0ea..f760204 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Mutatus polemo</md-title>
- <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
- <md-date>1650</md-date>
- <md-author>A. B</md-author>
- <md-description>Signatures: A-G⁴</md-description>
+ <md-title>The arts of rowing and training</md-title>
+ <md-title-remainder>with an appendix containing the laws of boat-racing, &amp;c</md-title-remainder>
+ <md-date>1866</md-date>
+ <md-author>&quot;Argonaut&quot;</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2135223606">
-  <md-title>Mutatus polemo</md-title>
-  <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
-  <md-date>1650</md-date>
-  <md-author>A. B</md-author>
-  <md-description>Signatures: A-G⁴</md-description>
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>The arts of rowing and training</md-title>
+  <md-title-remainder>with an appendix containing the laws of boat-racing, &amp;c</md-title-remainder>
+  <md-date>1866</md-date>
+  <md-author>&quot;Argonaut&quot;</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title mutatus polemo author a b medium book</recid>
+ <recid>content: title the arts of rowing and training author argonaut medium book</recid>
+</hit>
+<hit>
+ <md-title>Gradual reduction milling</md-title>
+ <md-title-remainder>A treatise on the art of modern milling</md-title-remainder>
+ <md-author>&quot;Cereal,&quot;</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Gradual reduction milling</md-title>
+  <md-title-remainder>A treatise on the art of modern milling</md-title-remainder>
+  <md-author>&quot;Cereal,&quot;</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title gradual reduction milling author cereal medium book</recid>
+</hit>
+<hit>
+ <md-title>The sovereigns and courts of Europe</md-title>
+ <md-date>1891</md-date>
+ <md-author>&quot;Politikos,&quot; pseud</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>The sovereigns and courts of Europe</md-title>
+  <md-date>1891</md-date>
+  <md-author>&quot;Politikos,&quot; pseud</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title the sovereigns and courts of europe author politikos pseud medium book</recid>
+</hit>
+<hit>
+ <md-title>Guide to Florida</md-title>
+ <md-date>1875-1876</md-date>
+ <md-author>&quot;Rambler,&quot; pseud</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Guide to Florida</md-title>
+  <md-date>1875</md-date>
+  <md-author>&quot;Rambler,&quot; pseud</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Guide to Florida</md-title>
+  <md-date>1876</md-date>
+  <md-author>&quot;Rambler,&quot; pseud</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <recid>content: title guide to florida author rambler pseud medium book</recid>
+</hit>
+<hit>
+ <md-title>2000+ ceist</md-title>
+ <md-title-remainder>idir throm agus éadrom</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>&apos;Ac Gearailt, Breandán</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>2000+ ceist</md-title>
+  <md-title-remainder>idir throm agus éadrom</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>&apos;Ac Gearailt, Breandán</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title ceist author ac gearailt breanda n medium book</recid>
+</hit>
+<hit>
+ <md-title>The story of Jewād;</md-title>
+ <md-title-remainder>a romance;</md-title-remainder>
+ <md-date>1884</md-date>
+ <md-author>&apos;Alī &apos;Azīz</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>The story of Jewād;</md-title>
+  <md-title-remainder>a romance;</md-title-remainder>
+  <md-date>1884</md-date>
+  <md-author>&apos;Alī &apos;Azīz</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title the story of jewa d author ali azi z medium book</recid>
+</hit>
+<hit>
+ <md-title>A digest of the law of actions and trials at nisi prius</md-title>
+ <md-date>1808</md-date>
+ <md-author>&apos;Espinasse, Isaac</md-author>
+ <md-description>Paged continuously</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>A digest of the law of actions and trials at nisi prius</md-title>
+  <md-date>1808</md-date>
+  <md-author>&apos;Espinasse, Isaac</md-author>
+  <md-description>Paged continuously</md-description>
+  <md-description>Includes indexes</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title a digest of the law of actions and trials at nisi prius author espinasse isaac medium book</recid>
+</hit>
+<hit>
+ <md-title>Tales</md-title>
+ <md-date>1768</md-date>
+ <md-author>&apos;Ināyat Āllāh</md-author>
+ <md-description>Caption title: The Baar danesh; or, Garden of knowledge</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>Tales</md-title>
+  <md-date>1768</md-date>
+  <md-author>&apos;Ināyat Āllāh</md-author>
+  <md-description>Caption title: The Baar danesh; or, Garden of knowledge</md-description>
+  <md-description>Tr. by Alexander Dow</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title tales author ina yat a lla h medium book</recid>
+</hit>
+<hit>
+ <md-title>Bahar-danush;</md-title>
+ <md-title-remainder>or, Garden of knowledge. An oriental romance</md-title-remainder>
+ <md-date>1799</md-date>
+ <md-author>&apos;Ināyat Āllāh</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Bahar-danush;</md-title>
+  <md-title-remainder>or, Garden of knowledge. An oriental romance</md-title-remainder>
+  <md-date>1799</md-date>
+  <md-author>&apos;Ināyat Āllāh</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title bahar danush author ina yat a lla h medium book</recid>
 </hit>
 <hit>
  <md-title>Adat istiadat perkawinan Dayak Kanayatn</md-title>
  <recid>content: title adat istiadat perkawinan dayak kanayatn author a b dacing t medium book</recid>
 </hit>
 <hit>
+ <md-title>Mutatus polemo</md-title>
+ <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
+ <md-date>1650</md-date>
+ <md-author>A. B</md-author>
+ <md-description>Signatures: A-G⁴</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Mutatus polemo</md-title>
+  <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
+  <md-date>1650</md-date>
+  <md-author>A. B</md-author>
+  <md-description>Signatures: A-G⁴</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title mutatus polemo author a b medium book</recid>
+</hit>
+<hit>
  <md-title>Homseni</md-title>
  <md-date>1996</md-date>
  <md-author>A. C</md-author>
  <recid>content: title overland inland and upland author a u medium book</recid>
 </hit>
 <hit>
- <md-title>Biographisch woordenboek der Nederlanden</md-title>
- <md-title-remainder>bevattende levensbeschrijvingen van zoodanige personen, die zich op eenigerlei wijze in ons vaderland hebben vermaard gemaakt</md-title-remainder>
- <md-date>1852</md-date>
- <md-author>Aa, Abraham Jacob van der</md-author>
- <md-description>Title varies: v. 3-6, 9, A. J. van der Aa, Biographisch woordenboek der Nederlanden, voortgezet door K. J. R. van Harderwijk; v. 7-8, 10-21, voortgezet door K. J. R. van Harderwijk en Dr. G. D. J. Schotel</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1101479112">
-  <md-title>Biographisch woordenboek der Nederlanden</md-title>
-  <md-title-remainder>bevattende levensbeschrijvingen van zoodanige personen, die zich op eenigerlei wijze in ons vaderland hebben vermaard gemaakt</md-title-remainder>
-  <md-date>1852</md-date>
-  <md-author>Aa, Abraham Jacob van der</md-author>
-  <md-description>Title varies: v. 3-6, 9, A. J. van der Aa, Biographisch woordenboek der Nederlanden, voortgezet door K. J. R. van Harderwijk; v. 7-8, 10-21, voortgezet door K. J. R. van Harderwijk en Dr. G. D. J. Schotel</md-description>
-  <md-description>Vol. 2 is in 4 pts.; v. 8, 12 and 17 in 2 pts. each, with continuous paging</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title biographisch woordenboek der nederlanden author aa abraham jacob van der medium book</recid>
-</hit>
-<hit>
- <md-title>De geschiedenis der Vereenigde Nederlanden, enderzelver buitenlandsche bezittingen</md-title>
- <md-title-remainder>geduurende de staatsen erfstadhouderlijke regeerwijze, ten tijde van Willem den Vierden; de vrouwe gouvernante Anna; en Willem den Vijfden</md-title-remainder>
- <md-date>1804-1810</md-date>
- <md-author>Aa, Cornelis van der</md-author>
- <md-description>Vol. 1 has half-title: De lotgewallen van de republiek der Veréénigde Nederlanden. Sints de invoering der staats- en erfstadhouderlijke regeerwijze in het jaar MDCCXLVII. Vol. 2-6: Geschiedenis der Veréénigde Nederlanden, 1747-1794</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2716091581">
-  <md-title>De geschiedenis der Vereenigde Nederlanden, enderzelver buitenlandsche bezittingen</md-title>
-  <md-title-remainder>geduurende de staatsen erfstadhouderlijke regeerwijze, ten tijde van Willem den Vierden; de vrouwe gouvernante Anna; en Willem den Vijfden</md-title-remainder>
-  <md-date>1804-1810</md-date>
-  <md-author>Aa, Cornelis van der</md-author>
-  <md-description>Vol. 1 has half-title: De lotgewallen van de republiek der Veréénigde Nederlanden. Sints de invoering der staats- en erfstadhouderlijke regeerwijze in het jaar MDCCXLVII. Vol. 2-6: Geschiedenis der Veréénigde Nederlanden, 1747-1794</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title de geschiedenis der vereenigde nederlanden enderzelver buitenlandsche bezittingen author aa cornelis van der medium book</recid>
-</hit>
-<hit>
- <md-title>Sketches from the ranch</md-title>
- <md-title-remainder>a Montana memoir</md-title-remainder>
- <md-date>1998</md-date>
- <md-author>Aadland, Dan</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="35736754">
-  <md-title>Sketches from the ranch</md-title>
-  <md-title-remainder>a Montana memoir</md-title-remainder>
-  <md-date>1998</md-date>
-  <md-author>Aadland, Dan</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title sketches from the ranch author aadland dan medium book</recid>
-</hit>
-<hit>
- <md-title>Economic value of pro-environmental farming</md-title>
- <md-title-remainder>a critical and decision-making oriented application of the contingent valuation method</md-title-remainder>
- <md-date>1999</md-date>
- <md-author>Aakkula, Jyrki J</md-author>
- <md-description>Originally presented as the author&apos;s dissertation (University of Helsinki, 1999)</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1650349223">
-  <md-title>Economic value of pro-environmental farming</md-title>
-  <md-title-remainder>a critical and decision-making oriented application of the contingent valuation method</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-author>Aakkula, Jyrki J</md-author>
-  <md-description>Originally presented as the author&apos;s dissertation (University of Helsinki, 1999)</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title economic value of pro environmental farming author aakkula jyrki j medium book</recid>
-</hit>
-<hit>
- <md-title>Digital signature blindness</md-title>
- <md-title-remainder>analysis of legislative approaches toward electronic authentication</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Aalberts, Babette</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3264961692">
-  <md-title>Digital signature blindness</md-title>
-  <md-title-remainder>analysis of legislative approaches toward electronic authentication</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Aalberts, Babette</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title digital signature blindness author aalberts babette medium book</recid>
-</hit>
-<hit>
- <md-title>Roof</md-title>
- <md-title-remainder>de ontvreemding van joods bezit tijdens de Tweede Wereldoorlog</md-title-remainder>
- <md-date>1999</md-date>
- <md-author>Aalders, Gerard</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="584606865">
-  <md-title>Roof</md-title>
-  <md-title-remainder>de ontvreemding van joods bezit tijdens de Tweede Wereldoorlog</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-author>Aalders, Gerard</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title roof author aalders gerard medium book</recid>
-</hit>
-<hit>
- <md-title>Als ik wil kan ik duiken--</md-title>
- <md-title-remainder>brieven van Claartje van Aals, verpleegster in de joods psychiatrische inrichting Het Apeldoornsche Bosch, 1940-1943</md-title-remainder>
- <md-date>1995</md-date>
- <md-author>Aals, Claartje van</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2199219334">
-  <md-title>Als ik wil kan ik duiken--</md-title>
-  <md-title-remainder>brieven van Claartje van Aals, verpleegster in de joods psychiatrische inrichting Het Apeldoornsche Bosch, 1940-1943</md-title-remainder>
-  <md-date>1995</md-date>
-  <md-author>Aals, Claartje van</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title als ik wil kan ik duiken author aals claartje van medium book</recid>
-</hit>
-<hit>
- <md-title>Sneeuwbeeld</md-title>
- <md-date>2000</md-date>
- <md-author>Aalten, Thomas van</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3813831803">
-  <md-title>Sneeuwbeeld</md-title>
-  <md-date>2000</md-date>
-  <md-author>Aalten, Thomas van</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title sneeuwbeeld author aalten thomas van medium book</recid>
-</hit>
-<hit>
- <md-title>Murrosikä ja sukupuoli</md-title>
- <md-title-remainder>julkiset ja yksityiset ikämäärittelyt</md-title-remainder>
- <md-date>1999</md-date>
- <md-author>Aapola, Sinikka</md-author>
+ <md-title>Homeward songs by the way</md-title>
+ <md-date>1895</md-date>
+ <md-author>AE</md-author>
+ <md-description>&quot;This book ... was issued by C. Whaley, Dublin, Ireland. First edition, June, 1894; second edition, January, 1895&quot;--P. 2</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1133476976">
-  <md-title>Murrosikä ja sukupuoli</md-title>
-  <md-title-remainder>julkiset ja yksityiset ikämäärittelyt</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-author>Aapola, Sinikka</md-author>
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Homeward songs by the way</md-title>
+  <md-date>1895</md-date>
+  <md-author>AE</md-author>
+  <md-description>&quot;Designs and headbands by Bruce Rogers&quot;--Colophon</md-description>
+  <md-description>&quot;Limited to 925 copies&quot;--Verso of t.p</md-description>
+  <md-description>&quot;This book ... was issued by C. Whaley, Dublin, Ireland. First edition, June, 1894; second edition, January, 1895&quot;--P. 2</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title murrosika ja sukupuoli author aapola sinikka medium book</recid>
+ <recid>content: title homeward songs by the way author ae medium book</recid>
 </hit>
 <hit>
- <md-title>Kunsten å bu i hus</md-title>
- <md-title-remainder>essay</md-title-remainder>
- <md-date>1999</md-date>
- <md-author>Aareskjold, Solveig</md-author>
+ <md-title>The divine vision, and other poems</md-title>
+ <md-date>1904</md-date>
+ <md-author>AE</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2748089445">
-  <md-title>Kunsten å bu i hus</md-title>
-  <md-title-remainder>essay</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-author>Aareskjold, Solveig</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title kunsten a bu i hus author aareskjold solveig medium book</recid>
-</hit>
-<hit>
- <md-title>Raimo Pullat</md-title>
- <md-title-remainder>valikbibliograafia, 1964-2000</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Aarma, Liivi</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="67734618">
-  <md-title>Raimo Pullat</md-title>
-  <md-title-remainder>valikbibliograafia, 1964-2000</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Aarma, Liivi</md-author>
+    name="LOC Solr Test" checksum="3781833939">
+  <md-title>The divine vision, and other poems</md-title>
+  <md-date>1904</md-date>
+  <md-author>AE</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title raimo pullat author aarma liivi medium book</recid>
+ <recid>content: title the divine vision and other poems author ae medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index e50db81..f8c51d4 100644 (file)
@@ -6,76 +6,6 @@
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>The children of Adam</md-title>
- <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
- <md-date>1996</md-date>
- <md-author>ʻUthmān, Fatḥī</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2167221470">
-  <md-title>The children of Adam</md-title>
-  <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
-  <md-date>1996</md-date>
-  <md-author>ʻUthmān, Fatḥī</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title the children of adam author uthma n fath i medium book</recid>
-</hit>
-<hit>
- <md-title>Botbāt nying-sāi nai kānphatthanā =</md-title>
- <md-title-remainder>Gender in development</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>ʻUthakī Chulamanī-Khamphui</md-author>
- <md-description>&quot;Khōngkān lēkthī Lāo/96/019.&quot;</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3781833939">
-  <md-title>Botbāt nying-sāi nai kānphatthanā =</md-title>
-  <md-title-remainder>Gender in development</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>ʻUthakī Chulamanī-Khamphui</md-author>
-  <md-description>&quot;Khōngkān lēkthī Lāo/96/019.&quot;</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title botba t nying sa i nai ka nphatthana author uthaki chulamani khamphui medium book</recid>
-</hit>
-<hit>
- <md-title>ʻĀrām lūang thī samkhan læ wat pračham ratchakān</md-title>
- <md-date>1998-2541</md-date>
- <md-author>ʻUrai Singphaibūnphō̜n</md-author>
- <md-description>Royal temples in Bangkok Thailand</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1101479112">
-  <md-title>ʻĀrām lūang thī samkhan læ wat pračham ratchakān</md-title>
-  <md-date>1998-2541</md-date>
-  <md-author>ʻUrai Singphaibūnphō̜n</md-author>
-  <md-description>Royal temples in Bangkok Thailand</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title a ra m lu ang thi samkhan l wat prac ham ratchaka n author urai singphaibu npho n medium book</recid>
-</hit>
-<hit>
- <md-title>Haẓrat ʻUmar ke sarkārī k̲h̲ut̤ūt̤</md-title>
- <md-date>1999</md-date>
- <md-author>ʻUmar ibn al-Khaṭṭāb</md-author>
- <md-description>Collection of official letters of Caliph Umar ibn al-Khattab, d. 644</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2716091581">
-  <md-title>Haẓrat ʻUmar ke sarkārī k̲h̲ut̤ūt̤</md-title>
-  <md-date>1999</md-date>
-  <md-author>ʻUmar ibn al-Khaṭṭāb</md-author>
-  <md-description>Collection of official letters of Caliph Umar ibn al-Khattab, d. 644</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title haz rat umar ke sarka ri k h ut u t author umar ibn al khat t a b medium book</recid>
-</hit>
-<hit>
  <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
  <md-date>2000</md-date>
  <md-author>ʼUi Mā Chamʻ</md-author>
  <recid>content: title kray krve pyak n n a chi sui sa author ui ma cham medium book</recid>
 </hit>
 <hit>
- <md-title>Kawīniphon ʻĪsān</md-title>
- <md-title-remainder>hīt sipsō̜ng khō̜ng sipsī</md-title-remainder>
- <md-date>1997-2540</md-date>
- <md-author>ʻUdom Būasī</md-author>
- <md-description>Depicts seasonal festivals and customs of Northeastern Thailand</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="35736754">
-  <md-title>Kawīniphon ʻĪsān</md-title>
-  <md-title-remainder>hīt sipsō̜ng khō̜ng sipsī</md-title-remainder>
-  <md-date>1997-2540</md-date>
-  <md-author>ʻUdom Būasī</md-author>
-  <md-description>Poems</md-description>
-  <md-description>Depicts seasonal festivals and customs of Northeastern Thailand</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title kawi niphon i sa n author udom bu asi medium book</recid>
-</hit>
-<hit>
- <md-title>Kānpariwat læ sưksā wikhro̜ wannakam phư̄nbān Phāk Tai praphēt nangsư̄ but rư̄ang Pō̜ngkhrok</md-title>
- <md-date>1999-2542</md-date>
- <md-author>ʻUbonsī ʻAtthaphan</md-author>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1650349223">
-  <md-title>Kānpariwat læ sưksā wikhro̜ wannakam phư̄nbān Phāk Tai praphēt nangsư̄ but rư̄ang Pō̜ngkhrok</md-title>
-  <md-date>1999-2542</md-date>
-  <md-author>ʻUbonsī ʻAtthaphan</md-author>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title ka npariwat l s ksa wikhro wannakam ph nba n pha k tai praphe t nangs but r ang po ngkhrok author ubonsi atthaphan medium book</recid>
-</hit>
-<hit>
- <md-title>Phlēng prakō̜p kānrīan kānsō̜n Phāsā Thai</md-title>
- <md-date>1999</md-date>
- <md-author>ʻUaichai Phakāmāt</md-author>
- <md-description>&quot;Khrōngkān tamrā wichākān rātchaphat chalœ̄m phrakīat nư̄ang nai warōkāt Phrabāt Somdet Phračhaoyūhūa song čharœ̄n phrachonmāyu khrop 6 rō̜p&quot;--Cover</md-description>
- <md-medium>book</md-medium>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3264961692">
-  <md-title>Phlēng prakō̜p kānrīan kānsō̜n Phāsā Thai</md-title>
-  <md-date>1999</md-date>
-  <md-author>ʻUaichai Phakāmāt</md-author>
-  <md-description>&quot;Khrōngkān tamrā wichākān rātchaphat chalœ̄m phrakīat nư̄ang nai warōkāt Phrabāt Somdet Phračhaoyūhūa song čharœ̄n phrachonmāyu khrop 6 rō̜p&quot;--Cover</md-description>
-  <md-description>Thai language learning and teaching through language, words, and phrases from Thai songs; academic rajabhat text in honor of His Majesty King Bhumibol&apos;s 72nd birthday celebration</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>1</count>
- <recid>content: title phle ng prako p ka nri an ka nso n pha sa thai author uaichai phaka ma t medium book</recid>
-</hit>
-<hit>
  <md-title>Mranʻ māʹ ruiʺ rā ʼa khā peʺ ʼoṅʻ mhanʻ duiṅʻyārī</md-title>
  <md-date>2000</md-date>
  <md-author>ʼOṅʻ Sanʻʺ</md-author>
  <recid>content: title the writings of general aung san author on chan medium book</recid>
 </hit>
 <hit>
- <md-title>Kotmāi pā chumchon thī prachāchon tō̜ngkān læ nǣothāng kānthamngān khō̜ng Khana ʻAnukammakān Pā Chumchon, Khana Kammakān Nayōbāi Pāmai hǣng Chāt</md-title>
- <md-date>1993-2536</md-date>
- <md-author>ʻŌ̜rawan Kritbunyarit</md-author>
- <md-description>Draft of communities demanded forestry law for conservation of forests in Northern Thailand and need for local community assertion in conservation affairs</md-description>
+ <md-title>ʼItyop̣yāwiw</md-title>
+ <md-title-remainder>bamānenatu felagā!</md-title-remainder>
+ <md-date>1991-1999</md-date>
+ <md-author>ʼÉrmyās Kabada Walda ʼIyasus</md-author>
+ <md-description>On the Ethiopian in search of his identity</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="584606865">
-  <md-title>Kotmāi pā chumchon thī prachāchon tō̜ngkān læ nǣothāng kānthamngān khō̜ng Khana ʻAnukammakān Pā Chumchon, Khana Kammakān Nayōbāi Pāmai hǣng Chāt</md-title>
-  <md-date>1993-2536</md-date>
-  <md-author>ʻŌ̜rawan Kritbunyarit</md-author>
-  <md-description>Draft of communities demanded forestry law for conservation of forests in Northern Thailand and need for local community assertion in conservation affairs</md-description>
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>ʼItyop̣yāwiw</md-title>
+  <md-title-remainder>bamānenatu felagā!</md-title-remainder>
+  <md-date>1991-1999</md-date>
+  <md-author>ʼÉrmyās Kabada Walda ʼIyasus</md-author>
+  <md-description>On the Ethiopian in search of his identity</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title kotma i pa chumchon thi pracha chon to ngka n l n otha ng ka nthamnga n kho ng khana anukammaka n pa chumchon khana kammaka n nayo ba i pa mai h ng cha t author o rawan kritbunyarit medium book</recid>
+ <recid>content: title ityop ya wiw author e rmya s kabada walda iyasus medium book</recid>
 </hit>
 <hit>
- <md-title>ʻĀtchayākō̜n dek ?</md-title>
- <md-date>2000-2543</md-date>
- <md-author>ʻŌ̜rasom Sutthisākhō̜n</md-author>
- <md-description>&quot;Sanapsanun kānwičhai chœ̄ng sārakhadī dōi Sathāban Wičhai Rabop Sāthāranasuk.&quot;</md-description>
+ <md-title>Bezay ṣawatā ʻebyat way meʻebāl yalebon!</md-title>
+ <md-author>ʼÉdanhāmar, Kārin</md-author>
+ <md-description>&quot;Tergum, ʼAbabā Hābtom&quot;--P. 4 of cover</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2199219334">
-  <md-title>ʻĀtchayākō̜n dek ?</md-title>
-  <md-date>2000-2543</md-date>
-  <md-author>ʻŌ̜rasom Sutthisākhō̜n</md-author>
-  <md-description>&quot;Sanapsanun kānwičhai chœ̄ng sārakhadī dōi Sathāban Wičhai Rabop Sāthāranasuk.&quot;</md-description>
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Bezay ṣawatā ʻebyat way meʻebāl yalebon!</md-title>
+  <md-author>ʼÉdanhāmar, Kārin</md-author>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;Tergum, ʼAbabā Hābtom&quot;--P. 4 of cover</md-description>
+  <md-description>Children&apos;s games for different age groups</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a tchaya ko n dek author o rasom sutthisa kho n medium book</recid>
+ <recid>content: title bezay s awata ebyat way me eba l yalebon author e danha mar ka rin medium book</recid>
 </hit>
 <hit>
- <md-title>Ko̜ Rattanakōsin</md-title>
- <md-date>1999-2542</md-date>
- <md-author>ʻŌ̜nsūang Butnāk</md-author>
- <md-description>Description of Bangkok, Thailand</md-description>
+ <md-title>Bhaṇʻ mha ʼa lvayʻ ta kū khyeʺ ṅve ra yū naññʻʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼEʺ Mi Khyui</md-author>
+ <md-description>On availing bank loans for doing business in Burma</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1133476976">
-  <md-title>Ko̜ Rattanakōsin</md-title>
-  <md-date>1999-2542</md-date>
-  <md-author>ʻŌ̜nsūang Butnāk</md-author>
-  <md-description>Description of Bangkok, Thailand</md-description>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Bhaṇʻ mha ʼa lvayʻ ta kū khyeʺ ṅve ra yū naññʻʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼEʺ Mi Khyui</md-author>
+  <md-description>On availing bank loans for doing business in Burma</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title ko rattanako sin author o nsu ang butna k medium book</recid>
+ <recid>content: title bhan mha a lvay ta ku khye n ve ra yu nan n author e mi khyui medium book</recid>
 </hit>
 <hit>
- <md-title>Panyā sāngsan čhāk rư̄an phư̄nthin</md-title>
+ <md-title>Ḥelmen tawas&apos;on He.Wa.Ḥā.Te. kābay nābay</md-title>
+ <md-date>1999</md-date>
+ <md-author>ʼEyāsu Gabrakidān</md-author>
+ <md-description>On alleged causes of conflict between Ethiopia and Eritrea in 1998</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Ḥelmen tawas&apos;on He.Wa.Ḥā.Te. kābay nābay</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʼEyāsu Gabrakidān</md-author>
+  <md-description>On alleged causes of conflict between Ethiopia and Eritrea in 1998</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title h elmen tawas on he wa h a te ka bay na bay author eya su gabrakida n medium book</recid>
+</hit>
+<hit>
+ <md-title>Moʻ la mruiṅʻ mruiʹ Kusināruṃ Bhu rāʺ samuiṅʻʺ</md-title>
  <md-date>2000</md-date>
- <md-author>ʻŌ̜nsiri Pānin</md-author>
- <md-description>Lecture held on September 15, 2000 at Sinlapakorn University on traditional domestic vernacular architecture in Thailand</md-description>
+ <md-author>ʼĀcāra</md-author>
+ <md-description>History and description of Kusināruṃ Bhu rāʺ, pagoda in Moulmein, Burma</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="67734618">
-  <md-title>Panyā sāngsan čhāk rư̄an phư̄nthin</md-title>
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Moʻ la mruiṅʻ mruiʹ Kusināruṃ Bhu rāʺ samuiṅʻʺ</md-title>
   <md-date>2000</md-date>
-  <md-author>ʻŌ̜nsiri Pānin</md-author>
-  <md-description>&quot;15 Kanyāyon 2543.&quot;</md-description>
-  <md-description>Lecture held on September 15, 2000 at Sinlapakorn University on traditional domestic vernacular architecture in Thailand</md-description>
+  <md-author>ʼĀcāra</md-author>
+  <md-description>History and description of Kusināruṃ Bhu rāʺ, pagoda in Moulmein, Burma</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title panya sa ngsan c ha k r an ph nthin author o nsiri pa nin medium book</recid>
+ <recid>content: title mo la mruin mrui kusina rum bhu ra samuin author a ca ra medium book</recid>
 </hit>
 <hit>
- <md-title>Rư̄an phư̄nbān Thai-Mō̜n =</md-title>
- <md-title-remainder>Thai-Mon vernacular houses</md-title-remainder>
- <md-date>2000-2543</md-date>
- <md-author>ʻŌ̜nsiri Pānin</md-author>
+ <md-title>Thu chacʻ so ʼipʻ makʻ rupʻ krvaṅʻʺ ʼa kroṅʻʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼAṅʻ kraṅʻʺ Mālā</md-author>
+ <md-description>Novel</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1682347087">
-  <md-title>Rư̄an phư̄nbān Thai-Mō̜n =</md-title>
-  <md-title-remainder>Thai-Mon vernacular houses</md-title-remainder>
-  <md-date>2000-2543</md-date>
-  <md-author>ʻŌ̜nsiri Pānin</md-author>
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Thu chacʻ so ʼipʻ makʻ rupʻ krvaṅʻʺ ʼa kroṅʻʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼAṅʻ kraṅʻʺ Mālā</md-author>
+  <md-description>Novel</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title thu chac so ip mak rup krvan a kron author an kran ma la medium book</recid>
+</hit>
+<hit>
+ <md-title>ʼAlmašam</md-title>
+ <md-title-remainder>yageṭem madbal</md-title-remainder>
+ <md-date>1993-2001</md-date>
+ <md-author>ʼAlamṡaḥay Dasālañ</md-author>
+ <md-description>Poems</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>ʼAlmašam</md-title>
+  <md-title-remainder>yageṭem madbal</md-title-remainder>
+  <md-date>1993-2001</md-date>
+  <md-author>ʼAlamṡaḥay Dasālañ</md-author>
+  <md-description>Poems</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title almas am author alams ah ay dasa lan medium book</recid>
+</hit>
+<hit>
+ <md-title>Yanaṣānat bāroč</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼAbél Śayfa</md-author>
+ <md-description>A novel</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Yanaṣānat bāroč</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼAbél Śayfa</md-author>
+  <md-description>A novel</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title yanas a nat ba roc author abe l s ayfa medium book</recid>
+</hit>
+<hit>
+ <md-title>Lamnam Lānnā</md-title>
+ <md-date>1998-2541</md-date>
+ <md-author>ʻƯ̄a Manīrat</md-author>
+ <md-description>About Northern Thailand</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>Lamnam Lānnā</md-title>
+  <md-date>1998-2541</md-date>
+  <md-author>ʻƯ̄a Manīrat</md-author>
+  <md-description>Poems</md-description>
+  <md-description>About Northern Thailand</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title r an ph nba n thai mo n author o nsiri pa nin medium book</recid>
+ <recid>content: title lamnam la nna author a mani rat medium book</recid>
+</hit>
+<hit>
+ <md-title>Lilit Khun Čhư̄ang</md-title>
+ <md-date>1999</md-date>
+ <md-author>ʻƯ̄a Manīrat</md-author>
+ <md-description>Thai fable retold in narrative poetry form</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3232963828">
+  <md-title>Lilit Khun Čhư̄ang</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʻƯ̄a Manīrat</md-author>
+  <md-description>Poem</md-description>
+  <md-description>Thai fable retold in narrative poetry form</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title lilit khun c h ang author a mani rat medium book</recid>
+</hit>
+<hit>
+ <md-title>Pannyā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʻǢngkham Sainyasuk</md-author>
+ <md-description>&quot;Nithān phư̄nmư̄ang Lāo; Lao Folktale; Chuyện côʼtićh Lào.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="552609001">
+  <md-title>Pannyā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʻǢngkham Sainyasuk</md-author>
+  <md-description>Children story</md-description>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;Nithān phư̄nmư̄ang Lāo; Lao Folktale; Chuyện côʼtićh Lào.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title pannya author ngkham sainyasuk medium book</recid>
+</hit>
+<hit>
+ <md-title>The children of Adam</md-title>
+ <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
+ <md-date>1996</md-date>
+ <md-author>ʻUthmān, Fatḥī</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>The children of Adam</md-title>
+  <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
+  <md-date>1996</md-date>
+  <md-author>ʻUthmān, Fatḥī</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <recid>content: title the children of adam author uthma n fath i medium book</recid>
 </hit>
 </show>
\ No newline at end of file
diff --git a/test/test_solr_39.res b/test/test_solr_39.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_solr_40.res b/test/test_solr_40.res
new file mode 100644 (file)
index 0000000..e6bd092
--- /dev/null
@@ -0,0 +1,380 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show><status>OK</status>
+<activeclients>0</activeclients>
+<merged>100</merged>
+<total>201695</total>
+<start>0</start>
+<num>20</num>
+<hit>
+ <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼUi Mā Chamʻ</md-author>
+ <md-description>Novel</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼUi Mā Chamʻ</md-author>
+  <md-description>Novel</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title kray krve pyak n n a chi sui sa author ui ma cham medium book</recid>
+</hit>
+<hit>
+ <md-title>Mranʻ māʹ ruiʺ rā ʼa khā peʺ ʼoṅʻ mhanʻ duiṅʻyārī</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Sanʻʺ</md-author>
+ <md-description>Almanac, 2000</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Mranʻ māʹ ruiʺ rā ʼa khā peʺ ʼoṅʻ mhanʻ duiṅʻyārī</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Sanʻʺ</md-author>
+  <md-description>Almanac, 2000</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title mran ma rui ra a kha pe on mhan duin ya ri author on san medium book</recid>
+</hit>
+<hit>
+ <md-title>Peʺ chapʻ khraṅʻʺ nhaṅʻʹ ʼa khrāʺ vatthu tui myāʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Sanʻʺ</md-author>
+ <md-description>Short stories</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Peʺ chapʻ khraṅʻʺ nhaṅʻʹ ʼa khrāʺ vatthu tui myāʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Sanʻʺ</md-author>
+  <md-description>Short stories</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title pe chap khran nhan a khra vatthu tui mya author on san medium book</recid>
+</hit>
+<hit>
+ <md-title>Loka krīʺ mhā dī lui pai</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Koṅʻʺ</md-author>
+ <md-description>Satires</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Loka krīʺ mhā dī lui pai</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Koṅʻʺ</md-author>
+  <md-description>Satires</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title loka kri mha di lui pai author on kon medium book</recid>
+</hit>
+<hit>
+ <md-title>Dutiya Mranʻ mā Nuiṅʻ ṅaṃ toʻ nhaṅʻʹ Bhu raṅʻʹ noṅʻ Kyoʻ thaṅʻ Noʻrathā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Khaṅʻ Cuiʺ</md-author>
+ <md-description>Life and times of Burmese King Bayinnaung, of Toungoo, fl. 1551-1581</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Dutiya Mranʻ mā Nuiṅʻ ṅaṃ toʻ nhaṅʻʹ Bhu raṅʻʹ noṅʻ Kyoʻ thaṅʻ Noʻrathā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Khaṅʻ Cuiʺ</md-author>
+  <md-description>Life and times of Burmese King Bayinnaung, of Toungoo, fl. 1551-1581</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title dutiya mran ma nuin n am to nhan bhu ran non kyo than no ratha author on khan cui medium book</recid>
+</hit>
+<hit>
+ <md-title>Natʻ syhaṅʻ noṅʻ nhaṅʻʹ Rājādhātukalyā =</md-title>
+ <md-title-remainder>Natshinnaung and Yaza Dartukalya</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Hinʻʺ Kyoʻ</md-author>
+ <md-description>About Natʻsyhaṅʻnoṅʻ, 1577-1613, prince of Toungoo, and princess of Hanthawaddy Rājadhātukalyā, and their times</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Natʻ syhaṅʻ noṅʻ nhaṅʻʹ Rājādhātukalyā =</md-title>
+  <md-title-remainder>Natshinnaung and Yaza Dartukalya</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Hinʻʺ Kyoʻ</md-author>
+  <md-description>Cover title</md-description>
+  <md-description>About Natʻsyhaṅʻnoṅʻ, 1577-1613, prince of Toungoo, and princess of Hanthawaddy Rājadhātukalyā, and their times</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title nat syhan non nhan ra ja dha tukalya author on hin kyo medium book</recid>
+</hit>
+<hit>
+ <md-title>Sanʻʺ rhacʻ chayʻ phracʻ lā khaiʹ lyhaṅʻ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Cuiʺ</md-author>
+ <md-description>&quot;1998 khu nhacʻ, Cā pe Bimānʻ cā mū chu, sutapadesā (sippaṃ nhaṅʻʹ ʼa suṃʺ khya paññā rapʻ) pathama chu.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Sanʻʺ rhacʻ chayʻ phracʻ lā khaiʹ lyhaṅʻ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Cuiʺ</md-author>
+  <md-description>&quot;1998 khu nhacʻ, Cā pe Bimānʻ cā mū chu, sutapadesā (sippaṃ nhaṅʻʹ ʼa suṃʺ khya paññā rapʻ) pathama chu.&quot;</md-description>
+  <md-description>Agricultural yields in Burma</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title san rhac chay phrac la khai lyhan author on cui medium book</recid>
+</hit>
+<hit>
+ <md-title>The writings of General Aung San</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Chanʻʺ</md-author>
+ <md-description>Writings of the statesman and leader of freedom struggle in Burma</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>The writings of General Aung San</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Chanʻʺ</md-author>
+  <md-description>Writings of the statesman and leader of freedom struggle in Burma</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title the writings of general aung san author on chan medium book</recid>
+</hit>
+<hit>
+ <md-title>ʼItyop̣yāwiw</md-title>
+ <md-title-remainder>bamānenatu felagā!</md-title-remainder>
+ <md-date>1991-1999</md-date>
+ <md-author>ʼÉrmyās Kabada Walda ʼIyasus</md-author>
+ <md-description>On the Ethiopian in search of his identity</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>ʼItyop̣yāwiw</md-title>
+  <md-title-remainder>bamānenatu felagā!</md-title-remainder>
+  <md-date>1991-1999</md-date>
+  <md-author>ʼÉrmyās Kabada Walda ʼIyasus</md-author>
+  <md-description>On the Ethiopian in search of his identity</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title ityop ya wiw author e rmya s kabada walda iyasus medium book</recid>
+</hit>
+<hit>
+ <md-title>Bezay ṣawatā ʻebyat way meʻebāl yalebon!</md-title>
+ <md-author>ʼÉdanhāmar, Kārin</md-author>
+ <md-description>&quot;Tergum, ʼAbabā Hābtom&quot;--P. 4 of cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Bezay ṣawatā ʻebyat way meʻebāl yalebon!</md-title>
+  <md-author>ʼÉdanhāmar, Kārin</md-author>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;Tergum, ʼAbabā Hābtom&quot;--P. 4 of cover</md-description>
+  <md-description>Children&apos;s games for different age groups</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title bezay s awata ebyat way me eba l yalebon author e danha mar ka rin medium book</recid>
+</hit>
+<hit>
+ <md-title>Bhaṇʻ mha ʼa lvayʻ ta kū khyeʺ ṅve ra yū naññʻʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼEʺ Mi Khyui</md-author>
+ <md-description>On availing bank loans for doing business in Burma</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Bhaṇʻ mha ʼa lvayʻ ta kū khyeʺ ṅve ra yū naññʻʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼEʺ Mi Khyui</md-author>
+  <md-description>On availing bank loans for doing business in Burma</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title bhan mha a lvay ta ku khye n ve ra yu nan n author e mi khyui medium book</recid>
+</hit>
+<hit>
+ <md-title>Ḥelmen tawas&apos;on He.Wa.Ḥā.Te. kābay nābay</md-title>
+ <md-date>1999</md-date>
+ <md-author>ʼEyāsu Gabrakidān</md-author>
+ <md-description>On alleged causes of conflict between Ethiopia and Eritrea in 1998</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Ḥelmen tawas&apos;on He.Wa.Ḥā.Te. kābay nābay</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʼEyāsu Gabrakidān</md-author>
+  <md-description>On alleged causes of conflict between Ethiopia and Eritrea in 1998</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title h elmen tawas on he wa h a te ka bay na bay author eya su gabrakida n medium book</recid>
+</hit>
+<hit>
+ <md-title>Moʻ la mruiṅʻ mruiʹ Kusināruṃ Bhu rāʺ samuiṅʻʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼĀcāra</md-author>
+ <md-description>History and description of Kusināruṃ Bhu rāʺ, pagoda in Moulmein, Burma</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Moʻ la mruiṅʻ mruiʹ Kusināruṃ Bhu rāʺ samuiṅʻʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼĀcāra</md-author>
+  <md-description>History and description of Kusināruṃ Bhu rāʺ, pagoda in Moulmein, Burma</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title mo la mruin mrui kusina rum bhu ra samuin author a ca ra medium book</recid>
+</hit>
+<hit>
+ <md-title>Thu chacʻ so ʼipʻ makʻ rupʻ krvaṅʻʺ ʼa kroṅʻʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼAṅʻ kraṅʻʺ Mālā</md-author>
+ <md-description>Novel</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Thu chacʻ so ʼipʻ makʻ rupʻ krvaṅʻʺ ʼa kroṅʻʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼAṅʻ kraṅʻʺ Mālā</md-author>
+  <md-description>Novel</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title thu chac so ip mak rup krvan a kron author an kran ma la medium book</recid>
+</hit>
+<hit>
+ <md-title>ʼAlmašam</md-title>
+ <md-title-remainder>yageṭem madbal</md-title-remainder>
+ <md-date>1993-2001</md-date>
+ <md-author>ʼAlamṡaḥay Dasālañ</md-author>
+ <md-description>Poems</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>ʼAlmašam</md-title>
+  <md-title-remainder>yageṭem madbal</md-title-remainder>
+  <md-date>1993-2001</md-date>
+  <md-author>ʼAlamṡaḥay Dasālañ</md-author>
+  <md-description>Poems</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title almas am author alams ah ay dasa lan medium book</recid>
+</hit>
+<hit>
+ <md-title>Yanaṣānat bāroč</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼAbél Śayfa</md-author>
+ <md-description>A novel</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Yanaṣānat bāroč</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼAbél Śayfa</md-author>
+  <md-description>A novel</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title yanas a nat ba roc author abe l s ayfa medium book</recid>
+</hit>
+<hit>
+ <md-title>Lamnam Lānnā</md-title>
+ <md-date>1998-2541</md-date>
+ <md-author>ʻƯ̄a Manīrat</md-author>
+ <md-description>About Northern Thailand</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>Lamnam Lānnā</md-title>
+  <md-date>1998-2541</md-date>
+  <md-author>ʻƯ̄a Manīrat</md-author>
+  <md-description>Poems</md-description>
+  <md-description>About Northern Thailand</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title lamnam la nna author a mani rat medium book</recid>
+</hit>
+<hit>
+ <md-title>Lilit Khun Čhư̄ang</md-title>
+ <md-date>1999</md-date>
+ <md-author>ʻƯ̄a Manīrat</md-author>
+ <md-description>Thai fable retold in narrative poetry form</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3232963828">
+  <md-title>Lilit Khun Čhư̄ang</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʻƯ̄a Manīrat</md-author>
+  <md-description>Poem</md-description>
+  <md-description>Thai fable retold in narrative poetry form</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title lilit khun c h ang author a mani rat medium book</recid>
+</hit>
+<hit>
+ <md-title>Pannyā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʻǢngkham Sainyasuk</md-author>
+ <md-description>&quot;Nithān phư̄nmư̄ang Lāo; Lao Folktale; Chuyện côʼtićh Lào.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="552609001">
+  <md-title>Pannyā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʻǢngkham Sainyasuk</md-author>
+  <md-description>Children story</md-description>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;Nithān phư̄nmư̄ang Lāo; Lao Folktale; Chuyện côʼtićh Lào.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title pannya author ngkham sainyasuk medium book</recid>
+</hit>
+<hit>
+ <md-title>The children of Adam</md-title>
+ <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
+ <md-date>1996</md-date>
+ <md-author>ʻUthmān, Fatḥī</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>The children of Adam</md-title>
+  <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
+  <md-date>1996</md-date>
+  <md-author>ʻUthmān, Fatḥī</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title the children of adam author uthma n fath i medium book</recid>
+</hit>
+</show>
\ No newline at end of file