Merge with master
authorDennis Schafroth <dennis@indexdata.com>
Thu, 4 Oct 2012 17:36:43 +0000 (19:36 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Thu, 4 Oct 2012 17:36:43 +0000 (19:36 +0200)
13 files changed:
src/client.c
src/client.h
src/http_command.c
src/reclists.c
src/reclists.h
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_settings_1.xml

index 73bdb49..30ef040 100644 (file)
@@ -615,8 +615,7 @@ static void client_record_ingest(struct client *cl)
     }
     else
     {
-        yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d",
-                offset);
+        yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d", offset);
     }
 }
 
@@ -753,7 +752,7 @@ void client_start_search(struct client *cl)
     const char *opt_preferred   = session_setting_oneval(sdb, PZ_PREFERRED);
     const char *extra_args      = session_setting_oneval(sdb, PZ_EXTRA_ARGS);
     const char *opt_present_chunk = session_setting_oneval(sdb, PZ_PRESENT_CHUNK);
-    ZOOM_query q;
+    ZOOM_query query;
     char maxrecs_str[24], startrecs_str[24], present_chunk_str[24];
     int present_chunk = 20; // Default chunk size
     if (opt_present_chunk && strcmp(opt_present_chunk,"")) {
@@ -814,26 +813,26 @@ void client_start_search(struct client *cl)
     /* facets definition is in PQF */
     client_set_facets_request(cl, link);
 
-    q = ZOOM_query_create();
+    query = ZOOM_query_create();
     if (cl->cqlquery)
     {
         yaz_log(YLOG_LOG, "Client %s: Search CQL: %s", client_get_id(cl), cl->cqlquery);
-        ZOOM_query_cql(q, cl->cqlquery);
+        ZOOM_query_cql(query, cl->cqlquery);
         if (*opt_sort)
-            ZOOM_query_sortby(q, opt_sort);
+            ZOOM_query_sortby(query, opt_sort);
     }
     else
     {
         yaz_log(YLOG_LOG, "Client %s: Search PQF: %s", client_get_id(cl), cl->pquery);
 
-        ZOOM_query_prefix(q, cl->pquery);
+        ZOOM_query_prefix(query, cl->pquery);
     }
     if (se->sorted_results)
     {   /* first entry is current sorting ! */
         const char *sort_strategy_and_spec =
-            get_strategy_plus_sort(cl, se->sorted_results->field);
+            get_strategy_plus_sort(cl, se->sorted_results->name);
         int increasing = se->sorted_results->increasing;
-        // int position = se->sorted_results->position;
+        // int position = se->sorted_results->type;
         if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
         {
             char spec[50], *p;
@@ -849,17 +848,17 @@ void client_start_search(struct client *cl)
                 else
                     strcat(p, " >");
                 yaz_log(YLOG_LOG, "Client %s: applying sorting %s %s", client_get_id(cl), spec, p);
-                ZOOM_query_sortby2(q, spec, p);
+                ZOOM_query_sortby2(query, spec, p);
             }
         }
         else
         {
-            /* no native sorting.. If this is not the first search, then
-               skip it entirely */
+            /* no native sorting.. If this is not the first search, then skip it entirely */
             if (se->sorted_results->next)
             {
+                // TODO this seems wrong. Need to re-ingest instead?
                 yaz_log(YLOG_DEBUG,"Client %s: Do not (re)search anyway", client_get_id(cl));
-                ZOOM_query_destroy(q);
+                ZOOM_query_destroy(query);
                 return;
             }
         }
@@ -868,8 +867,8 @@ void client_start_search(struct client *cl)
     client_set_state(cl, Client_Working);
     cl->hits = 0;
     cl->record_offset = 0;
-    rs = ZOOM_connection_search(link, q);
-    ZOOM_query_destroy(q);
+    rs = ZOOM_connection_search(link, query);
+    ZOOM_query_destroy(query);
     ZOOM_resultset_destroy(cl->resultset);
     cl->resultset = rs;
     connection_continue(co);
@@ -1498,6 +1497,11 @@ static void client_suggestions_destroy(struct client *cl)
     nmem_destroy(nmem);
 }
 
+int client_test_sort_order(struct client *cl, struct reclist_sortparms *sp)
+{
+    //TODO implement correctly.
+    return 1;
+}
 /*
  * Local variables:
  * c-basic-offset: 4
index 300caa7..8f62a23 100644 (file)
@@ -111,6 +111,9 @@ const char *client_get_facet_limit_local(struct client *cl,
                                          struct session_database *sdb,
                                          int *l,
                                          NMEM nmem, int *num, char ***values);
+
+int client_test_sort_order(struct client *cl, struct reclist_sortparms *sp);
+
 #endif
 
 /*
index c752b53..8887e91 100644 (file)
@@ -1205,7 +1205,7 @@ static void cmd_show(struct http_channel *c)
         release_session(c, s);
         return;
     }
-    session_sort(s->psession, sp->name, sp->increasing, sp->type == Metadata_sortkey_position);
+    session_sort(s->psession, sp);
 
     status = session_active_clients(s->psession);
 
index 097b8c7..c4dd4e1 100644 (file)
@@ -398,6 +398,16 @@ struct record_cluster *reclist_insert(struct reclist *l,
     return cluster;
 }
 
+int reclist_sortparms_cmp(struct reclist_sortparms *sort1, struct reclist_sortparms *sort2)
+{
+    int rc;
+    if (sort1 == sort2)
+        return 0;
+    if (sort1 == 0 || sort2 == 0)
+        return 1;
+    rc = strcmp(sort1->name, sort2->name) || sort1->increasing != sort2->increasing || sort1->type != sort2->type;
+    return rc;
+}
 /*
  * Local variables:
  * c-basic-offset: 4
index 40bcdf9..818aea5 100644 (file)
@@ -50,6 +50,7 @@ struct reclist_sortparms *reclist_parse_sortparms(NMEM nmem, const char *parms,
 
 int reclist_get_num_records(struct reclist *l);
 struct record_cluster *reclist_get_cluster(struct reclist *l, int i);
+int reclist_sortparms_cmp(struct reclist_sortparms *sort1, struct reclist_sortparms *sort2);
 
 #endif
 
index bb8cc7f..4900bd2 100644 (file)
@@ -619,8 +619,7 @@ int session_is_preferred_clients_ready(struct session *s)
     return res == 0;
 }
 
-static void session_clear_set(struct session *se,
-                              const char *sort_field, int increasing, int position)
+static void session_clear_set(struct session *se, struct reclist_sortparms *sp)
 {
     reclist_destroy(se->reclist);
     se->reclist = 0;
@@ -633,55 +632,67 @@ static void session_clear_set(struct session *se,
 
     /* reset list of sorted results and clear to relevance search */
     se->sorted_results = nmem_malloc(se->nmem, sizeof(*se->sorted_results));
-    se->sorted_results->field = nmem_strdup(se->nmem, sort_field);
-    se->sorted_results->increasing = increasing;
-    se->sorted_results->position = position;
+    se->sorted_results->name = nmem_strdup(se->nmem, sp->name);
+    se->sorted_results->increasing = sp->increasing;
+    se->sorted_results->type = sp->type;
     se->sorted_results->next = 0;
 
-    session_log(se, YLOG_DEBUG, "clear_set session_sort: field=%s increasing=%d position=%d configured",
-                sort_field, increasing, position);
+    session_log(se, YLOG_DEBUG, "clear_set session_sort: field=%s increasing=%d type=%d configured",
+            sp->name, sp->increasing, sp->type);
 
     se->reclist = reclist_create(se->nmem);
 }
 
-void session_sort(struct session *se, const char *field, int increasing,
-                  int position)
+void session_sort(struct session *se, struct reclist_sortparms *sp)
 {
-    struct session_sorted_results *sr;
+    struct reclist_sortparms *sr;
     struct client_list *l;
-
+    const char *field = sp->name;
+    int increasing = sp->increasing;
+    int type  = sp->type;
+    int clients_research = 0;
     session_enter(se);
 
-    yaz_log(YLOG_LOG, "session_sort field=%s increasing=%d position=%d", field, increasing, position);
-    /* see if we already have sorted for this critieria */
+    yaz_log(YLOG_LOG, "session_sort field=%s increasing=%d type=%d", field, increasing, type);
+    /* see if we already have sorted for this criteria */
     for (sr = se->sorted_results; sr; sr = sr->next)
     {
-        if (!strcmp(field, sr->field) && increasing == sr->increasing && sr->position == position)
+        if (!reclist_sortparms_cmp(sr,sp))
             break;
     }
     if (sr)
     {
-        session_log(se, YLOG_DEBUG, "search_sort: field=%s increasing=%d position=%d already fetched",
-                    field, increasing, position);
+        session_log(se, YLOG_DEBUG, "search_sort: field=%s increasing=%d type=%d already fetched",
+                    field, increasing, type);
         session_leave(se);
         return;
     }
-    session_log(se, YLOG_DEBUG, "search_sort: field=%s increasing=%d position=%d must fetch",
-                field, increasing, position);
-    if (position)
+    session_log(se, YLOG_DEBUG, "search_sort: field=%s increasing=%d type=%d must fetch",
+                    field, increasing, type);
+
+    // We need to reset reclist on every sort that changes the records, not just for position
+    // So if just one client requires new searching, we need to clear set.
+    // Ask each of the client if sorting requires re-search due to native sort
+    // If it does it will require us to
+    for (l = se->clients_active; l; l = l->next)
     {
-        yaz_log(YLOG_DEBUG, "Reset results due to position");
-        session_clear_set(se, field, increasing, position);
+        struct client *cl = l->client;
+        clients_research += client_test_sort_order(cl, sp);
+    }
+    if (clients_research) {
+        yaz_log(YLOG_DEBUG, "Reset results due to %d clients researching");
+        session_clear_set(se, sp);
     }
     else {
+        // A new sorting based on same record set
         sr = nmem_malloc(se->nmem, sizeof(*sr));
-        sr->field = nmem_strdup(se->nmem, field);
+        sr->name = nmem_strdup(se->nmem, field);
         sr->increasing = increasing;
-        sr->position = position;
+        sr->type = type;
         sr->next = se->sorted_results;
         se->sorted_results = sr;
     }
-    yaz_log(YLOG_DEBUG, "Restarting search for clients due to change in sort order");
+    // yaz_log(YLOG_DEBUG, "Restarting search or re-ingesting for clients due to change in sort order");
 
     for (l = se->clients_active; l; l = l->next)
     {
@@ -689,8 +700,14 @@ void session_sort(struct session *se, const char *field, int increasing,
         if (client_get_state(cl) == Client_Connecting ||
             client_get_state(cl) == Client_Idle ||
             client_get_state(cl) == Client_Working) {
-            yaz_log(YLOG_DEBUG, "Client %s: Restarting search due to change in sort order", client_get_id(cl));
-            client_start_search(cl);
+            if (client_test_sort_order(cl, sp)) {
+                yaz_log(YLOG_DEBUG, "Client %s: Restarting search due to change in sort order", client_get_id(cl));
+                client_start_search(cl);
+            }
+            else {
+                yaz_log(YLOG_DEBUG, "Client %s: Reingesting due to change in sort order", client_get_id(cl));
+                client_reingest(cl);
+            }
         }
     }
     session_leave(se);
@@ -712,6 +729,7 @@ enum pazpar2_error_code session_search(struct session *se,
     struct client_list *l, *l0;
     struct timeval tval;
     facet_limits_t facet_limits;
+    int same_sort_order = 0;
 
     session_log(se, YLOG_DEBUG, "Search");
 
@@ -724,7 +742,12 @@ enum pazpar2_error_code session_search(struct session *se,
 
     session_enter(se);
     se->settings_modified = 0;
-    session_clear_set(se, sp->name, sp->increasing, sp->type == Metadata_sortkey_position);
+
+    if (se->sorted_results) {
+        if (!reclist_sortparms_cmp(se->sorted_results, sp))
+            same_sort_order = 1;
+    }
+    session_clear_set(se, sp);
     relevance_destroy(&se->relevance);
 
     live_channels = select_targets(se, filter);
@@ -773,7 +796,7 @@ enum pazpar2_error_code session_search(struct session *se,
                                        se->service->z3950_session_timeout,
                                        se->service->server->iochan_man,
                                        &tval);
-            if (parse_ret == 1 && r == 2)
+            if (parse_ret == 1 && r == 2 && same_sort_order)
             {
                 session_log(se, YLOG_LOG, "client %s REUSE result", client_get_id(cl));
                 client_reingest(cl);
@@ -959,6 +982,8 @@ struct session *new_session(NMEM nmem, struct conf_service *service,
     session->session_nmem = nmem;
     session->nmem = nmem_create();
     session->databases = 0;
+    session->sorted_results = 0;
+
     for (i = 0; i <= SESSION_WATCH_MAX; i++)
     {
         session->watchlist[i].data = 0;
index 45fdbb3..6a4bf31 100644 (file)
@@ -119,7 +119,7 @@ struct session {
     YAZ_MUTEX session_mutex;
     unsigned session_id;
     int settings_modified;
-    struct session_sorted_results *sorted_results;
+    struct reclist_sortparms *sorted_results;
 };
 
 struct statistics {
@@ -156,7 +156,7 @@ void session_destroy(struct session *s);
 void session_init_databases(struct session *s);
 void statistics(struct session *s, struct statistics *stat);
 
-void session_sort(struct session *se, const char *field, int increasing, int clear_set);
+void session_sort(struct session *se, struct reclist_sortparms *sp);
 
 enum pazpar2_error_code session_search(struct session *s, const char *query,
                                        const char *startrecs,
@@ -193,13 +193,6 @@ void session_log(struct session *s, int level, const char *fmt, ...)
     ;
 #endif
 
-struct session_sorted_results {
-    const char *field;
-    int increasing;
-    int position;
-    struct session_sorted_results *next;
-};
-
 /*
  * Local variables:
  * c-basic-offset: 4
index 8f9ce7f..93d143a 100644 (file)
@@ -28,11 +28,11 @@ http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Csubj
 http://localhost:9763/search.pz2?session=1&command=search&query=water&limit=subject%3DN.Y
 3 http://localhost:9763/search.pz2?session=1&command=show
 test_solr_settings_6.xml http://localhost:9763/search.pz2?session=1&command=settings
-http://localhost:9763/search.pz2?session=1&command=search&query=water&sort=date:1
+http://localhost:9763/search.pz2?session=1&command=search&query=date%3D%3F&sort=date:1
 http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=date:1
-http://localhost:9763/search.pz2?session=1&command=search&query=water&sort=date:0
+http://localhost:9763/search.pz2?session=1&command=search&query=date%3D%3F&sort=date:0
 http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=date:0
-http://localhost:9763/search.pz2?session=1&command=search&query=water&sort=author:1
+http://localhost:9763/search.pz2?session=1&command=search&query=au%3D%3F&sort=author:1
 http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=author:1
-http://localhost:9763/search.pz2?session=1&command=search&query=water&sort=author:0
-http://localhost:9763/search.pz2?session=1&command=show&block=1&sort=author:0
\ No newline at end of file
+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
index 01b8dc9..8c08103 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>97</merged>
-<total>1995</total>
+<merged>99</merged>
+<total>249403</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>A treatise on water-works for conveying and distributing supplies of water;</md-title>
- <md-title-remainder>with tables and examples</md-title-remainder>
- <md-date>1835</md-date>
- <md-author>Storrow, Charles S</md-author>
+ <md-title>Electric gas lighting;</md-title>
+ <md-title-remainder>how to install electric gas igniting apparatus, including the jump spark and multiple systems, for use in houses, churches, theatres, halls, schools, stores or any large buildings, also the care and selection of suitable batteries, wiring and repairs</md-title-remainder>
+ <md-date>1091</md-date>
+ <md-author>Schneider, Norman H</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3424951012">
-  <md-title>A treatise on water-works for conveying and distributing supplies of water;</md-title>
-  <md-title-remainder>with tables and examples</md-title-remainder>
-  <md-date>1835</md-date>
-  <md-author>Storrow, Charles S</md-author>
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Electric gas lighting;</md-title>
+  <md-title-remainder>how to install electric gas igniting apparatus, including the jump spark and multiple systems, for use in houses, churches, theatres, halls, schools, stores or any large buildings, also the care and selection of suitable batteries, wiring and repairs</md-title-remainder>
+  <md-date>1091</md-date>
+  <md-author>Schneider, Norman H</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a treatise on water works for conveying and distributing supplies of water author storrow charles s medium book</recid>
+ <recid>content: title electric gas lighting author schneider norman h medium book</recid>
 </hit>
 <hit>
- <md-title>Spring water, versus river water, for supplying the city of New-York</md-title>
- <md-title-remainder>also an examinination of the Water Commissioners report of Nov. 1833</md-title-remainder>
- <md-date>1835</md-date>
- <md-author>Hale, M</md-author>
+ <md-title>Books in their seasons</md-title>
+ <md-date>1095</md-date>
+ <md-author>Marble, Annie Russell</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="4069814715">
-  <md-title>Spring water, versus river water, for supplying the city of New-York</md-title>
-  <md-title-remainder>also an examinination of the Water Commissioners report of Nov. 1833</md-title-remainder>
-  <md-date>1835</md-date>
-  <md-author>Hale, M</md-author>
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Books in their seasons</md-title>
+  <md-date>1095</md-date>
+  <md-author>Marble, Annie Russell</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title spring water versus river water for supplying the city of new york author hale m medium book</recid>
+ <recid>content: title books in their seasons author marble annie russell medium book</recid>
 </hit>
 <hit>
- <md-title>Report in relation to the water power on the line of the James River and Kanawha Canal</md-title>
- <md-date>1839</md-date>
- <md-author>Ellet, Charles</md-author>
+ <md-title>Pii II Pontificis Maximi d[e] captione vrbis Co[n]stantinopolitane tractatul[us]</md-title>
+ <md-date>1474</md-date>
+ <md-author>Pius</md-author>
+ <md-description>Title from incipit; imprint from Goff; Pellechet attributes it to the press of Johannes Schurener</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="195726074">
-  <md-title>Report in relation to the water power on the line of the James River and Kanawha Canal</md-title>
-  <md-date>1839</md-date>
-  <md-author>Ellet, Charles</md-author>
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Pii II Pontificis Maximi d[e] captione vrbis Co[n]stantinopolitane tractatul[us]</md-title>
+  <md-date>1474</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Title from incipit; imprint from Goff; Pellechet attributes it to the press of Johannes Schurener</md-description>
+  <md-description>Signatures: [1]⁴</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report in relation to the water power on the line of the james river and kanawha canal author ellet charles medium book</recid>
+ <recid>content: title pii ii pontificis maximi d e captione vrbis co n stantinopolitane tractatul us author pius medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the Water Commissioners on the material best adapted for distribution water pipes</md-title>
- <md-title-remainder>and on the most economical mode of introducing water in private houses</md-title-remainder>
- <md-date>1848</md-date>
- <md-description>Appendix contains reports by Eben N. Horsford and others</md-description>
+ <md-title>Incipit sompnium Enee Siluii poete laureati de fortuna</md-title>
+ <md-date>1475-1476</md-date>
+ <md-author>Pius</md-author>
+ <md-description>LC copy has signed binding: KA [?] 1902.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="227723938">
-  <md-title>Report of the Water Commissioners on the material best adapted for distribution water pipes</md-title>
-  <md-title-remainder>and on the most economical mode of introducing water in private houses</md-title-remainder>
-  <md-date>1848</md-date>
-  <md-description>Signed: Nathan Hale, Thomas B. Curtis</md-description>
-  <md-description>Issued as City document no. 32, 1848</md-description>
-  <md-description>Appendix contains reports by Eben N. Horsford and others</md-description>
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Incipit sompnium Enee Siluii poete laureati de fortuna</md-title>
+  <md-date>1475-1476</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Imprint from Goff</md-description>
+  <md-description>Addressed to Procopius de Rabensteyn</md-description>
+  <md-description>Signatures: [1]¹⁰</md-description>
+  <md-description>LC copy has signed binding: KA [?] 1902.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the water commissioners on the material best adapted for distribution water pipes medium book</recid>
+ <recid>content: title incipit sompnium enee siluii poete laureati de fortuna author pius medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855</md-title>
- <md-date>1855</md-date>
+ <md-title>Interogatorium, siue, Confessionale</md-title>
+ <md-date>1475</md-date>
+ <md-author>Bartholomaeus</md-author>
+ <md-description>Elegiacs from Valdarfer&apos;s Milan edition of 29 September 1474: p. [199]</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1650349223">
-  <md-title>Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855</md-title>
-  <md-date>1855</md-date>
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Interogatorium, siue, Confessionale</md-title>
+  <md-date>1475</md-date>
+  <md-author>Bartholomaeus</md-author>
+  <md-description>Uniform title from Goff; title from incipit; imprint from Goff</md-description>
+  <md-description>Signatures: [1-10]¹⁰</md-description>
+  <md-description>Elegiacs from Valdarfer&apos;s Milan edition of 29 September 1474: p. [199]</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the directors of the boston water power company to its stockholders april medium book</recid>
+ <recid>content: title interogatorium siue confessionale author bartholomaeus medium book</recid>
 </hit>
 <hit>
- <md-title>Schultz and Warker&apos;s mineral spring waters</md-title>
- <md-title-remainder>their chemical composition, physiological action and therapeutical use; with a short review of the history of mineral waters</md-title-remainder>
- <md-date>1865</md-date>
- <md-author>Schultz, Carl H</md-author>
+ <md-title>Tabula co[m]posita a d[omi]no Alberto de Ferrariis vtriusq[ue] iuris doctor[e] d[e] Placentia super i[n]frascripto opusculo de horis canonicis in modu[m] ut seq[ui]t[ur]</md-title>
+ <md-date>1475</md-date>
+ <md-author>Ferrariis, Albertus de</md-author>
+ <md-description>Attributed by Hain and others to Alberto Trotti; cf. L.A. Sheppard, &quot;Albertus Trottus and Albertus de Ferrariis&quot; in The library, v. 5, no. 2 (Sept./Dec. 1947), p. 158-159</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3488946740">
-  <md-title>Schultz and Warker&apos;s mineral spring waters</md-title>
-  <md-title-remainder>their chemical composition, physiological action and therapeutical use; with a short review of the history of mineral waters</md-title-remainder>
-  <md-date>1865</md-date>
-  <md-author>Schultz, Carl H</md-author>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Tabula co[m]posita a d[omi]no Alberto de Ferrariis vtriusq[ue] iuris doctor[e] d[e] Placentia super i[n]frascripto opusculo de horis canonicis in modu[m] ut seq[ui]t[ur]</md-title>
+  <md-date>1475</md-date>
+  <md-author>Ferrariis, Albertus de</md-author>
+  <md-description>Caption title; uniform title and imprint from Goff</md-description>
+  <md-description>Attributed by Hain and others to Alberto Trotti; cf. L.A. Sheppard, &quot;Albertus Trottus and Albertus de Ferrariis&quot; in The library, v. 5, no. 2 (Sept./Dec. 1947), p. 158-159</md-description>
+  <md-description>Signatures: [1-4]⁸</md-description>
+  <md-description>LC copy rubricated, with paragraph marks, underlining, and one initial.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title schultz and warker s mineral spring waters author schultz carl h medium book</recid>
+ <recid>content: title tabula co m posita a d omi no alberto de ferrariis vtriusq ue iuris doctor e d e placentia super i n frascripto opusculo de horis canonicis in modu m ut seq ui t ur author ferrariis albertus de medium book</recid>
 </hit>
 <hit>
- <md-title>Water-analysis.  A handbook for water-drinkers</md-title>
- <md-date>1882-1883</md-date>
- <md-author>Austin, George Lowell</md-author>
+ <md-title>Epistola Enee Siluii Picolominei iuueni non esse negandum amorem dicit</md-title>
+ <md-date>1485</md-date>
+ <md-author>Pius</md-author>
+ <md-description>LC copy has marginal manuscript annotations.  Text is preceded by [8] p. and followed by [2] p. of manuscript notes in German; signed Barnheim.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2876080901">
-  <md-title>Water-analysis.  A handbook for water-drinkers</md-title>
-  <md-date>1882-1883</md-date>
-  <md-author>Austin, George Lowell</md-author>
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>Epistola Enee Siluii Picolominei iuueni non esse negandum amorem dicit</md-title>
+  <md-date>1485</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Caption title; imprint from Goff</md-description>
+  <md-description>Addressed to Sigismund, Duke of Austria</md-description>
+  <md-description>Signatures: [1]⁶</md-description>
+  <md-description>Eiusdem Enee epistola amatoria: p. [3-5]</md-description>
+  <md-description>Epistola Enee Siluii poete laureati, siue Pii pape secundi, De amoris remedio incipit feliciter: p. [5-12]</md-description>
+  <md-description>LC copy has marginal manuscript annotations.  Text is preceded by [8] p. and followed by [2] p. of manuscript notes in German; signed Barnheim.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water analysis a handbook for water drinkers author austin george lowell medium book</recid>
+ <recid>content: title epistola enee siluii picolominei iuueni non esse negandum amorem dicit author pius medium book</recid>
 </hit>
 <hit>
- <md-title>An elementary handbook on potable water</md-title>
- <md-date>1891</md-date>
- <md-author>Davis, Floyd</md-author>
+ <md-title>Pij ii Pontificis maximi de captione vrbis Constantinopolitane tractatulus</md-title>
+ <md-date>1488-1490</md-date>
+ <md-author>Pius</md-author>
+ <md-description>Title from incipit; imprint from Goff</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="744596185">
-  <md-title>An elementary handbook on potable water</md-title>
-  <md-date>1891</md-date>
-  <md-author>Davis, Floyd</md-author>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Pij ii Pontificis maximi de captione vrbis Constantinopolitane tractatulus</md-title>
+  <md-date>1488-1490</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Title from incipit; imprint from Goff</md-description>
+  <md-description>Signatures: [1]⁴</md-description>
+  <md-description>LC copy wanting final blank leaf.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an elementary handbook on potable water author davis floyd medium book</recid>
+ <recid>content: title pij ii pontificis maximi de captione vrbis constantinopolitane tractatulus author pius medium book</recid>
 </hit>
 <hit>
- <md-title>The water resources of Illinois</md-title>
- <md-date>1896</md-date>
- <md-author>Leverett, Frank</md-author>
- <md-description>General statement. -- Physical features. -- The rainfall. -- The run-off. -- Navigable waters. -- Water power. -- Water supplies for cities and villages. -- Water supplies for rural districts. -- Artesian wells. -- Water analyses. -- An account of the Paleozoic rocks explored by deep borings at Rock Island, Ill., and vicinity, by J. A. Udden</md-description>
+ <md-title>Tractatus pulcherrimus Enee Siluij, siue Pij pape ij de curialiu[m] miseria</md-title>
+ <md-date>1488-1490</md-date>
+ <md-author>Pius</md-author>
+ <md-description>Title from incipit; imprint from Goff</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2455202246">
-  <md-title>The water resources of Illinois</md-title>
-  <md-date>1896</md-date>
-  <md-author>Leverett, Frank</md-author>
-  <md-description>General statement. -- Physical features. -- The rainfall. -- The run-off. -- Navigable waters. -- Water power. -- Water supplies for cities and villages. -- Water supplies for rural districts. -- Artesian wells. -- Water analyses. -- An account of the Paleozoic rocks explored by deep borings at Rock Island, Ill., and vicinity, by J. A. Udden</md-description>
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Tractatus pulcherrimus Enee Siluij, siue Pij pape ij de curialiu[m] miseria</md-title>
+  <md-date>1488-1490</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Title from incipit; imprint from Goff</md-description>
+  <md-description>Signatures: [1-2]⁶ [3]⁴</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the water resources of illinois author leverett frank medium book</recid>
+ <recid>content: title tractatus pulcherrimus enee siluij siue pij pape ij de curialiu m miseria author pius medium book</recid>
 </hit>
 <hit>
- <md-title>Water-supply</md-title>
- <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
- <md-date>1896</md-date>
- <md-author>Mason, William Pitt</md-author>
+ <md-title>Enee Siluij Senen[sis] cardinalis S[an]cte Sabine Historia Bohemica, notabilis [et] jocu[n]da</md-title>
+ <md-title-remainder>a principio ge[n]tis vsq[ue] ad Georgiu[m] Poggiebratiu[m], Ladislai Regis successore[m] : porrecta ad illustrissimu[m] D[omi]n[u]m Alfonsum Regem Aragonu[m] co[n]scripta</md-title-remainder>
+ <md-date>1489</md-date>
+ <md-author>Pius</md-author>
+ <md-description>LC copy lacks final blank leaf; some initials supplied in red; rubricated printed leaves in German used on binding.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2359208654">
-  <md-title>Water-supply</md-title>
-  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-  <md-date>1896</md-date>
-  <md-author>Mason, William Pitt</md-author>
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>Enee Siluij Senen[sis] cardinalis S[an]cte Sabine Historia Bohemica, notabilis [et] jocu[n]da</md-title>
+  <md-title-remainder>a principio ge[n]tis vsq[ue] ad Georgiu[m] Poggiebratiu[m], Ladislai Regis successore[m] : porrecta ad illustrissimu[m] D[omi]n[u]m Alfonsum Regem Aragonu[m] co[n]scripta</md-title-remainder>
+  <md-date>1489</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Imprint from Goff</md-description>
+  <md-description>Signatures: a-f⁸ g⁴ h⁸</md-description>
+  <md-description>Guide letters</md-description>
+  <md-description>LC copy lacks final blank leaf; some initials supplied in red; rubricated printed leaves in German used on binding.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water supply author mason william pitt medium book</recid>
+ <recid>content: title enee siluij senen sis cardinalis s an cte sabine historia bohemica notabilis et jocu n da author pius medium book</recid>
 </hit>
 <hit>
- <md-title>Water and public health</md-title>
- <md-title-remainder>The relative purity of waters from different sources</md-title-remainder>
- <md-date>1897</md-date>
- <md-author>Fuertes, James Hillhouse</md-author>
- <md-description>Microfilmed for preservationDNLM</md-description>
+ <md-title>Opuscula Enee Siluij de duobus amantibus ;</md-title>
+ <md-title-remainder>Et de remedio amoris ; cu[m] ep[isto]la retractatoria eiusdem Pij secu[n]di ad quenda[m] Karolum</md-title-remainder>
+ <md-date>1489-1495</md-date>
+ <md-author>Pius</md-author>
+ <md-description>Title from first leaf; imprint from colophon; date from Goff</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3973821123">
-  <md-title>Water and public health</md-title>
-  <md-title-remainder>The relative purity of waters from different sources</md-title-remainder>
-  <md-date>1897</md-date>
-  <md-author>Fuertes, James Hillhouse</md-author>
-  <md-description>Microfilmed for preservationDNLM</md-description>
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>Opuscula Enee Siluij de duobus amantibus ;</md-title>
+  <md-title-remainder>Et de remedio amoris ; cu[m] ep[isto]la retractatoria eiusdem Pij secu[n]di ad quenda[m] Karolum</md-title-remainder>
+  <md-date>1489-1495</md-date>
+  <md-author>Pius</md-author>
+  <md-description>Title from first leaf; imprint from colophon; date from Goff</md-description>
+  <md-description>Signatures: A-C⁸</md-description>
+  <md-description>LC copy imperfect: final (blank) leaf wanting.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and public health author fuertes james hillhouse medium book</recid>
+ <recid>content: title opuscula enee siluij de duobus amantibus author pius medium book</recid>
 </hit>
 <hit>
- <md-title>Report on the investigations into the purification of the Ohio River water</md-title>
- <md-title-remainder>at Louisville, Kentucky, made to the president and directors of the Louisville water company</md-title-remainder>
- <md-date>1898</md-date>
- <md-author>Fuller, George Warrren</md-author>
- <md-description>Published under agreement with the directors</md-description>
+ <md-title>Repertorium siue tabula generalis auctoritatum Arestotelis cu[m] commento</md-title>
+ <md-title-remainder>per modum alphabeti et philosophorum</md-title-remainder>
+ <md-date>1491</md-date>
+ <md-description>The work named in the title, a florilegium in one alphabet, is wrongly attributed in its introductory paragraph to Venerable Bede. It has brief commentaries after each of the ca. 1100 quotations (translated into Latin) and is followed (leaves kij-n8) by a set of longer selections from Cicero, with an afterword by Petrus Tanhauser addressed to his patron Sebaldus Schreier. The set of quotations from Cicero has the caption title: Marci Tullij Ciceronis ciuis Romani clarissimi ac eloquentie genitoris facundissimi auctoritates p[ro] virtutu[m] capessendaru[m] vberiori lege</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2295212926">
-  <md-title>Report on the investigations into the purification of the Ohio River water</md-title>
-  <md-title-remainder>at Louisville, Kentucky, made to the president and directors of the Louisville water company</md-title-remainder>
-  <md-date>1898</md-date>
-  <md-author>Fuller, George Warrren</md-author>
-  <md-description>Published under agreement with the directors</md-description>
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Repertorium siue tabula generalis auctoritatum Arestotelis cu[m] commento</md-title>
+  <md-title-remainder>per modum alphabeti et philosophorum</md-title-remainder>
+  <md-date>1491</md-date>
+  <md-description>The work named in the title, a florilegium in one alphabet, is wrongly attributed in its introductory paragraph to Venerable Bede. It has brief commentaries after each of the ca. 1100 quotations (translated into Latin) and is followed (leaves kij-n8) by a set of longer selections from Cicero, with an afterword by Petrus Tanhauser addressed to his patron Sebaldus Schreier. The set of quotations from Cicero has the caption title: Marci Tullij Ciceronis ciuis Romani clarissimi ac eloquentie genitoris facundissimi auctoritates p[ro] virtutu[m] capessendaru[m] vberiori lege</md-description>
+  <md-description>Publisher statement from colophon; imprint date from Goff</md-description>
+  <md-description>Signatures: a-m⁸ n¹⁰</md-description>
+  <md-description>Woodcut ill. on t.p.; initial A on aij</md-description>
+  <md-description>Capital spaces, most with guide letters</md-description>
+  <md-description>The afterword is dated (leaf n9): 1490</md-description>
+  <md-description>LC copy bound in wooden boards with blind-stamped leather spine; metal hinges (clasps wanting); fragment of ms. bound in. Has contemporary ms. annotations. Duplicate copies of conjugate leaves d3.6 and d4.5 bound in.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report on the investigations into the purification of the ohio river water author fuller george warrren medium book</recid>
+ <recid>content: title repertorium siue tabula generalis auctoritatum arestotelis cu m commento medium book</recid>
 </hit>
 <hit>
- <md-title>The purification of public water supplies</md-title>
- <md-date>1898</md-date>
- <md-author>Hill, John Willmuth</md-author>
- <md-description>Microfilmed for preservationDNLM</md-description>
+ <md-title>Copulata super libros De anima Arestotelis cu[m] textu</md-title>
+ <md-title-remainder>iuxta doctrina[m] excellentissimi doctoris sa[n]cti Thome de Aquino hic [con]tine[n]t[ur]</md-title-remainder>
+ <md-date>1492</md-date>
+ <md-author>Lambert</md-author>
+ <md-description>Includes typographically distinguished text of a Latin translation of Aristotle&apos;s De anima</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3941823259">
-  <md-title>The purification of public water supplies</md-title>
-  <md-date>1898</md-date>
-  <md-author>Hill, John Willmuth</md-author>
-  <md-description>Microfilmed for preservationDNLM</md-description>
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Copulata super libros De anima Arestotelis cu[m] textu</md-title>
+  <md-title-remainder>iuxta doctrina[m] excellentissimi doctoris sa[n]cti Thome de Aquino hic [con]tine[n]t[ur]</md-title-remainder>
+  <md-date>1492</md-date>
+  <md-author>Lambert</md-author>
+  <md-description>Uniform title and imprint from Goff</md-description>
+  <md-description>Signatures: a-o⁶</md-description>
+  <md-description>Includes typographically distinguished text of a Latin translation of Aristotle&apos;s De anima</md-description>
+  <md-description>Errors in foliation: no leaf numbered iiii or xxxiii; two leaves each numbered vi and xxxi</md-description>
+  <md-description>LC copy has contemporary marginal ms. annotations, in multiple hands.DLC</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 purification of public water supplies author hill john willmuth medium book</recid>
+ <recid>content: title copulata super libros de anima arestotelis cu m textu author lambert medium book</recid>
 </hit>
 <hit>
- <md-title>Potable water and methods of detecting impurities</md-title>
- <md-date>1899-1906</md-date>
- <md-author>Baker, M. N</md-author>
+ <md-title>In laudem Serenissimi Ferdinandi, Hispania[rum] Regis, Bethicae &amp; regni Granatae obsidio victoria &amp; triu[m]phus</md-title>
+ <md-title-remainder>Et De insulis in Mari Indico nuper inuentis</md-title-remainder>
+ <md-date>1494</md-date>
+ <md-author>Verardi, Carlo</md-author>
+ <md-description>&quot;De insulis nuper in Mari Indico nuper repertis&quot; (Leandro di Cosco&apos;s Latin translation of Columbus&apos;s letter to Raphael Sánchez concerning his discovery of America): leaves [29b-36a]</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1810338543">
-  <md-title>Potable water and methods of detecting impurities</md-title>
-  <md-date>1906</md-date>
-  <md-author>Baker, M. N</md-author>
-  <md-medium>book</md-medium>
- </location>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1261468432">
-  <md-title>Potable water and methods of detecting impurities</md-title>
-  <md-date>1899</md-date>
-  <md-author>Baker, M. N</md-author>
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>In laudem Serenissimi Ferdinandi, Hispania[rum] Regis, Bethicae &amp; regni Granatae obsidio victoria &amp; triu[m]phus</md-title>
+  <md-title-remainder>Et De insulis in Mari Indico nuper inuentis</md-title-remainder>
+  <md-date>1494</md-date>
+  <md-author>Verardi, Carlo</md-author>
+  <md-description>Woodcut portrait on t.p.: Fernandus Rex Hispania[rum]</md-description>
+  <md-description>&quot;De insulis nuper in Mari Indico nuper repertis&quot; (Leandro di Cosco&apos;s Latin translation of Columbus&apos;s letter to Raphael Sánchez concerning his discovery of America): leaves [29b-36a]</md-description>
+  <md-description>LC Copy 1 in blind-stamped half leather over boards; clasp.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
- <count>2</count>
- <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <count>1</count>
+ <recid>content: title in laudem serenissimi ferdinandi hispania rum regis bethicae regni granatae obsidio victoria triu m phus author verardi carlo medium book</recid>
 </hit>
 <hit>
- <md-title>Water and water supplies</md-title>
- <md-date>1901</md-date>
- <md-author>Thresh, John Clough</md-author>
+ <md-title>Kalendarius cum vero motu solis [et] duplici modo inueniendi verum motum lune</md-title>
+ <md-title-remainder>vulgari</md-title-remainder>
+ <md-date>1502</md-date>
+ <md-description>Signatures: a⁸, b⁶, c⁴</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="520611137">
-  <md-title>Water and water supplies</md-title>
-  <md-date>1901</md-date>
-  <md-author>Thresh, John Clough</md-author>
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Kalendarius cum vero motu solis [et] duplici modo inueniendi verum motum lune</md-title>
+  <md-title-remainder>vulgari</md-title-remainder>
+  <md-date>1502</md-date>
+  <md-description>Signatures: a⁸, b⁶, c⁴</md-description>
+  <md-description>Volvelle on p. [21]</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <recid>content: title kalendarius cum vero motu solis et duplici modo inueniendi verum motum lune medium book</recid>
 </hit>
 <hit>
- <md-title>Water and its purification;</md-title>
- <md-title-remainder>a handbook for the use of local authorities, sanitary officers, and others interested in water supply;</md-title-remainder>
- <md-date>1902</md-date>
- <md-author>Rideal, Samuel</md-author>
- <md-medium>book</md-medium>
+ <md-title>[Bandi, decreti, etc</md-title>
+ <md-title-remainder>a made-up collection of Tuscan legal pamphlets]</md-title-remainder>
+ <md-date>1503</md-date>
+ <md-medium>web</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1874334271">
-  <md-title>Water and its purification;</md-title>
-  <md-title-remainder>a handbook for the use of local authorities, sanitary officers, and others interested in water supply;</md-title-remainder>
-  <md-date>1902</md-date>
-  <md-author>Rideal, Samuel</md-author>
-  <md-medium>book</md-medium>
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>[Bandi, decreti, etc</md-title>
+  <md-title-remainder>a made-up collection of Tuscan legal pamphlets]</md-title-remainder>
+  <md-date>1503</md-date>
+  <md-medium>web</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and its purification author rideal samuel medium book</recid>
+ <recid>content: title bandi decreti etc medium web</recid>
 </hit>
 <hit>
- <md-title>Water supply</md-title>
- <md-title-remainder>A student&apos;s handbook on the conditions governing the selection of sources and the distribution of water</md-title-remainder>
- <md-date>1903</md-date>
- <md-author>Middleton, Reginald Empson</md-author>
+ <md-title>R. Volaterrani Commentariorum urbanorum liber primus</md-title>
+ <md-date>1506</md-date>
+ <md-author>Maffei, Raffaele</md-author>
+ <md-description>Signatures: [maltese cross]⁸, 2[maltese cross]⁶, [par.]⁶, a⁶, b-x⁸, A-V⁸, X-Y⁶, 2A-2P⁸, 2Q¹⁰, 2R⁶, 2S-2T⁸, 2T bis⁶, 2V-2Z⁸, 2&amp;⁸, 2[con]⁸, 2[rum]-3[rum]⁶ 2[tur]⁶</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2327210790">
-  <md-title>Water supply</md-title>
-  <md-title-remainder>A student&apos;s handbook on the conditions governing the selection of sources and the distribution of water</md-title-remainder>
-  <md-date>1903</md-date>
-  <md-author>Middleton, Reginald Empson</md-author>
+    name="LOC Solr Test" checksum="3232963828">
+  <md-title>R. Volaterrani Commentariorum urbanorum liber primus</md-title>
+  <md-date>1506</md-date>
+  <md-author>Maffei, Raffaele</md-author>
+  <md-description>Caption title fol. [1] verso; work consists of liber I-XXXVIII</md-description>
+  <md-description>Imprint from colophon, which reads: Impressus Rom[a]e per Ioannem Besicken Alemanum Anno D[omi]ni MDVI. XIII. CAL. Martii</md-description>
+  <md-description>Signatures: [maltese cross]⁸, 2[maltese cross]⁶, [par.]⁶, a⁶, b-x⁸, A-V⁸, X-Y⁶, 2A-2P⁸, 2Q¹⁰, 2R⁶, 2S-2T⁸, 2T bis⁶, 2V-2Z⁸, 2&amp;⁸, 2[con]⁸, 2[rum]-3[rum]⁶ 2[tur]⁶</md-description>
+  <md-description>Numerous errors in foliation</md-description>
+  <md-description>Includes Economicum Xenophontis (fol. [1-12]) at end; translated by Raffaele Maffei from the Greek of Xenophon&apos;s Oikonomikos</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water supply author middleton reginald empson medium book</recid>
+ <recid>content: title r volaterrani commentariorum urbanorum liber primus author maffei raffaele medium book</recid>
 </hit>
 <hit>
- <md-title>The law of waters and water rights</md-title>
- <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
- <md-date>1904</md-date>
- <md-author>Farnham, Henry P</md-author>
+ <md-title>Repertorium alphabeticum super copiosissimo, gra[n]di ac memorande fertilitatis volumine Speculi iudicialis d[omi]ni Guillelmi Dura[n]ti, natione Galli, Pallacij Apostolici (quod [et] Rotha dicitur) auditoris g[e]n[er]alis ...  materias omnes cuiusq[uam] ponderis ibidem reco[n]ditas opulentissime recolligens feliciter incipit</md-title>
+ <md-date>1514</md-date>
+ <md-author>Frédol, Bérenger</md-author>
+ <md-description>&quot;Repertorium iam nu[n]c alphabetica serie digestum ad omnes ... Speculi iudicialis titulos protinus inueniendos ...&quot;: leaves sig. t4a-t5b; references to &quot;liber primus&quot; fit the 1514 ed. of pt. 1 published jointly by Le Preux and Regnault (LCCN 00515699)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1682347087">
-  <md-title>The law of waters and water rights</md-title>
-  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-  <md-date>1904</md-date>
-  <md-author>Farnham, Henry P</md-author>
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Repertorium alphabeticum super copiosissimo, gra[n]di ac memorande fertilitatis volumine Speculi iudicialis d[omi]ni Guillelmi Dura[n]ti, natione Galli, Pallacij Apostolici (quod [et] Rotha dicitur) auditoris g[e]n[er]alis ...  materias omnes cuiusq[uam] ponderis ibidem reco[n]ditas opulentissime recolligens feliciter incipit</md-title>
+  <md-date>1514</md-date>
+  <md-author>Frédol, Bérenger</md-author>
+  <md-description>Apparently a companion volume to a poorly documented edition of the whole (4 pts.) Speculum iudiciale; cf. also Moreau II 822 (with different imprint)</md-description>
+  <md-description>Author (Cardinal Bérenger Frédol) not named; cf. J.F. Schulte. Die Geschichte der Quellen ... des canonischen Rechts, v. 2 (1877) p. 181</md-description>
+  <md-description>Printed in 2 columns; t.p. in red and black</md-description>
+  <md-description>Device (steel engraving) of Poncet Le Preux on t.p. (in front of a tree, 2 griffins support shield with monogram PLP; in bottom compartment of engraving, &quot;PONSET LE PREVX&quot;)</md-description>
+  <md-description>Signatures: a-s⁸ t⁶ (t6 blank)</md-description>
+  <md-description>&quot;Repertorium iam nu[n]c alphabetica serie digestum ad omnes ... Speculi iudicialis titulos protinus inueniendos ...&quot;: leaves sig. t4a-t5b; references to &quot;liber primus&quot; fit the 1514 ed. of pt. 1 published jointly by Le Preux and Regnault (LCCN 00515699)</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <recid>content: title repertorium alphabeticum super copiosissimo gra n di ac memorande fertilitatis volumine speculi iudicialis d omi ni guillelmi dura n ti natione galli pallacij apostolici quod et rotha dicitur auditoris g e n er alis materias omnes cuiusq uam ponderis ibidem reco n ditas opulentissime recolligens feliciter incipit author fre dol be renger medium book</recid>
 </hit>
 <hit>
- <md-title>Proceedings, Seminar on Water Management Practices in Kerala, held on 11-12 October 1980 at Calicut</md-title>
- <md-date>1980</md-date>
- <md-description>&quot;Published by Education and Extension Division for Centre for Water Resources Development and Management&quot;--T.p. verso</md-description>
+ <md-title>Speculu[m] iudiciale domini Guilelmi Dura[n]ti natione Galli, subtilissimo, graui atq[ue] firmo iudicio viri</md-title>
+ <md-title-remainder>cum additionibus eximio[rum] docto[rum] Jo. An. [et] Baldi : vna cum pluribus alijs additame[n]tis pri[us] no[n] visis nec impressioni ma[n]datis</md-title-remainder>
+ <md-date>1514</md-date>
+ <md-author>Durand, Guillaume</md-author>
+ <md-description>T.p., printed in red and black, includes large device of François Regnault (elephant carrying a howdah with monogram FR, full name on a scroll below); also a list of authors of the accumulated additions that flank or surround, gloss-like, Durand&apos;s text printed in two columns (for full list of the 20 annotators see Moreau)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3328957420">
-  <md-title>Proceedings, Seminar on Water Management Practices in Kerala, held on 11-12 October 1980 at Calicut</md-title>
-  <md-date>1980</md-date>
-  <md-description>&quot;Published by Education and Extension Division for Centre for Water Resources Development and Management&quot;--T.p. verso</md-description>
+    name="LOC Solr Test" checksum="552609001">
+  <md-title>Speculu[m] iudiciale domini Guilelmi Dura[n]ti natione Galli, subtilissimo, graui atq[ue] firmo iudicio viri</md-title>
+  <md-title-remainder>cum additionibus eximio[rum] docto[rum] Jo. An. [et] Baldi : vna cum pluribus alijs additame[n]tis pri[us] no[n] visis nec impressioni ma[n]datis</md-title-remainder>
+  <md-date>1514</md-date>
+  <md-author>Durand, Guillaume</md-author>
+  <md-description>T.p., printed in red and black, includes large device of François Regnault (elephant carrying a howdah with monogram FR, full name on a scroll below); also a list of authors of the accumulated additions that flank or surround, gloss-like, Durand&apos;s text printed in two columns (for full list of the 20 annotators see Moreau)</md-description>
+  <md-description>Colophon (f. ccxxvi b): Explicit pri[m]a pars Speculi Guil. Dura[n]ti cu[m] additionibus ... imp[re]ssa Parrhysij per Joanne[m] Barberiu[m] ... impensis ... Francisci Regnault [et] Ponceti Le Preux anno Domini .M. quinge[n]tesimo quartodecimo pridie Nonas Noue[m]bris [4 Nov. 1514]</md-description>
+  <md-description>Signatures: a-z⁸ [et]⁸ [con]⁸ [rum]⁸ A⁸ B¹⁰</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title proceedings seminar on water management practices in kerala held on october at calicut medium book</recid>
+ <recid>content: title speculu m iudiciale domini guilelmi dura n ti natione galli subtilissimo graui atq ue firmo iudicio viri author durand guillaume medium book</recid>
 </hit>
 <hit>
- <md-title>Annotated bibliography for Lesotho water resources management</md-title>
- <md-date>1996</md-date>
- <md-author>Ambrose, David</md-author>
- <md-description>&quot;The original of this bibliography was published as Annex Q ... as one of the seven volumes of the Water resources management : policy and strategies study.&quot;</md-description>
+ <md-title>Aymari Riuallii Allobrogis iuris consulti ac oratoris libri de historia iuris ciuilis et pontificii</md-title>
+ <md-date>1515</md-date>
+ <md-author>Du Rivail, Aymar</md-author>
+ <md-description>Du Rivail&apos;s five &quot;books&quot; (here ff. iii-cxxvii) on the history of civil law were later repeatedly published as Civilis historiae iuris sive in XII tabularum leges commentariorum libri quinque; &quot;Aymari Riuallii Allobrogis de historia pontificii iuris liber singularis&quot; occupies ff. cxxvii verso through [cxxx]a</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2263215062">
-  <md-title>Annotated bibliography for Lesotho water resources management</md-title>
-  <md-date>1996</md-date>
-  <md-author>Ambrose, David</md-author>
-  <md-description>&quot;The original of this bibliography was published as Annex Q ... as one of the seven volumes of the Water resources management : policy and strategies study.&quot;</md-description>
+    name="LOC Solr Test" checksum="3781833939">
+  <md-title>Aymari Riuallii Allobrogis iuris consulti ac oratoris libri de historia iuris ciuilis et pontificii</md-title>
+  <md-date>1515</md-date>
+  <md-author>Du Rivail, Aymar</md-author>
+  <md-description>Du Rivail&apos;s five &quot;books&quot; (here ff. iii-cxxvii) on the history of civil law were later repeatedly published as Civilis historiae iuris sive in XII tabularum leges commentariorum libri quinque; &quot;Aymari Riuallii Allobrogis de historia pontificii iuris liber singularis&quot; occupies ff. cxxvii verso through [cxxx]a</md-description>
+  <md-description>The laws identified (erroneously/questionably) as those of the Twelve tables are included, printed in larger type, each followed by commentary; Du Rivail&apos;s set begins with &quot;In Urbe ne sepelito&quot;</md-description>
+  <md-description>Device of Louis Oliveau on t.p. (in rectangular frame with &quot;Ludovicvs Olivelli&quot; at top, Saint Louis standing among crops; at bottom, motto &quot;Spes alit agricolas,&quot; and the printer/publisher&apos;s chiffre)</md-description>
+  <md-description>Royal privilege for 2 years is dated 8 Aug. 1515</md-description>
+  <md-description>Signatures: a-q⁸ r⁴ A-B⁸. B8, blank? wanting in LC copy</md-description>
+  <md-description>Errata on sig. r3b-r4a</md-description>
+  <md-description>Includes index</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title annotated bibliography for lesotho water resources management author ambrose david medium book</recid>
+ <recid>content: title aymari riuallii allobrogis iuris consulti ac oratoris libri de historia iuris ciuilis et pontificii author du rivail aymar medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index a269f69..a5195be 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>97</merged>
-<total>1995</total>
+<merged>99</merged>
+<total>249403</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>The water garden design book</md-title>
- <md-date>2001</md-date>
- <md-author>Rees, Yvonne</md-author>
- <md-description>Includes index</md-description>
+ <md-title>Constitutions of the ancient and honorable fraternity of Free and Accepted Masons, collected and digested from their old records, faithful traditions, and lodge books</md-title>
+ <md-title-remainder>together with the history and general regulations of the Grand Lodge of Massachusetts</md-title-remainder>
+ <md-date>1798-5798</md-date>
+ <md-description>LC copy has a slip mounted inside the lower board, &quot;Duplicate from the Public Library of the city of Boston,&quot; signed, C.C. Jewett.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3004072357">
-  <md-title>The water garden design book</md-title>
-  <md-date>2001</md-date>
-  <md-author>Rees, Yvonne</md-author>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="3941823259">
+  <md-title>Constitutions of the ancient and honorable fraternity of Free and Accepted Masons, collected and digested from their old records, faithful traditions, and lodge books</md-title>
+  <md-title-remainder>together with the history and general regulations of the Grand Lodge of Massachusetts</md-title-remainder>
+  <md-date>1798-5798</md-date>
+  <md-description>Signatures: pi⁴ [A]⁴ B-2N⁴</md-description>
+  <md-description>LC copy has a slip mounted inside the lower board, &quot;Duplicate from the Public Library of the city of Boston,&quot; signed, C.C. Jewett.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the water garden design book author rees yvonne medium book</recid>
+ <recid>content: title constitutions of the ancient and honorable fraternity of free and accepted masons collected and digested from their old records faithful traditions and lodge books medium book</recid>
 </hit>
 <hit>
- <md-title>The water hole</md-title>
- <md-date>2001</md-date>
- <md-author>Base, Graeme</md-author>
- <md-description>As ever growing numbers of animals visit a watering hole, introducing the numbers from one to ten, the water dwindles</md-description>
+ <md-title>Masonic</md-title>
+ <md-title-remainder>songs, oratorio, odes, anthems, prologues, epilogues, and toasts : adapted to the different degrees of Masonry</md-title-remainder>
+ <md-date>1797-5797</md-date>
+ <md-description>Without the music; in part with indications of the tunes</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3909825395">
-  <md-title>The water hole</md-title>
-  <md-date>2001</md-date>
-  <md-author>Base, Graeme</md-author>
-  <md-description>As ever growing numbers of animals visit a watering hole, introducing the numbers from one to ten, the water dwindles</md-description>
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Masonic</md-title>
+  <md-title-remainder>songs, oratorio, odes, anthems, prologues, epilogues, and toasts : adapted to the different degrees of Masonry</md-title-remainder>
+  <md-date>1797-5797</md-date>
+  <md-description>Without the music; in part with indications of the tunes</md-description>
+  <md-description>Signatures: [A]⁴ [B]⁶ C-M⁶ N²</md-description>
+  <md-description>LC copy imperfect: p. 19-26, 57-60, 115-122 wanting.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the water hole author base graeme medium book</recid>
+ <recid>content: title masonic medium book</recid>
 </hit>
 <hit>
- <md-title>Water pollution</md-title>
- <md-date>2001</md-date>
- <md-author>Donald, Rhonda Lucas</md-author>
+ <md-title>The constitutions of the ancient and honourable fraternity of Free and Accepted Masons</md-title>
+ <md-title-remainder>containing their history, charges, addresses, &amp;c., collected and digested from their old records, faithful traditions, and lodge books : for the use of Masons : to which are added, the history of Masonry in the commonwealth of Massachusetts, and the constitution, laws, and regulations of their Grand Lodge : together with a large collection of songs, epilogues, &amp;c</md-title-remainder>
+ <md-date>1792-5792</md-date>
+ <md-description>Compiled by a &quot;... committee appointed &apos;to consider and compile a book of constitutions, containing all things necessary for the use of the fraternity&apos; ... John Warren, chairman&quot;--P. [iii]</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1389459888">
-  <md-title>Water pollution</md-title>
-  <md-date>2001</md-date>
-  <md-author>Donald, Rhonda Lucas</md-author>
+    name="LOC Solr Test" checksum="712598321">
+  <md-title>The constitutions of the ancient and honourable fraternity of Free and Accepted Masons</md-title>
+  <md-title-remainder>containing their history, charges, addresses, &amp;c., collected and digested from their old records, faithful traditions, and lodge books : for the use of Masons : to which are added, the history of Masonry in the commonwealth of Massachusetts, and the constitution, laws, and regulations of their Grand Lodge : together with a large collection of songs, epilogues, &amp;c</md-title-remainder>
+  <md-date>1792-5792</md-date>
+  <md-description>Compiled by a &quot;... committee appointed &apos;to consider and compile a book of constitutions, containing all things necessary for the use of the fraternity&apos; ... John Warren, chairman&quot;--P. [iii]</md-description>
+  <md-description>Signatures: [A]⁴ B-U⁴ W⁴ X-2M⁴</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water pollution author donald rhonda lucas medium book</recid>
+ <recid>content: title the constitutions of the ancient and honourable fraternity of free and accepted masons medium book</recid>
 </hit>
 <hit>
- <md-title>Water technology management</md-title>
- <md-date>2001</md-date>
- <md-description>Collection of articles with reference to India</md-description>
+ <md-title>French books before 1601</md-title>
+ <md-date>1998</md-date>
+ <md-description>Based largely upon titles listed in the Short-title catalogue of books printed in France and of French books printed in other countries from 1470 to 1600, now in the British Museum</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3200965964">
-  <md-title>Water technology management</md-title>
-  <md-date>2001</md-date>
-  <md-description>Collection of articles with reference to India</md-description>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>French books before 1601</md-title>
+  <md-date>1998</md-date>
+  <md-description>Based largely upon titles listed in the Short-title catalogue of books printed in France and of French books printed in other countries from 1470 to 1600, now in the British Museum</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water technology management medium book</recid>
+ <recid>content: title french books before medium book</recid>
 </hit>
 <hit>
- <md-title>Wonderful water</md-title>
- <md-date>2001</md-date>
- <md-author>Glover, David</md-author>
+ <md-title>A dictionary of the English language;</md-title>
+ <md-title-remainder>the words and definitions being followed by their Japanese equivalents. To which is added a copious appendix</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Shimada, Y</md-author>
+ <md-description>&quot;May be considered a translation&quot; of Webster&apos;s unabridged dictionary. cf. Prefatory notice by C. S. Eby and J. M. Dixon</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2135223606">
-  <md-title>Wonderful water</md-title>
-  <md-date>2001</md-date>
-  <md-author>Glover, David</md-author>
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>A dictionary of the English language;</md-title>
+  <md-title-remainder>the words and definitions being followed by their Japanese equivalents. To which is added a copious appendix</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Shimada, Y</md-author>
+  <md-description>&quot;May be considered a translation&quot; of Webster&apos;s unabridged dictionary. cf. Prefatory notice by C. S. Eby and J. M. Dixon</md-description>
+  <md-description>Added t.-p. in Japanese</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title wonderful water author glover david medium book</recid>
+ <recid>content: title a dictionary of the english language author shimada y medium book</recid>
 </hit>
 <hit>
- <md-title>A Primer on fresh water</md-title>
- <md-title-remainder>questions and answers</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-title>A monograph on the Rev. Israel Evans, A.M</md-title>
+ <md-title-remainder>chaplain in the American army during the entire revolutionary war, 1775-1783, the second settled minister of Concord, New Hampshire 1789-1797</md-title-remainder>
+ <md-date>1902</md-date>
+ <md-author>Thorne, John Calvin</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2684093717">
-  <md-title>A Primer on fresh water</md-title>
-  <md-title-remainder>questions and answers</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>A monograph on the Rev. Israel Evans, A.M</md-title>
+  <md-title-remainder>chaplain in the American army during the entire revolutionary war, 1775-1783, the second settled minister of Concord, New Hampshire 1789-1797</md-title-remainder>
+  <md-date>1902</md-date>
+  <md-author>Thorne, John Calvin</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a primer on fresh water medium book</recid>
+ <recid>content: title a monograph on the rev israel evans a m author thorne john calvin medium book</recid>
 </hit>
 <hit>
- <md-title>A retrospective analysis on the occurrence of arsenic in ground-water resources of the United States and limitations in drinking-water-supply characterizations</md-title>
- <md-date>2000</md-date>
+ <md-title>Report on the post-bellum financial administration in Japan, 1896-1900</md-title>
+ <md-title-remainder>By Count Matsukata Masayoshi ... minister of state for finance</md-title-remainder>
+ <md-date>1901</md-date>
+ <md-description>Introduction.--pt. 1. The budget and special comptabilité.--pt. II. Taxation and the leaf-tobacco monopoly.--pt. III. Matters connected with  the coinage, the public loan and the indemnity money.--pt. 1V. The condition of monetary circulation and the establishment of the financial organs of the country</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2972074493">
-  <md-title>A retrospective analysis on the occurrence of arsenic in ground-water resources of the United States and limitations in drinking-water-supply characterizations</md-title>
-  <md-date>2000</md-date>
+    name="LOC Solr Test" checksum="2199219334">
+  <md-title>Report on the post-bellum financial administration in Japan, 1896-1900</md-title>
+  <md-title-remainder>By Count Matsukata Masayoshi ... minister of state for finance</md-title-remainder>
+  <md-date>1901</md-date>
+  <md-description>Corrected issue of the edition of 1900</md-description>
+  <md-description>Introduction.--pt. 1. The budget and special comptabilité.--pt. II. Taxation and the leaf-tobacco monopoly.--pt. III. Matters connected with  the coinage, the public loan and the indemnity money.--pt. 1V. The condition of monetary circulation and the establishment of the financial organs of the country</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a retrospective analysis on the occurrence of arsenic in ground water resources of the united states and limitations in drinking water supply characterizations medium book</recid>
+ <recid>content: title report on the post bellum financial administration in japan medium book</recid>
 </hit>
 <hit>
- <md-title>Boundary waters canoe camping</md-title>
- <md-date>2000</md-date>
- <md-author>Jacobson, Cliff</md-author>
- <md-description>Rev. ed. of: Boundary waters. 1995</md-description>
+ <md-title>Pharmacopoea japonica</md-title>
+ <md-date>1891</md-date>
+ <md-description>Prepared by a committee appointed by the Japanese government and approved by the minister of home affairs. cf. Historical introduction to The pharmacopoeia of Japan. 4th ed. 1922</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1842336407">
-  <md-title>Boundary waters canoe camping</md-title>
-  <md-date>2000</md-date>
-  <md-author>Jacobson, Cliff</md-author>
-  <md-description>Rev. ed. of: Boundary waters. 1995</md-description>
+    name="LOC Solr Test" checksum="2391206518">
+  <md-title>Pharmacopoea japonica</md-title>
+  <md-date>1891</md-date>
+  <md-description>Added t.-p. in Japanese</md-description>
+  <md-description>Prepared by a committee appointed by the Japanese government and approved by the minister of home affairs. cf. Historical introduction to The pharmacopoeia of Japan. 4th ed. 1922</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title boundary waters canoe camping author jacobson cliff medium book</recid>
+ <recid>content: title pharmacopoea japonica medium book</recid>
 </hit>
 <hit>
- <md-title>District water supply plan</md-title>
- <md-date>2000</md-date>
- <md-description>[1] [No special title] -- [2] Appendixes</md-description>
+ <md-title>The narrative of Colonel David Fanning</md-title>
+ <md-title-remainder>a Tory in the revolutionary war with Great Britain, giving an account of his adventures in North Carolina, from 1775 to 1783</md-title-remainder>
+ <md-date>1861</md-date>
+ <md-author>Fanning, David</md-author>
+ <md-description>Introd. signed John H. Wheeler. Edited, from a copy of the original manuscript, by T.H. Wynne. Many of the notes are by D.L. Swain</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="552609001">
-  <md-title>District water supply plan</md-title>
-  <md-date>2000</md-date>
-  <md-description>[1] [No special title] -- [2] Appendixes</md-description>
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>The narrative of Colonel David Fanning</md-title>
+  <md-title-remainder>a Tory in the revolutionary war with Great Britain, giving an account of his adventures in North Carolina, from 1775 to 1783</md-title-remainder>
+  <md-date>1861</md-date>
+  <md-author>Fanning, David</md-author>
+  <md-description>Introd. signed John H. Wheeler. Edited, from a copy of the original manuscript, by T.H. Wynne. Many of the notes are by D.L. Swain</md-description>
+  <md-description>&quot;50 copies 4to.&quot;--P. [ii]</md-description>
+  <md-description>&quot;Fifty copies printed on thin writing paper, and ten on thicker paper.&quot; Cf. Sabin</md-description>
+  <md-description>LC copy is no. 21.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title district water supply plan medium book</recid>
+ <recid>content: title the narrative of colonel david fanning author fanning david medium book</recid>
 </hit>
 <hit>
- <md-title>Dividing the waters</md-title>
- <md-title-remainder>the resolution of interstate water conflicts in the United States</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Sherk, George William</md-author>
- <md-description>Includes index</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="3264961692">
-  <md-title>Dividing the waters</md-title>
-  <md-title-remainder>the resolution of interstate water conflicts in the United States</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Sherk, George William</md-author>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="3813831803">
+  <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 dividing the waters author sherk george william medium book</recid>
+ <recid>content: title leaves of grass author whitman walt medium book</recid>
 </hit>
 <hit>
- <md-title>Fertile ground</md-title>
- <md-title-remainder>nutrient trading&apos;s potential to cost-effectively improve water quality</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Faeth, Paul</md-author>
- <md-medium>book</md-medium>
+ <md-title>Broad advice to the United Netherland provinces</md-title>
+ <md-date>1857</md-date>
+ <md-description>Attributed to Cornelis Melyn</md-description>
+ <md-medium>web</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="584606865">
-  <md-title>Fertile ground</md-title>
-  <md-title-remainder>nutrient trading&apos;s potential to cost-effectively improve water quality</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Faeth, Paul</md-author>
-  <md-medium>book</md-medium>
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>Broad advice to the United Netherland provinces</md-title>
+  <md-date>1857</md-date>
+  <md-description>Attributed to Cornelis Melyn</md-description>
+  <md-medium>web</md-medium>
  </location>
  <count>1</count>
- <recid>content: title fertile ground author faeth paul medium book</recid>
+ <recid>content: title broad advice to the united netherland provinces medium web</recid>
 </hit>
 <hit>
- <md-title>Ground water levels, western Colorado alluvial and bedrock aquifers, 2000</md-title>
- <md-date>2000</md-date>
- <md-description>Includes statistics</md-description>
+ <md-title>A discourse delivered before the Pilgrim Society, at Plymouth, on the twenty second day of December, 1829</md-title>
+ <md-date>1830</md-date>
+ <md-author>Sullivan, William</md-author>
+ <md-description>Buff printed paper cover has title: &quot;Mr. Sullivan&apos;s discourse, delivered at Plymouth.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="872587641">
-  <md-title>Ground water levels, western Colorado alluvial and bedrock aquifers, 2000</md-title>
-  <md-date>2000</md-date>
-  <md-description>Cover title</md-description>
-  <md-description>Includes statistics</md-description>
+    name="LOC Solr Test" checksum="1293466296">
+  <md-title>A discourse delivered before the Pilgrim Society, at Plymouth, on the twenty second day of December, 1829</md-title>
+  <md-date>1830</md-date>
+  <md-author>Sullivan, William</md-author>
+  <md-description>Printer from verso of title page</md-description>
+  <md-description>Buff printed paper cover has title: &quot;Mr. Sullivan&apos;s discourse, delivered at Plymouth.&quot;</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title ground water levels western colorado alluvial and bedrock aquifers medium book</recid>
+ <recid>content: title a discourse delivered before the pilgrim society at plymouth on the twenty second day of december author sullivan william medium book</recid>
 </hit>
 <hit>
- <md-title>Joint hearing of the Senate Committee on Agriculture and Water Resources and Assembly Committee on Water, Parks and Wildlife</md-title>
- <md-title-remainder>the State&apos;s year 2000 water supply operations plan</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>&quot;February 1, 2000.&quot;</md-description>
+ <md-title>Histoire naturelle des tangaras, des manakins et des todiers</md-title>
+ <md-date>1805</md-date>
+ <md-author>Desmarest, A.-G</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1746342815">
-  <md-title>Joint hearing of the Senate Committee on Agriculture and Water Resources and Assembly Committee on Water, Parks and Wildlife</md-title>
-  <md-title-remainder>the State&apos;s year 2000 water supply operations plan</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>Cover title</md-description>
-  <md-description>&quot;February 1, 2000.&quot;</md-description>
+    name="LOC Solr Test" checksum="4069814715">
+  <md-title>Histoire naturelle des tangaras, des manakins et des todiers</md-title>
+  <md-date>1805</md-date>
+  <md-author>Desmarest, A.-G</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title joint hearing of the senate committee on agriculture and water resources and assembly committee on water parks and wildlife medium book</recid>
+ <recid>content: title histoire naturelle des tangaras des manakins et des todiers author desmarest a g medium book</recid>
 </hit>
 <hit>
- <md-title>Occurrence and quality of surface water and ground water within the Yavapai-Prescott Indian Reservation, central Arizona, 1994-98</md-title>
- <md-date>2000</md-date>
+ <md-title>Leçons d&apos;anatomie comparée de G. Cuvier</md-title>
+ <md-date>1800-1805</md-date>
+ <md-author>Cuvier, Georges</md-author>
+ <md-description>t. I. Les organes du mouvement.--t. II. Les organes des sensations.--t. III-IV. Les organes de la digestion et ceux de la circulation, de la respiration et de la voix.--t. V. Les organes de la génération et ceux des sécrétions excrémentitielles ou des excrétions</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3520944604">
-  <md-title>Occurrence and quality of surface water and ground water within the Yavapai-Prescott Indian Reservation, central Arizona, 1994-98</md-title>
-  <md-date>2000</md-date>
+    name="LOC Solr Test" checksum="2972074493">
+  <md-title>Leçons d&apos;anatomie comparée de G. Cuvier</md-title>
+  <md-date>1800-1805</md-date>
+  <md-author>Cuvier, Georges</md-author>
+  <md-description>Imprint of v. 3-5: Paris, Crochard [etc.] an XIV.--1805</md-description>
+  <md-description>Vol. 3-5 ed. by G. L. Duvernoy</md-description>
+  <md-description>t. I. Les organes du mouvement.--t. II. Les organes des sensations.--t. III-IV. Les organes de la digestion et ceux de la circulation, de la respiration et de la voix.--t. V. Les organes de la génération et ceux des sécrétions excrémentitielles ou des excrétions</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title occurrence and quality of surface water and ground water within the yavapai prescott indian reservation central arizona medium book</recid>
+ <recid>content: title lec ons d anatomie compare e de g cuvier author cuvier georges medium book</recid>
 </hit>
 <hit>
- <md-title>Promoting small water harvesting structures in dryland regions</md-title>
- <md-title-remainder>a case study of the farm ponds scheme in Gujarat</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Shah, Amita</md-author>
+ <md-title>Manuel pour la concordance des calendriers républicain et grégorien; ou, Recueil complet de tous les annuaires depuis la première année républicaine</md-title>
+ <md-date>1805</md-date>
+ <md-author>Renouard, Ant. Aug</md-author>
+ <md-description>Published anonymously</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="712598321">
-  <md-title>Promoting small water harvesting structures in dryland regions</md-title>
-  <md-title-remainder>a case study of the farm ponds scheme in Gujarat</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Shah, Amita</md-author>
+    name="LOC Solr Test" checksum="1357462024">
+  <md-title>Manuel pour la concordance des calendriers républicain et grégorien; ou, Recueil complet de tous les annuaires depuis la première année républicaine</md-title>
+  <md-date>1805</md-date>
+  <md-author>Renouard, Ant. Aug</md-author>
+  <md-description>Published anonymously</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title promoting small water harvesting structures in dryland regions author shah amita medium book</recid>
+ <recid>content: title manuel pour la concordance des calendriers re publicain et gre gorien ou recueil complet de tous les annuaires depuis la premie re anne e re publicaine author renouard ant aug medium book</recid>
 </hit>
 <hit>
- <md-title>Proposition 13</md-title>
- <md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>&quot;March 2000.&quot;</md-description>
+ <md-title>Mémoire statistique du Département de la Meurthe</md-title>
+ <md-date>1805</md-date>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3232963828">
-  <md-title>Proposition 13</md-title>
-  <md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>&quot;March 2000.&quot;</md-description>
+    name="LOC Solr Test" checksum="1906332135">
+  <md-title>Mémoire statistique du Département de la Meurthe</md-title>
+  <md-date>1805</md-date>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title proposition medium book</recid>
+ <recid>content: title me moire statistique du de partement de la meurthe medium book</recid>
 </hit>
 <hit>
- <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
- <md-date>2000</md-date>
- <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-title>Mémoires historiques sur les Templiers</md-title>
+ <md-title-remainder>ou, Éclaircissemens nouveaux sur leur histoire, leur procès, les accusations intentées contr&apos;eux, et les causes secrètes de leur ruine; puisés, en grande partie, dans plusieurs monumens ou écrits publiés en Allemagne;</md-title-remainder>
+ <md-date>1805</md-date>
+ <md-author>Grouvelle, Philippe-Antoine</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="99732482">
-  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-  <md-date>2000</md-date>
-  <md-description>&quot;May 2000.&quot;</md-description>
-  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+    name="LOC Solr Test" checksum="1874334271">
+  <md-title>Mémoires historiques sur les Templiers</md-title>
+  <md-title-remainder>ou, Éclaircissemens nouveaux sur leur histoire, leur procès, les accusations intentées contr&apos;eux, et les causes secrètes de leur ruine; puisés, en grande partie, dans plusieurs monumens ou écrits publiés en Allemagne;</md-title-remainder>
+  <md-date>1805</md-date>
+  <md-author>Grouvelle, Philippe-Antoine</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <recid>content: title me moires historiques sur les templiers author grouvelle philippe antoine medium book</recid>
 </hit>
 <hit>
- <md-title>Rural drinking water supply in India</md-title>
- <md-title-remainder>issues and strategies</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Das, Keshab</md-author>
+ <md-title>Plans, coupes et élévations de diverses productions de l&apos;art de la charpente exécutées tant en France que dans les pays étrangers;</md-title>
+ <md-date>1805</md-date>
+ <md-author>Krafft, J. Ch</md-author>
+ <md-description>Several errors in numbering of plates</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1778340679">
-  <md-title>Rural drinking water supply in India</md-title>
-  <md-title-remainder>issues and strategies</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Das, Keshab</md-author>
+    name="LOC Solr Test" checksum="1389459888">
+  <md-title>Plans, coupes et élévations de diverses productions de l&apos;art de la charpente exécutées tant en France que dans les pays étrangers;</md-title>
+  <md-date>1805</md-date>
+  <md-author>Krafft, J. Ch</md-author>
+  <md-description>Several errors in numbering of plates</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title rural drinking water supply in india author das keshab medium book</recid>
+ <recid>content: title plans coupes et e le vations de diverses productions de l art de la charpente exe cute es tant en france que dans les pays e trangers author krafft j ch medium book</recid>
 </hit>
 <hit>
- <md-title>Sharing the good</md-title>
- <md-title-remainder>modes of managing water resources in the lower Mekong River Basin</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Öjendal, Joakim</md-author>
- <md-description>Abstract (2 p.) inserted</md-description>
+ <md-title>Œuvres de Vicq-d&apos;Azyr</md-title>
+ <md-title-remainder>recueillies et publiées avec des notes et un discours sur sa vie et ses ouvrages</md-title-remainder>
+ <md-date>1805</md-date>
+ <md-author>Vicq-d&apos;Azyr</md-author>
+ <md-description>Vol. 1-3, Éloges historiques des membres de la Société royale de médécine; v. 4-6, Sciences physiologiques et médicales</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2391206518">
-  <md-title>Sharing the good</md-title>
-  <md-title-remainder>modes of managing water resources in the lower Mekong River Basin</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Öjendal, Joakim</md-author>
-  <md-description>&quot;March 2000.&quot;</md-description>
-  <md-description>Abstract (2 p.) inserted</md-description>
+    name="LOC Solr Test" checksum="3520944604">
+  <md-title>Œuvres de Vicq-d&apos;Azyr</md-title>
+  <md-title-remainder>recueillies et publiées avec des notes et un discours sur sa vie et ses ouvrages</md-title-remainder>
+  <md-date>1805</md-date>
+  <md-author>Vicq-d&apos;Azyr</md-author>
+  <md-description>Vol. 1-3, Éloges historiques des membres de la Société royale de médécine; v. 4-6, Sciences physiologiques et médicales</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title sharing the good author o jendal joakim medium book</recid>
+ <recid>content: title uvres de vicq d azyr author vicq d azyr medium book</recid>
 </hit>
 <hit>
- <md-title>Sharing water</md-title>
- <md-title-remainder>irrigation and water management in the Hindukush, Karakoram, Himalaya</md-title-remainder>
- <md-date>2000</md-date>
+ <md-title>Coup d&apos;oeil sur les révolutions et sur la réforme de la médecine</md-title>
+ <md-date>1804</md-date>
+ <md-author>Cabanis, P. J. G</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1229470568">
-  <md-title>Sharing water</md-title>
-  <md-title-remainder>irrigation and water management in the Hindukush, Karakoram, Himalaya</md-title-remainder>
-  <md-date>2000</md-date>
+    name="LOC Solr Test" checksum="872587641">
+  <md-title>Coup d&apos;oeil sur les révolutions et sur la réforme de la médecine</md-title>
+  <md-date>1804</md-date>
+  <md-author>Cabanis, P. J. G</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title sharing water medium book</recid>
+ <recid>content: title coup d oeil sur les re volutions et sur la re forme de la me decine author cabanis p j g medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d7957cb..4580f01 100644 (file)
 <show><status>OK</status>
 <activeclients>0</activeclients>
 <merged>97</merged>
-<total>1995</total>
+<total>201695</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>A Primer on fresh water</md-title>
- <md-title-remainder>questions and answers</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-title>I͡A ekhal v dalʹnie krai͡a</md-title>
+ <md-date>1999</md-date>
+ <md-author>Abbasov, A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2684093717">
-  <md-title>A Primer on fresh water</md-title>
-  <md-title-remainder>questions and answers</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>I͡A ekhal v dalʹnie krai͡a</md-title>
+  <md-date>1999</md-date>
+  <md-author>Abbasov, A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a primer on fresh water medium book</recid>
+ <recid>content: title i a ekhal v dal nie krai a author abbasov a medium book</recid>
 </hit>
 <hit>
- <md-title>A retrospective analysis on the occurrence of arsenic in ground-water resources of the United States and limitations in drinking-water-supply characterizations</md-title>
- <md-date>2000</md-date>
+ <md-title>A memorial of divine benefits</md-title>
+ <md-title-remainder>in a sermon, delivered at Exeter, on the 15th, and at Haverhill, on the 29th of November, 1798, days of public thanksgiving, in New-Hampshire and Massachusetts</md-title-remainder>
+ <md-date>1798</md-date>
+ <md-author>Abbot, Abiel</md-author>
+ <md-description>Signatures: [A]⁴ B-C⁴ D²</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2972074493">
-  <md-title>A retrospective analysis on the occurrence of arsenic in ground-water resources of the United States and limitations in drinking-water-supply characterizations</md-title>
-  <md-date>2000</md-date>
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>A memorial of divine benefits</md-title>
+  <md-title-remainder>in a sermon, delivered at Exeter, on the 15th, and at Haverhill, on the 29th of November, 1798, days of public thanksgiving, in New-Hampshire and Massachusetts</md-title-remainder>
+  <md-date>1798</md-date>
+  <md-author>Abbot, Abiel</md-author>
+  <md-description>Signatures: [A]⁴ B-C⁴ D²</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a retrospective analysis on the occurrence of arsenic in ground water resources of the united states and limitations in drinking water supply characterizations medium book</recid>
+ <recid>content: title a memorial of divine benefits author abbot abiel medium book</recid>
 </hit>
 <hit>
- <md-title>Assessment of water pollution in Calicut city with special reference to Cannoly canal</md-title>
- <md-title-remainder>final report</md-title-remainder>
- <md-date>1996</md-date>
- <md-description>&quot;Funded by: Department of Science, Technology, and Environment, Government of Kerala.&quot;</md-description>
+ <md-title>Sermons</md-title>
+ <md-date>1831</md-date>
+ <md-author>Abbot, Abiel</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="163728210">
-  <md-title>Assessment of water pollution in Calicut city with special reference to Cannoly canal</md-title>
-  <md-title-remainder>final report</md-title-remainder>
-  <md-date>1996</md-date>
-  <md-description>&quot;Funded by: Department of Science, Technology, and Environment, Government of Kerala.&quot;</md-description>
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Sermons</md-title>
+  <md-date>1831</md-date>
+  <md-author>Abbot, Abiel</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title assessment of water pollution in calicut city with special reference to cannoly canal medium book</recid>
+ <recid>content: title sermons author abbot abiel medium book</recid>
 </hit>
 <hit>
- <md-title>District water supply plan</md-title>
- <md-date>2000</md-date>
- <md-description>[1] [No special title] -- [2] Appendixes</md-description>
+ <md-title>Tradisi pembacaan ratibul Haddad di Bekasi</md-title>
+ <md-title-remainder>laporan penelitian</md-title-remainder>
+ <md-date>1998</md-date>
+ <md-author>Abdillah, Aam</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="552609001">
-  <md-title>District water supply plan</md-title>
-  <md-date>2000</md-date>
-  <md-description>[1] [No special title] -- [2] Appendixes</md-description>
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Tradisi pembacaan ratibul Haddad di Bekasi</md-title>
+  <md-title-remainder>laporan penelitian</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-author>Abdillah, Aam</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title district water supply plan medium book</recid>
+ <recid>content: title tradisi pembacaan ratibul haddad di bekasi author abdillah aam medium book</recid>
 </hit>
 <hit>
- <md-title>Evaluation and control of water pollution in Bhavani Basin</md-title>
- <md-title-remainder>final report</md-title-remainder>
- <md-date>1998</md-date>
- <md-description>&quot;Funded by Institute for water Studies, Water Resources Organisation (PWD).&quot;</md-description>
+ <md-title>The message -- a tale in song</md-title>
+ <md-title-remainder>Addahamāṇa&apos;s Sandeśa rāsaka</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Abdularahamāna</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="4266708322">
-  <md-title>Evaluation and control of water pollution in Bhavani Basin</md-title>
-  <md-title-remainder>final report</md-title-remainder>
-  <md-date>1998</md-date>
-  <md-description>&quot;Funded by Institute for water Studies, Water Resources Organisation (PWD).&quot;</md-description>
-  <md-description>With reference to India</md-description>
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>The message -- a tale in song</md-title>
+  <md-title-remainder>Addahamāṇa&apos;s Sandeśa rāsaka</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Abdularahamāna</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title evaluation and control of water pollution in bhavani basin medium book</recid>
+ <recid>content: title the message a tale in song author abdularahama na medium book</recid>
 </hit>
 <hit>
- <md-title>Ground water levels, western Colorado alluvial and bedrock aquifers, 2000</md-title>
- <md-date>2000</md-date>
- <md-description>Includes statistics</md-description>
+ <md-title>The message</md-title>
+ <md-title-remainder>a tale in song</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Abdularahamāna</md-author>
+ <md-description>Poem; includes a critical study of the grammar</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="872587641">
-  <md-title>Ground water levels, western Colorado alluvial and bedrock aquifers, 2000</md-title>
-  <md-date>2000</md-date>
-  <md-description>Cover title</md-description>
-  <md-description>Includes statistics</md-description>
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>The message</md-title>
+  <md-title-remainder>a tale in song</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Abdularahamāna</md-author>
+  <md-description>Poem; includes a critical study of the grammar</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title ground water levels western colorado alluvial and bedrock aquifers medium book</recid>
+ <recid>content: title the message author abdularahama na medium book</recid>
 </hit>
 <hit>
- <md-title>Improving water utilization from a catchment perspective</md-title>
+ <md-title>Vklad v mirovui͡u t͡sivilizat͡sii͡u</md-title>
+ <md-title-remainder>iz istorii zarozhdenii͡a, stanovlenii͡a i razvitii͡a materialʹnykh i dukhovnykh kulʹtur v Uzbekistane</md-title-remainder>
  <md-date>1998</md-date>
+ <md-author>Abdunabiev, A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2716091581">
-  <md-title>Improving water utilization from a catchment perspective</md-title>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Vklad v mirovui͡u t͡sivilizat͡sii͡u</md-title>
+  <md-title-remainder>iz istorii zarozhdenii͡a, stanovlenii͡a i razvitii͡a materialʹnykh i dukhovnykh kulʹtur v Uzbekistane</md-title-remainder>
   <md-date>1998</md-date>
+  <md-author>Abdunabiev, A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title improving water utilization from a catchment perspective medium book</recid>
+ <recid>content: title vklad v mirovui u t sivilizat sii u author abdunabiev a medium book</recid>
 </hit>
 <hit>
- <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
- <md-title-remainder>proceedings</md-title-remainder>
- <md-date>1997</md-date>
+ <md-title>Efektivitas pelaksanaan pelayanan bimbingan dan konseling di MTS Kotamadya Ujungpandang</md-title>
+ <md-title-remainder>laporan hasil penelitian</md-title-remainder>
+ <md-date>1997-1998</md-date>
+ <md-author>Abdurrahman</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2748089445">
-  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-  <md-title-remainder>proceedings</md-title-remainder>
-  <md-date>1997</md-date>
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Efektivitas pelaksanaan pelayanan bimbingan dan konseling di MTS Kotamadya Ujungpandang</md-title>
+  <md-title-remainder>laporan hasil penelitian</md-title-remainder>
+  <md-date>1997-1998</md-date>
+  <md-author>Abdurrahman</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <recid>content: title efektivitas pelaksanaan pelayanan bimbingan dan konseling di mts kotamadya ujungpandang author abdurrahman medium book</recid>
 </hit>
 <hit>
- <md-title>Joint hearing of the Senate Committee on Agriculture and Water Resources and Assembly Committee on Water, Parks and Wildlife</md-title>
- <md-title-remainder>the State&apos;s year 2000 water supply operations plan</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>&quot;February 1, 2000.&quot;</md-description>
+ <md-title>Arabcha-ŭzbekcha-ruscha lughat</md-title>
+ <md-title-remainder>vaqtli matbuot tili leksikasi</md-title-remainder>
+ <md-date>1998</md-date>
+ <md-author>Abduzhabborov, A</md-author>
+ <md-description>At head of title: Toshkent davlat sharqshunoslik instituti</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1746342815">
-  <md-title>Joint hearing of the Senate Committee on Agriculture and Water Resources and Assembly Committee on Water, Parks and Wildlife</md-title>
-  <md-title-remainder>the State&apos;s year 2000 water supply operations plan</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>Cover title</md-description>
-  <md-description>&quot;February 1, 2000.&quot;</md-description>
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Arabcha-ŭzbekcha-ruscha lughat</md-title>
+  <md-title-remainder>vaqtli matbuot tili leksikasi</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-author>Abduzhabborov, A</md-author>
+  <md-description>At head of title: Toshkent davlat sharqshunoslik instituti</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title joint hearing of the senate committee on agriculture and water resources and assembly committee on water parks and wildlife medium book</recid>
+ <recid>content: title arabcha u zbekcha ruscha lughat author abduzhabborov a medium book</recid>
 </hit>
 <hit>
- <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
- <md-date>1998</md-date>
+ <md-title>Poezia upirveles qovlisa</md-title>
+ <md-title-remainder>[leksebi]</md-title-remainder>
+ <md-date>1991</md-date>
+ <md-author>Abesaże, A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="4005818987">
-  <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-  <md-date>1998</md-date>
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>Poezia upirveles qovlisa</md-title>
+  <md-title-remainder>[leksebi]</md-title-remainder>
+  <md-date>1991</md-date>
+  <md-author>Abesaże, A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ <recid>content: title poezia upirveles qovlisa author abesaz e a medium book</recid>
 </hit>
 <hit>
- <md-title>Modeling water resources management at the basin level</md-title>
- <md-title-remainder>review and future directions</md-title-remainder>
- <md-date>1999</md-date>
+ <md-title>Colcha</md-title>
+ <md-date>2001</md-date>
+ <md-author>Abeyta, Aaron A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="35736754">
-  <md-title>Modeling water resources management at the basin level</md-title>
-  <md-title-remainder>review and future directions</md-title-remainder>
-  <md-date>1999</md-date>
+    name="LOC Solr Test" checksum="1586353495">
+  <md-title>Colcha</md-title>
+  <md-date>2001</md-date>
+  <md-author>Abeyta, Aaron A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title modeling water resources management at the basin level medium book</recid>
+ <recid>content: title colcha author abeyta aaron a medium book</recid>
 </hit>
 <hit>
- <md-title>Nevada state water plan</md-title>
- <md-date>1999</md-date>
- <md-description>pt. 1. Background and resource assessment -- pt. 2. Water use and forecasts -- pt. 3. Water planning and management issues -- [pt. 4] Appendices -- [pt. 5] Summary</md-description>
+ <md-title>India and her people</md-title>
+ <md-date>1906</md-date>
+ <md-author>Abhedânanda</md-author>
+ <md-description>The prevailing philosophy of to-day.--The religion of India to-day.--The social status of the Indian people: their system of caste.--Political institutions of India.--Education in India.--The influence of India on western civilization, and the influence of western civilization on India.--Woman&apos;s place in Hindu religion</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1714344951">
-  <md-title>Nevada state water plan</md-title>
-  <md-date>1999</md-date>
-  <md-description>Cover title</md-description>
-  <md-description>&quot;March 1999.&quot;</md-description>
-  <md-description>pt. 1. Background and resource assessment -- pt. 2. Water use and forecasts -- pt. 3. Water planning and management issues -- [pt. 4] Appendices -- [pt. 5] Summary</md-description>
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>India and her people</md-title>
+  <md-date>1906</md-date>
+  <md-author>Abhedânanda</md-author>
+  <md-description>&quot;The first six lectures contained in this volume were delivered before the Brooklyn institute of arts and sciences.&quot;--Pref</md-description>
+  <md-description>The prevailing philosophy of to-day.--The religion of India to-day.--The social status of the Indian people: their system of caste.--Political institutions of India.--Education in India.--The influence of India on western civilization, and the influence of western civilization on India.--Woman&apos;s place in Hindu religion</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title nevada state water plan medium book</recid>
+ <recid>content: title india and her people author abheda nanda medium book</recid>
 </hit>
 <hit>
- <md-title>Occurrence and quality of surface water and ground water within the Yavapai-Prescott Indian Reservation, central Arizona, 1994-98</md-title>
- <md-date>2000</md-date>
+ <md-title>Vedânta philosophy;</md-title>
+ <md-title-remainder>three lectures</md-title-remainder>
+ <md-date>1899-1902</md-date>
+ <md-author>Abhedânanda</md-author>
+ <md-description>Reincarnation.--Evolution and reincarnation.--Which is scientific, resurrection or reincarnation?</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3520944604">
-  <md-title>Occurrence and quality of surface water and ground water within the Yavapai-Prescott Indian Reservation, central Arizona, 1994-98</md-title>
-  <md-date>2000</md-date>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Vedânta philosophy;</md-title>
+  <md-title-remainder>three lectures</md-title-remainder>
+  <md-date>1899</md-date>
+  <md-author>Abhedânanda</md-author>
+  <md-description>Advertising matter: p. [59]-61</md-description>
+  <md-description>Reincarnation.--Evolution and reincarnation.--Which is scientific, resurrection or reincarnation?</md-description>
   <md-medium>book</md-medium>
  </location>
- <count>1</count>
- <recid>content: title occurrence and quality of surface water and ground water within the yavapai prescott indian reservation central arizona medium book</recid>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Vedânta philosophy</md-title>
+  <md-title-remainder>three lectures</md-title-remainder>
+  <md-date>1902</md-date>
+  <md-author>Abhedânanda</md-author>
+  <md-description>&quot;Delivered under the auspices of the Vedânta Society in Carnegie lyceum, New York.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <recid>content: title veda nta philosophy author abheda nanda medium book</recid>
 </hit>
 <hit>
- <md-title>Proceedings, Seminar on Water Management Practices in Kerala, held on 11-12 October 1980 at Calicut</md-title>
- <md-date>1980</md-date>
- <md-description>&quot;Published by Education and Extension Division for Centre for Water Resources Development and Management&quot;--T.p. verso</md-description>
+ <md-title>Social England in the fifteenth century</md-title>
+ <md-title-remainder>a study of the effects of economic conditions, thesis approval for the degree of doctor of science (economics) in the University of London</md-title-remainder>
+ <md-date>1909</md-date>
+ <md-author>Abram, A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3328957420">
-  <md-title>Proceedings, Seminar on Water Management Practices in Kerala, held on 11-12 October 1980 at Calicut</md-title>
-  <md-date>1980</md-date>
-  <md-description>&quot;Published by Education and Extension Division for Centre for Water Resources Development and Management&quot;--T.p. verso</md-description>
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>Social England in the fifteenth century</md-title>
+  <md-title-remainder>a study of the effects of economic conditions, thesis approval for the degree of doctor of science (economics) in the University of London</md-title-remainder>
+  <md-date>1909</md-date>
+  <md-author>Abram, A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title proceedings seminar on water management practices in kerala held on october at calicut medium book</recid>
+ <recid>content: title social england in the fifteenth century author abram a medium book</recid>
 </hit>
 <hit>
- <md-title>Proposition 13</md-title>
- <md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
- <md-date>2000</md-date>
- <md-description>&quot;March 2000.&quot;</md-description>
+ <md-title>Man and his poisons;</md-title>
+ <md-title-remainder>a practical exposition of the causes, symptoms and treatment of self-poisoning</md-title-remainder>
+ <md-date>1906</md-date>
+ <md-author>Abrams, Albert</md-author>
+ <md-description>Cover-title: Self-poisoning</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3232963828">
-  <md-title>Proposition 13</md-title>
-  <md-title-remainder>Safe Drinking Water, Clean Water, Watershed Protection, and Flood Protection Act</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-description>&quot;March 2000.&quot;</md-description>
+    name="LOC Solr Test" checksum="840589777">
+  <md-title>Man and his poisons;</md-title>
+  <md-title-remainder>a practical exposition of the causes, symptoms and treatment of self-poisoning</md-title-remainder>
+  <md-date>1906</md-date>
+  <md-author>Abrams, Albert</md-author>
+  <md-description>Cover-title: Self-poisoning</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title proposition medium book</recid>
+ <recid>content: title man and his poisons author abrams albert medium book</recid>
 </hit>
 <hit>
- <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
- <md-date>2000</md-date>
- <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-title>Manual of clinical diagnosis</md-title>
+ <md-date>1891-1892</md-date>
+ <md-author>Abrams, Albert</md-author>
+ <md-description>3d ed. has title: Clinical diagnosis</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="99732482">
-  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-  <md-date>2000</md-date>
-  <md-description>&quot;May 2000.&quot;</md-description>
-  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+    name="LOC Solr Test" checksum="1389459888">
+  <md-title>Manual of clinical diagnosis</md-title>
+  <md-date>1892</md-date>
+  <md-author>Abrams, Albert</md-author>
+  <md-description>3d ed. has title: Clinical diagnosis</md-description>
   <md-medium>book</md-medium>
  </location>
- <count>1</count>
- <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4069814715">
+  <md-title>Manual of clinical diagnosis</md-title>
+  <md-date>1891</md-date>
+  <md-author>Abrams, Albert</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <recid>content: title manual of clinical diagnosis author abrams albert medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855</md-title>
- <md-date>1855</md-date>
+ <md-title>Spondylotherapy; spinal concussion and the application of other methods to the spine in the treatment of disease</md-title>
+ <md-date>1910</md-date>
+ <md-author>Abrams, Albert</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1650349223">
-  <md-title>Report of the directors of the Boston Water-Power Company to its stockholders, April 24, 1855</md-title>
-  <md-date>1855</md-date>
+    name="LOC Solr Test" checksum="3004072357">
+  <md-title>Spondylotherapy; spinal concussion and the application of other methods to the spine in the treatment of disease</md-title>
+  <md-date>1910</md-date>
+  <md-author>Abrams, Albert</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the directors of the boston water power company to its stockholders april medium book</recid>
+ <recid>content: title spondylotherapy spinal concussion and the application of other methods to the spine in the treatment of disease author abrams albert medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the level two study for the Nine Mile Water and Sewer District</md-title>
- <md-date>1999</md-date>
- <md-description>Introduction -- Service planning area -- Land use planning -- Population and water usage -- Service system -- System design -- Permits, geotechnical issues, and surveying -- Cost estimate and financial analysis -- System operating plan -- References -- Plate 1 -- Appendices A-B</md-description>
+ <md-title>Transactions of the Antiseptic club</md-title>
+ <md-date>1895</md-date>
+ <md-author>Abrams, Albert</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="808591913">
-  <md-title>Report of the level two study for the Nine Mile Water and Sewer District</md-title>
-  <md-date>1999</md-date>
-  <md-description>&quot;November 1, 1999.&quot;</md-description>
-  <md-description>Introduction -- Service planning area -- Land use planning -- Population and water usage -- Service system -- System design -- Permits, geotechnical issues, and surveying -- Cost estimate and financial analysis -- System operating plan -- References -- Plate 1 -- Appendices A-B</md-description>
+    name="LOC Solr Test" checksum="3520944604">
+  <md-title>Transactions of the Antiseptic club</md-title>
+  <md-date>1895</md-date>
+  <md-author>Abrams, Albert</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the level two study for the nine mile water and sewer district medium book</recid>
+ <recid>content: title transactions of the antiseptic club author abrams albert medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the Water Commissioners on the material best adapted for distribution water pipes</md-title>
- <md-title-remainder>and on the most economical mode of introducing water in private houses</md-title-remainder>
- <md-date>1848</md-date>
- <md-description>Appendix contains reports by Eben N. Horsford and others</md-description>
+ <md-title>Ėkologicheskie aspekty proizvodstva i primenenii͡a nefteproduktov / Abrosimov A.A</md-title>
+ <md-date>1999</md-date>
+ <md-author>Abrosimov, A. A</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="227723938">
-  <md-title>Report of the Water Commissioners on the material best adapted for distribution water pipes</md-title>
-  <md-title-remainder>and on the most economical mode of introducing water in private houses</md-title-remainder>
-  <md-date>1848</md-date>
-  <md-description>Signed: Nathan Hale, Thomas B. Curtis</md-description>
-  <md-description>Issued as City document no. 32, 1848</md-description>
-  <md-description>Appendix contains reports by Eben N. Horsford and others</md-description>
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Ėkologicheskie aspekty proizvodstva i primenenii͡a nefteproduktov / Abrosimov A.A</md-title>
+  <md-date>1999</md-date>
+  <md-author>Abrosimov, A. A</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the water commissioners on the material best adapted for distribution water pipes medium book</recid>
+ <recid>content: title e kologicheskie aspekty proizvodstva i primenenii a nefteproduktov abrosimov a a author abrosimov a a medium book</recid>
 </hit>
 <hit>
- <md-title>Report to the IUCN on water demand management country study</md-title>
- <md-title-remainder>Namibia</md-title-remainder>
+ <md-title>Kehidupan wanita pencari kerang di Dusun IV, Desa Pantai Labu Pekan, Kecamatan Pantai Labu</md-title>
+ <md-title-remainder>laporan penelitian</md-title-remainder>
  <md-date>1999</md-date>
+ <md-author>Achiriah</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3717838211">
-  <md-title>Report to the IUCN on water demand management country study</md-title>
-  <md-title-remainder>Namibia</md-title-remainder>
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>Kehidupan wanita pencari kerang di Dusun IV, Desa Pantai Labu Pekan, Kecamatan Pantai Labu</md-title>
+  <md-title-remainder>laporan penelitian</md-title-remainder>
   <md-date>1999</md-date>
+  <md-author>Achiriah</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report to the iucn on water demand management country study medium book</recid>
+ <recid>content: title kehidupan wanita pencari kerang di dusun iv desa pantai labu pekan kecamatan pantai labu author achiriah medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d138c40..a8763fe 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>97</merged>
-<total>1995</total>
+<merged>100</merged>
+<total>201695</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Wading into Montana water rights</md-title>
- <md-date>1997</md-date>
- <md-author>Westesen, Gerald L</md-author>
- <md-description>&quot;July 31, 1997.&quot;</md-description>
+ <md-title>Phonkrathop khō̜ng sanyān witthayu læ thōrathat khām phromdǣn rawāng Thai-Lao</md-title>
+ <md-date>2001-2544</md-date>
+ <md-author>Wiphā ʻUtamachan</md-author>
+ <md-description>Study on audiences attitudes towards intercultural communication through broadcastings signals spilling cross borders between Thailand and Laos</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2844083037">
-  <md-title>Wading into Montana water rights</md-title>
-  <md-date>1997</md-date>
-  <md-author>Westesen, Gerald L</md-author>
-  <md-description>Cover title</md-description>
-  <md-description>&quot;July 31, 1997.&quot;</md-description>
+    name="LOC Solr Test" checksum="744596185">
+  <md-title>Phonkrathop khō̜ng sanyān witthayu læ thōrathat khām phromdǣn rawāng Thai-Lao</md-title>
+  <md-date>2001-2544</md-date>
+  <md-author>Wiphā ʻUtamachan</md-author>
+  <md-description>Study on audiences attitudes towards intercultural communication through broadcastings signals spilling cross borders between Thailand and Laos</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title wading into montana water rights author westesen gerald l medium book</recid>
+ <recid>content: title phonkrathop kho ng sanya n witthayu l tho rathat kha m phromd n rawa ng thai lao author wipha utamachan medium book</recid>
 </hit>
 <hit>
- <md-title>Water and wind power</md-title>
- <md-date>2000</md-date>
- <md-author>Watts, Martin</md-author>
+ <md-title>ʻUtsāhakam singthō̜ Thai =</md-title>
+ <md-title-remainder>The Thai textile industries</md-title-remainder>
+ <md-date>2001-2544</md-date>
+ <md-author>Wīrasak ʻUdomkitdēchā</md-author>
+ <md-description>&quot;Sanapsanun dōi Sathāban Phatthanā ʻUtsāhakam Singthō̜; National Metal and Materials Technology Center&quot;--Cover</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2487200110">
-  <md-title>Water and wind power</md-title>
-  <md-date>2000</md-date>
-  <md-author>Watts, Martin</md-author>
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>ʻUtsāhakam singthō̜ Thai =</md-title>
+  <md-title-remainder>The Thai textile industries</md-title-remainder>
+  <md-date>2001-2544</md-date>
+  <md-author>Wīrasak ʻUdomkitdēchā</md-author>
+  <md-description>&quot;Sanapsanun dōi Sathāban Phatthanā ʻUtsāhakam Singthō̜; National Metal and Materials Technology Center&quot;--Cover</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and wind power author watts martin medium book</recid>
+ <recid>content: title utsa hakam singtho thai author wi rasak udomkitde cha medium book</recid>
 </hit>
 <hit>
- <md-title>Water-quality trend analysis and sampling design for the Souris River, Saskatchewan, North Dakota, and Manitoba</md-title>
- <md-date>2000</md-date>
- <md-author>Vecchia, Aldo V</md-author>
+ <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="776594049">
-  <md-title>Water-quality trend analysis and sampling design for the Souris River, Saskatchewan, North Dakota, and Manitoba</md-title>
-  <md-date>2000</md-date>
-  <md-author>Vecchia, Aldo V</md-author>
+    name="LOC Solr Test" checksum="1810338543">
+  <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 water quality trend analysis and sampling design for the souris river saskatchewan north dakota and manitoba author vecchia aldo v medium book</recid>
+ <recid>content: title the children of adam author uthma n fath i medium book</recid>
 </hit>
 <hit>
- <md-title>Hydropolitics in the West Bank and Gaza Strip</md-title>
- <md-date>1999</md-date>
- <md-author>Trottier, Julie</md-author>
- <md-description>Translation of thesis (Ph.D.)--Université catholique de Louvain, 1999</md-description>
+ <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="3877827531">
-  <md-title>Hydropolitics in the West Bank and Gaza Strip</md-title>
-  <md-date>1999</md-date>
-  <md-author>Trottier, Julie</md-author>
-  <md-description>Translation of thesis (Ph.D.)--Université catholique de Louvain, 1999</md-description>
+    name="LOC Solr Test" checksum="3424951012">
+  <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 hydropolitics in the west bank and gaza strip author trottier julie medium book</recid>
+ <recid>content: title botba t nying sa i nai ka nphatthana author uthaki chulamani khamphui medium book</recid>
 </hit>
 <hit>
- <md-title>Water and water supplies</md-title>
- <md-date>1901</md-date>
- <md-author>Thresh, John Clough</md-author>
+ <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="520611137">
-  <md-title>Water and water supplies</md-title>
-  <md-date>1901</md-date>
-  <md-author>Thresh, John Clough</md-author>
+    name="LOC Solr Test" checksum="1293466296">
+  <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 water and water supplies author thresh john clough medium book</recid>
+ <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>A treatise on water-works for conveying and distributing supplies of water;</md-title>
- <md-title-remainder>with tables and examples</md-title-remainder>
- <md-date>1835</md-date>
- <md-author>Storrow, Charles S</md-author>
+ <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="3424951012">
-  <md-title>A treatise on water-works for conveying and distributing supplies of water;</md-title>
-  <md-title-remainder>with tables and examples</md-title-remainder>
-  <md-date>1835</md-date>
-  <md-author>Storrow, Charles S</md-author>
+    name="LOC Solr Test" checksum="227723938">
+  <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 a treatise on water works for conveying and distributing supplies of water author storrow charles s medium book</recid>
+ <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>Dividing the waters</md-title>
- <md-title-remainder>the resolution of interstate water conflicts in the United States</md-title-remainder>
+ <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
  <md-date>2000</md-date>
- <md-author>Sherk, George William</md-author>
- <md-description>Includes index</md-description>
+ <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="3264961692">
-  <md-title>Dividing the waters</md-title>
-  <md-title-remainder>the resolution of interstate water conflicts in the United States</md-title-remainder>
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
   <md-date>2000</md-date>
-  <md-author>Sherk, George William</md-author>
-  <md-description>Includes index</md-description>
+  <md-author>ʼUi Mā Chamʻ</md-author>
+  <md-description>Novel</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title dividing the waters author sherk george william medium book</recid>
+ <recid>content: title kray krve pyak n n a chi sui sa author ui ma cham medium book</recid>
 </hit>
 <hit>
- <md-title>Promoting small water harvesting structures in dryland regions</md-title>
- <md-title-remainder>a case study of the farm ponds scheme in Gujarat</md-title-remainder>
- <md-date>2000</md-date>
- <md-author>Shah, Amita</md-author>
+ <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="712598321">
-  <md-title>Promoting small water harvesting structures in dryland regions</md-title>
-  <md-title-remainder>a case study of the farm ponds scheme in Gujarat</md-title-remainder>
-  <md-date>2000</md-date>
-  <md-author>Shah, Amita</md-author>
+    name="LOC Solr Test" checksum="2940076629">
+  <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 promoting small water harvesting structures in dryland regions author shah amita medium book</recid>
+ <recid>content: title kawi niphon i sa n author udom bu asi medium book</recid>
 </hit>
 <hit>
- <md-title>Water budget of East Maui, Hawaii</md-title>
- <md-date>1999</md-date>
- <md-author>Shade, Patricia J</md-author>
+ <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="1133476976">
-  <md-title>Water budget of East Maui, Hawaii</md-title>
-  <md-date>1999</md-date>
-  <md-author>Shade, Patricia J</md-author>
+    name="LOC Solr Test" checksum="259721802">
+  <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 water budget of east maui hawaii author shade patricia j medium book</recid>
+ <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>Schultz and Warker&apos;s mineral spring waters</md-title>
- <md-title-remainder>their chemical composition, physiological action and therapeutical use; with a short review of the history of mineral waters</md-title-remainder>
- <md-date>1865</md-date>
- <md-author>Schultz, Carl H</md-author>
+ <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="3488946740">
-  <md-title>Schultz and Warker&apos;s mineral spring waters</md-title>
-  <md-title-remainder>their chemical composition, physiological action and therapeutical use; with a short review of the history of mineral waters</md-title-remainder>
-  <md-date>1865</md-date>
-  <md-author>Schultz, Carl H</md-author>
+  <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 schultz and warker s mineral spring waters author schultz carl h medium book</recid>
+ <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>Water challenge and institutional response</md-title>
- <md-title-remainder>a cross-country perspective</md-title-remainder>
- <md-date>1999</md-date>
- <md-author>Saleth, R. Maria</md-author>
+ <md-title>Voyage au Ouadây</md-title>
+ <md-date>1851</md-date>
+ <md-author>Tūnisī, Muḥammad ibn ʻUmar</md-author>
+ <md-description>Half-title: Voyage au Soudan oriental. Le Ouadây</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="259721802">
-  <md-title>Water challenge and institutional response</md-title>
-  <md-title-remainder>a cross-country perspective</md-title-remainder>
-  <md-date>1999</md-date>
-  <md-author>Saleth, R. Maria</md-author>
+    name="LOC Solr Test" checksum="776594049">
+  <md-title>Voyage au Ouadây</md-title>
+  <md-date>1851</md-date>
+  <md-author>Tūnisī, Muḥammad ibn ʻUmar</md-author>
+  <md-description>&quot;Planches&quot; have special t.-p</md-description>
+  <md-description>Half-title: Voyage au Soudan oriental. Le Ouadây</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water challenge and institutional response author saleth r maria medium book</recid>
+ <recid>content: title voyage au ouada y author tu nisi muh ammad ibn umar medium book</recid>
 </hit>
 <hit>
- <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
- <md-date>1997</md-date>
- <md-author>Saffran, Karen Anita</md-author>
- <md-description>&quot;March 1997.&quot;</md-description>
+ <md-title>Senthāng sāi tham</md-title>
+ <md-date>2000</md-date>
+ <md-author>Thō̜ngkham ʻŌ̜nmanīsō̜n</md-author>
+ <md-description>Buddhist poetry on the theme related to social aspects</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2908078765">
-  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-  <md-date>1997</md-date>
-  <md-author>Saffran, Karen Anita</md-author>
-  <md-description>&quot;March 1997.&quot;</md-description>
+    name="LOC Solr Test" checksum="840589777">
+  <md-title>Senthāng sāi tham</md-title>
+  <md-date>2000</md-date>
+  <md-author>Thō̜ngkham ʻŌ̜nmanīsō̜n</md-author>
+  <md-description>Poems</md-description>
+  <md-description>Buddhist poetry on the theme related to social aspects</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <recid>content: title sentha ng sa i tham author tho ngkham o nmani so n medium book</recid>
 </hit>
 <hit>
- <md-title>Water and its purification;</md-title>
- <md-title-remainder>a handbook for the use of local authorities, sanitary officers, and others interested in water supply;</md-title-remainder>
- <md-date>1902</md-date>
- <md-author>Rideal, Samuel</md-author>
+ <md-title>Mabaqwalen meʻebālan qwanqwa Tegreñā</md-title>
+ <md-title-remainder>ṭernuf ṣeḥufāt</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Taxasta ʼĀḥdarom</md-author>
+ <md-description>On the historical growth and development of the Tigrinya language</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1874334271">
-  <md-title>Water and its purification;</md-title>
-  <md-title-remainder>a handbook for the use of local authorities, sanitary officers, and others interested in water supply;</md-title-remainder>
-  <md-date>1902</md-date>
-  <md-author>Rideal, Samuel</md-author>
+    name="LOC Solr Test" checksum="3360955284">
+  <md-title>Mabaqwalen meʻebālan qwanqwa Tegreñā</md-title>
+  <md-title-remainder>ṭernuf ṣeḥufāt</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Taxasta ʼĀḥdarom</md-author>
+  <md-description>On the historical growth and development of the Tigrinya language</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and its purification author rideal samuel medium book</recid>
+ <recid>content: title mabaqwalen me eba lan qwanqwa tegren a author taxasta a h darom medium book</recid>
 </hit>
 <hit>
- <md-title>Water and wastewater project development</md-title>
- <md-date>1999</md-date>
- <md-author>Rendell, Frank</md-author>
+ <md-title>Tasfān qwanāten</md-title>
+ <md-author>Taxasta ʼĀbāy</md-author>
+ <md-description>A novel</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="323717530">
-  <md-title>Water and wastewater project development</md-title>
-  <md-date>1999</md-date>
-  <md-author>Rendell, Frank</md-author>
+    name="LOC Solr Test" checksum="2295212926">
+  <md-title>Tasfān qwanāten</md-title>
+  <md-author>Taxasta ʼĀbāy</md-author>
+  <md-description>A novel</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water and wastewater project development author rendell frank medium book</recid>
+ <recid>content: title tasfa n qwana ten author taxasta a ba y medium book</recid>
 </hit>
 <hit>
- <md-title>The water garden design book</md-title>
- <md-date>2001</md-date>
- <md-author>Rees, Yvonne</md-author>
- <md-description>Includes index</md-description>
+ <md-title>Paṭṭhānʻʺ guṇʻ raññʻ</md-title>
+ <md-date>2000</md-date>
+ <md-author>Takʻ ʼAṅʻʺ</md-author>
+ <md-description>On the benefits of reciting Paṭṭāna, Buddhist canon in verses; articles</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3004072357">
-  <md-title>The water garden design book</md-title>
-  <md-date>2001</md-date>
-  <md-author>Rees, Yvonne</md-author>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="3909825395">
+  <md-title>Paṭṭhānʻʺ guṇʻ raññʻ</md-title>
+  <md-date>2000</md-date>
+  <md-author>Takʻ ʼAṅʻʺ</md-author>
+  <md-description>On the benefits of reciting Paṭṭāna, Buddhist canon in verses; articles</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the water garden design book author rees yvonne medium book</recid>
+ <recid>content: title pat t ha n gun ran n author tak an medium book</recid>
 </hit>
 <hit>
- <md-title>Pahāṛa para pānī</md-title>
- <md-date>1999</md-date>
- <md-author>Ravi, Rājeśa</md-author>
- <md-description>On the effort of conserving rain water for drinking and harvesting; case study of selected villages in Rajasthan, India</md-description>
+ <md-title>Parvāz-i shāhīn</md-title>
+ <md-title-remainder>shiʻrī majmūʻah</md-title-remainder>
+ <md-date>1998</md-date>
+ <md-author>Shāhīn, ʻUs̲mān</md-author>
+ <md-description>Poems</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3781833939">
-  <md-title>Pahāṛa para pānī</md-title>
-  <md-date>1999</md-date>
-  <md-author>Ravi, Rājeśa</md-author>
-  <md-description>On the effort of conserving rain water for drinking and harvesting; case study of selected villages in Rajasthan, India</md-description>
+    name="LOC Solr Test" checksum="3973821123">
+  <md-title>Parvāz-i shāhīn</md-title>
+  <md-title-remainder>shiʻrī majmūʻah</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-author>Shāhīn, ʻUs̲mān</md-author>
+  <md-description>Poems</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title paha r a para pa ni author ravi ra jes a medium book</recid>
+ <recid>content: title parva z i sha hi n author sha hi n us ma n medium book</recid>
 </hit>
 <hit>
- <md-title>Institutions &amp; leadership in water resource management</md-title>
- <md-date>1999</md-date>
- <md-author>Rafiq, Abdul Qadir</md-author>
+ <md-title>rư̄fư̄n nikhahakam phư̄a khrai</md-title>
+ <md-date>2000-2543</md-date>
+ <md-author>Sawǣng ʻUdomsī</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3845829667">
-  <md-title>Institutions &amp; leadership in water resource management</md-title>
-  <md-date>1999</md-date>
-  <md-author>Rafiq, Abdul Qadir</md-author>
+    name="LOC Solr Test" checksum="2391206518">
+  <md-title>rư̄fư̄n nikhahakam phư̄a khrai</md-title>
+  <md-date>2000-2543</md-date>
+  <md-author>Sawǣng ʻUdomsī</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title institutions leadership in water resource management author rafiq abdul qadir medium book</recid>
+ <recid>content: title r f n nikhahakam ph a khrai author saw ng udomsi medium book</recid>
 </hit>
 <hit>
- <md-title>Travel time, user rate &amp; cost of supply</md-title>
- <md-title-remainder>drinking water in rural Kerala, India</md-title-remainder>
- <md-date>1996</md-date>
- <md-author>Pushpangadan, K</md-author>
- <md-description>With reference to India</md-description>
+ <md-title>Wikhro̜ nikhahakam Thammakāi</md-title>
+ <md-date>2000-2543</md-date>
+ <md-author>Sawǣng ʻUdomsī</md-author>
+ <md-description>Analysis on controversies of Wat Phrathammakāi, Buddhist temple&apos;s doctrines and monastic orders</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3392953148">
-  <md-title>Travel time, user rate &amp; cost of supply</md-title>
-  <md-title-remainder>drinking water in rural Kerala, India</md-title-remainder>
-  <md-date>1996</md-date>
-  <md-author>Pushpangadan, K</md-author>
-  <md-description>With reference to India</md-description>
+    name="LOC Solr Test" checksum="4005818987">
+  <md-title>Wikhro̜ nikhahakam Thammakāi</md-title>
+  <md-date>2000-2543</md-date>
+  <md-author>Sawǣng ʻUdomsī</md-author>
+  <md-description>Analysis on controversies of Wat Phrathammakāi, Buddhist temple&apos;s doctrines and monastic orders</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title travel time user rate cost of supply author pushpangadan k medium book</recid>
+ <recid>content: title wikhro nikhahakam thammaka i author saw ng udomsi medium book</recid>
 </hit>
 <hit>
- <md-title>Watering the western third</md-title>
- <md-title-remainder>water, land, and community in Western Australia, 1826-1998</md-title-remainder>
- <md-date>1998</md-date>
- <md-author>Powell, J. M</md-author>
+ <md-title>Šoreuli vardpʻurcʻloba</md-title>
+ <md-title-remainder>[lekʻsebi]</md-title-remainder>
+ <md-date>1994</md-date>
+ <md-author>Samxaraze-̇Jġamaże, Etʻer</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3813831803">
-  <md-title>Watering the western third</md-title>
-  <md-title-remainder>water, land, and community in Western Australia, 1826-1998</md-title-remainder>
-  <md-date>1998</md-date>
-  <md-author>Powell, J. M</md-author>
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Šoreuli vardpʻurcʻloba</md-title>
+  <md-title-remainder>[lekʻsebi]</md-title-remainder>
+  <md-date>1994</md-date>
+  <md-author>Samxaraze-̇Jġamaże, Etʻer</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title watering the western third author powell j m medium book</recid>
+ <recid>content: title s oreuli vardp urc loba author samxaraze jg amaz e et er medium book</recid>
 </hit>
 <hit>
- <md-title>Water harvesting and supplemental irrigation for improved water use efficiency in dry areas</md-title>
- <md-date>1999</md-date>
- <md-author>Oweis, Theib Yousef</md-author>
- <md-description>With reference to West Asia and North Africa</md-description>
+ <md-title>Guide to Kush</md-title>
+ <md-title-remainder>volumes I-XVII, 1953-1996 : table of contents, author index, subject index</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-author>Ṣādiq, Ṣalāḥ ʻUmar</md-author>
+ <md-description>Includes indexes</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2940076629">
-  <md-title>Water harvesting and supplemental irrigation for improved water use efficiency in dry areas</md-title>
-  <md-date>1999</md-date>
-  <md-author>Oweis, Theib Yousef</md-author>
-  <md-description>With reference to West Asia and North Africa</md-description>
+    name="LOC Solr Test" checksum="1842336407">
+  <md-title>Guide to Kush</md-title>
+  <md-title-remainder>volumes I-XVII, 1953-1996 : table of contents, author index, subject index</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-author>Ṣādiq, Ṣalāḥ ʻUmar</md-author>
+  <md-description>Includes indexes</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title water harvesting and supplemental irrigation for improved water use efficiency in dry areas author oweis theib yousef medium book</recid>
+ <recid>content: title guide to kush author s a diq s ala h umar medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 29499c4..b53f55a 100644 (file)
@@ -23,9 +23,9 @@
   <set name="pz:preferred"   value="1" />
   <set name="pz:block_timeout"  value="2" />
   <set name="pz:cclmap:term"  value="1=text s=Dal" />
-  <set name="pz:cclmap:au"    value="1=author"   />
-  <set name="pz:cclmap:su"    value="1=subject"  />
-  <set name="pz:cclmap:date"  value="1=date" />
+  <set name="pz:cclmap:au"    value="1=author t=z"   />
+  <set name="pz:cclmap:su"    value="1=subject t=z"  />
+  <set name="pz:cclmap:date"  value="1=date t=z" />
 <!--
   <set name="pz:cclmap:issn"  value="1=issn" />
 -->