Merge with master. Kept new solr test results
authorDennis Schafroth <dennis@indexdata.com>
Wed, 10 Oct 2012 12:57:11 +0000 (14:57 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Wed, 10 Oct 2012 12:57:11 +0000 (14:57 +0200)
21 files changed:
NEWS
src/client.c
src/client.h
src/http_command.c
src/reclists.c
src/reclists.h
src/session.c
src/session.h
test/run_pazpar2.sh
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
test/test_solr_settings_6.xml
test/test_url_10.res
test/test_url_18.res
test/test_url_7.res
test/test_url_8.res
test/test_url_9.res

diff --git a/NEWS b/NEWS
index 0fb3402..34435c6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+--- 1.6.22 2012/10/05
+
+Requires YAZ-4.2.40 to support native solr support. 
+
+Fix logic handling whether or not to re-do search. A new sort order 
+whould not trigger a new search, which is required for targets with
+native sorting capabilities.
+
 --- 1.6.21 2012/09/24
 
 Rank tweak: follow=number will increase mult by number if two terms
index 73bdb49..189bb61 100644 (file)
@@ -52,6 +52,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include <yaz/snprintf.h>
 #include <yaz/rpn2cql.h>
 #include <yaz/rpn2solr.h>
+#include <yaz/gettimeofday.h>
 
 #define USE_TIMING 0
 #if USE_TIMING
@@ -124,6 +125,9 @@ struct client {
     int ref_count;
     char *id;
     facet_limits_t facet_limits;
+    int same_search;
+    char *sort_strategy;
+    char *sort_criteria;
 };
 
 struct suggestions {
@@ -615,8 +619,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);
     }
 }
 
@@ -657,7 +660,7 @@ void client_record_response(struct client *cl)
     }
 }
 
-void client_reingest(struct client *cl)
+int client_reingest(struct client *cl)
 {
     int i = cl->startrecs;
     int to = cl->record_offset;
@@ -666,6 +669,7 @@ void client_reingest(struct client *cl)
     cl->record_offset = i;
     for (; i < to; i++)
         client_record_ingest(cl);
+    return 0;
 }
 
 static void client_set_facets_request(struct client *cl, ZOOM_connection link)
@@ -736,11 +740,37 @@ static const char *get_strategy_plus_sort(struct client *l, const char *field)
     return strategy_plus_sort;
 }
 
-void client_start_search(struct client *cl)
+int client_parse_init(struct client *cl, int same_search)
+{
+    cl->same_search = same_search;
+    return 0;
+}
+
+/*
+ * TODO consider how to extend the range
+ * */
+int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs)
+{
+    if (maxrecs && atoi(maxrecs) != cl->maxrecs)
+    {
+        cl->same_search = 0;
+        cl->maxrecs = atoi(maxrecs);
+    }
+
+    if (startrecs && atoi(startrecs) != cl->startrecs)
+    {
+        cl->same_search = 0;
+        cl->startrecs = atoi(startrecs);
+    }
+
+    return 0;
+}
+
+int client_start_search(struct client *cl)
 {
     struct session_database *sdb = client_get_database(cl);
-    struct connection *co = client_get_connection(cl);
-    ZOOM_connection link = connection_get_link(co);
+    struct connection *co = 0;
+    ZOOM_connection link = 0;
     struct session *se = client_get_session(cl);
     ZOOM_resultset rs;
     const char *opt_piggyback   = session_setting_oneval(sdb, PZ_PIGGYBACK);
@@ -753,15 +783,43 @@ 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];
+    struct timeval tval;
     int present_chunk = 20; // Default chunk size
+    int rc_prep_connection;
+
+
+    yaz_gettimeofday(&tval);
+    tval.tv_sec += 5;
+
     if (opt_present_chunk && strcmp(opt_present_chunk,"")) {
         present_chunk = atoi(opt_present_chunk);
         yaz_log(YLOG_DEBUG, "Present chunk set to %d", present_chunk);
     }
+    rc_prep_connection =
+        client_prep_connection(cl, se->service->z3950_operation_timeout,
+                               se->service->z3950_session_timeout,
+                               se->service->server->iochan_man,
+                               &tval);
+    /* Nothing has changed and we already have a result */
+    if (cl->same_search == 1 && rc_prep_connection == 2)
+    {
+        session_log(se, YLOG_LOG, "client %s REUSE result", client_get_id(cl));
+        return client_reingest(cl);
+    }
+    else if (!rc_prep_connection)
+    {
+        session_log(se, YLOG_LOG, "client %s FAILED to search: No connection.", client_get_id(cl));
+        return -1;
+    }
+    co = client_get_connection(cl);
+    assert(cl);
+    link = connection_get_link(co);
     assert(link);
 
+    session_log(se, YLOG_LOG, "client %s NEW search", client_get_id(cl));
+
     cl->diagnostic = 0;
     cl->filtered = 0;
 
@@ -814,65 +872,36 @@ 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);
-        int increasing = se->sorted_results->increasing;
-        // int position = se->sorted_results->position;
-        if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
-        {
-            char spec[50], *p;
-            strcpy(spec, sort_strategy_and_spec);
-            p = strchr(spec, ':');
-            if (p)
-            {
-                *p++ = '\0'; /* cut the string in two */
-                while (*p == ' ')
-                    p++;
-                if (increasing)
-                    strcat(p, " <");
-                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);
-            }
-        }
-        else
-        {
-            /* no native sorting.. If this is not the first search, then
-               skip it entirely */
-            if (se->sorted_results->next)
-            {
-                yaz_log(YLOG_DEBUG,"Client %s: Do not (re)search anyway", client_get_id(cl));
-                ZOOM_query_destroy(q);
-                return;
-            }
-        }
+    if (cl->sort_strategy && cl->sort_criteria) {
+        yaz_log(YLOG_LOG, "Client %s: Setting ZOOM sort strategy and criteria: %s %s",
+                client_get_id(cl), cl->sort_strategy, cl->sort_criteria);
+        ZOOM_query_sortby2(query, cl->sort_strategy, cl->sort_criteria);
     }
+
     yaz_log(YLOG_DEBUG,"Client %s: Starting search", client_get_id(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);
+    return 0;
 }
 
 struct client *client_create(const char *id)
@@ -899,6 +928,8 @@ struct client *client_create(const char *id)
     cl->preferred = 0;
     cl->ref_count = 1;
     cl->facet_limits = 0;
+    cl->sort_strategy = 0;
+    cl->sort_criteria = 0;
     assert(id);
     cl->id = xstrdup(id);
     client_use(1);
@@ -1193,13 +1224,13 @@ static int apply_limit(struct session_database *sdb,
 }
 
 // Parse the query given the settings specific to this client
-// return 0 if query is OK but different from before
-// return 1 if query is OK but same as before
+// client variable same_search is set as below as well as returned:
+// 0 if query is OK but different from before
+// 1 if query is OK but same as before
 // return -1 on query error
 // return -2 on limit error
 int client_parse_query(struct client *cl, const char *query,
                        facet_limits_t facet_limits,
-                       const char *startrecs, const char *maxrecs,
                        CCL_bibset bibset)
 {
     struct session *se = client_get_session(cl);
@@ -1219,18 +1250,6 @@ int client_parse_query(struct client *cl, const char *query,
     if (!ccl_map)
         return -3;
 
-    if (maxrecs && atoi(maxrecs) != cl->maxrecs)
-    {
-        ret_value = 0;
-        cl->maxrecs = atoi(maxrecs);
-    }
-
-    if (startrecs && atoi(startrecs) != cl->startrecs)
-    {
-        ret_value = 0;
-        cl->startrecs = atoi(startrecs);
-    }
-
     w_ccl = wrbuf_alloc();
     wrbuf_puts(w_ccl, query);
 
@@ -1250,7 +1269,7 @@ int client_parse_query(struct client *cl, const char *query,
     facet_limits_destroy(cl->facet_limits);
     cl->facet_limits = facet_limits_dup(facet_limits);
 
-    yaz_log(YLOG_LOG, "Client %s: CCL query: %s", client_get_id(cl), wrbuf_cstr(w_ccl));
+    yaz_log(YLOG_LOG, "Client %s: CCL query: %s limit: %s", client_get_id(cl), wrbuf_cstr(w_ccl), wrbuf_cstr(w_pqf));
     cn = ccl_find_str(ccl_map, wrbuf_cstr(w_ccl), &cerror, &cpos);
     ccl_qual_rm(&ccl_map);
     if (!cn)
@@ -1286,11 +1305,18 @@ int client_parse_query(struct client *cl, const char *query,
         }
     }
 
+    /* Compares query and limit with old one. If different we need to research */
     if (!cl->pquery || strcmp(cl->pquery, wrbuf_cstr(w_pqf)))
     {
+        if (cl->pquery)
+            session_log(se, YLOG_LOG, "Client %s: Re-search due query/limit change: %s to %s", 
+                        client_get_id(cl), cl->pquery, wrbuf_cstr(w_pqf));
         xfree(cl->pquery);
         cl->pquery = xstrdup(wrbuf_cstr(w_pqf));
+        // return value is no longer used.
         ret_value = 0;
+        // Need to (re)search
+        cl->same_search= 0;
     }
     wrbuf_destroy(w_pqf);
 
@@ -1320,6 +1346,9 @@ int client_parse_query(struct client *cl, const char *query,
                 cl->cqlquery = make_cqlquery(cl, zquery);
             if (!cl->cqlquery)
                 ret_value = -1;
+            else
+                session_log(se, YLOG_LOG, "Client %s native query: %s (%s)",
+                            client_get_id(cl), cl->cqlquery, sru);
         }
     }
     odr_destroy(odr_out);
@@ -1338,6 +1367,54 @@ int client_parse_query(struct client *cl, const char *query,
     return ret_value;
 }
 
+int client_parse_sort(struct client *cl, struct reclist_sortparms *sp)
+{
+    struct session *se = client_get_session(cl);
+    if (sp)
+    {
+        const char *sort_strategy_and_spec =
+            get_strategy_plus_sort(cl, sp->name);
+        int increasing = sp->increasing;
+        if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
+        {
+            char strategy[50], *p;
+            strcpy(strategy, sort_strategy_and_spec);
+            p = strchr(strategy, ':');
+            if (p)
+            {
+                // Split the string in two
+                *p++ = 0;
+                while (*p == ' ')
+                    p++;
+                if (increasing)
+                    strcat(p, " <");
+                else
+                    strcat(p, " >");
+                yaz_log(YLOG_LOG, "Client %s: applying sorting %s %s", client_get_id(cl), strategy, p);
+                if (!cl->sort_strategy || strcmp(cl->sort_strategy, strategy))
+                    cl->same_search = 0;
+                if (!cl->sort_criteria || strcmp(cl->sort_criteria, p))
+                    cl->same_search = 0;
+                if (cl->same_search == 0) {
+                    cl->sort_strategy  = nmem_strdup(se->nmem, strategy);
+                    cl->sort_criteria = nmem_strdup(se->nmem, p);
+                }
+            }
+            else {
+                yaz_log(YLOG_LOG, "Client %s: Invalid sort strategy and spec found %s", client_get_id(cl), sort_strategy_and_spec);
+                cl->sort_strategy  = 0;
+                cl->sort_criteria = 0;
+            }
+        } else {
+            yaz_log(YLOG_LOG, "Client %s: No sort strategy and spec found.", client_get_id(cl));
+            cl->sort_strategy  = 0;
+            cl->sort_criteria = 0;
+        }
+
+    }
+    return !cl->same_search;
+}
+
 void client_set_session(struct client *cl, struct session *se)
 {
     cl->session = se;
@@ -1498,6 +1575,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..8745abe 100644 (file)
@@ -25,6 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #define CLIENT_H
 
 #include "facet_limit.h"
+#include "reclists.h"
 
 struct client;
 struct connection;
@@ -78,15 +79,18 @@ int client_prep_connection(struct client *cl,
                            int operation_timeout, int session_timeout,
                            iochan_man_t iochan,
                            const struct timeval *abstime);
-void client_start_search(struct client *cl);
+int client_start_search(struct client *cl);
+int client_parse_init(struct client *cl, int same_search);
+int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs);
+int client_parse_sort(struct client *cl, struct reclist_sortparms *sp);
 void client_set_session(struct client *cl, struct session *se);
 int client_is_active(struct client *cl);
 int client_is_active_preferred(struct client *cl);
 struct client *client_next_in_session(struct client *cl);
 
 int client_parse_query(struct client *cl, const char *query,
-                       facet_limits_t facet_limits, const char *startrecs,
-                       const char *maxrecs,
+                       facet_limits_t facet_limits,
+                       //const char *startrecs, const char *maxrecs,
                        CCL_bibset bibset);
 Odr_int client_get_hits(struct client *cl);
 Odr_int client_get_approximation(struct client *cl);
@@ -106,11 +110,14 @@ void client_unlock(struct client *c);
 
 int client_has_facet(struct client *cl, const char *name);
 void client_check_preferred_watch(struct client *cl);
-void client_reingest(struct client *cl);
+int client_reingest(struct client *cl);
 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..9469fd2 100644 (file)
@@ -56,7 +56,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include <yaz/querytowrbuf.h>
 #include <yaz/oid_db.h>
 #include <yaz/snprintf.h>
-#include <yaz/gettimeofday.h>
 
 #define USE_TIMING 0
 #if USE_TIMING
@@ -149,14 +148,18 @@ static void log_xml_doc(xmlDoc *doc)
     xmlFree(result);
 }
 
-static void session_enter(struct session *s)
+static void session_enter(struct session *s, const char *caller)
 {
+    if (caller)
+        session_log(s, YLOG_DEBUG, "Session lock by %s", caller);
     yaz_mutex_enter(s->session_mutex);
 }
 
-static void session_leave(struct session *s)
+static void session_leave(struct session *s, const char *caller)
 {
     yaz_mutex_leave(s->session_mutex);
+    if (caller)
+        session_log(s, YLOG_DEBUG, "Session unlock by %s", caller);
 }
 
 static void session_normalize_facet(struct session *s, const char *type,
@@ -463,7 +466,7 @@ int session_set_watch(struct session *s, int what,
                       struct http_channel *chan)
 {
     int ret;
-    session_enter(s);
+    session_enter(s, "session_set_watch");
     if (s->watchlist[what].fun)
         ret = -1;
     else
@@ -475,14 +478,14 @@ int session_set_watch(struct session *s, int what,
                                                    session_watch_cancel);
         ret = 0;
     }
-    session_leave(s);
+    session_leave(s, "session_set_watch");
     return ret;
 }
 
 void session_alert_watch(struct session *s, int what)
 {
     assert(s);
-    session_enter(s);
+    session_enter(s, "session_alert_watch");
     if (s->watchlist[what].fun)
     {
         /* our watch is no longer associated with http_channel */
@@ -499,13 +502,13 @@ void session_alert_watch(struct session *s, int what)
         s->watchlist[what].data = 0;
         s->watchlist[what].obs = 0;
 
-        session_leave(s);
+        session_leave(s, "session_alert_watch");
         session_log(s, YLOG_DEBUG,
                     "Alert Watch: %d calling function: %p", what, fun);
         fun(data);
     }
     else
-        session_leave(s);
+        session_leave(s,"session_alert_watch");
 }
 
 //callback for grep_databases
@@ -545,10 +548,10 @@ static void session_reset_active_clients(struct session *se,
 {
     struct client_list *l;
 
-    session_enter(se);
+    session_enter(se, "session_reset_active_clients");
     l = se->clients_active;
     se->clients_active = new_list;
-    session_leave(se);
+    session_leave(se, "session_reset_active_clients");
 
     while (l)
     {
@@ -569,10 +572,10 @@ static void session_remove_cached_clients(struct session *se)
 
     session_reset_active_clients(se, 0);
 
-    session_enter(se);
+    session_enter(se, "session_remove_cached_clients");
     l = se->clients_cached;
     se->clients_cached = 0;
-    session_leave(se);
+    session_leave(se, "session_remove_cached_clients");
 
     while (l)
     {
@@ -619,8 +622,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 +635,69 @@ 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)
+static void session_sort_unlocked(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_leave(se);
+        session_log(se, YLOG_DEBUG, "search_sort: field=%s increasing=%d type=%d already fetched",
+                    field, increasing, type);
         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;
+        // Assume no re-search is required.
+        client_parse_init(cl, 1);
+        clients_research += client_parse_sort(cl, sp);
+    }
+    if (clients_research) {
+        yaz_log(YLOG_DEBUG, "Reset results due to %d clients researching", clients_research);
+        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;
+        session_log(se, YLOG_DEBUG, "No research/ingesting done");
+        return ;
     }
-    yaz_log(YLOG_DEBUG, "Restarting search for clients due to change in sort order");
+    session_log(se, YLOG_DEBUG, "Re- search/ingesting for clients due to change in sort order");
 
     for (l = se->clients_active; l; l = l->next)
     {
@@ -689,13 +705,23 @@ 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);
         }
+        else {
+            yaz_log(YLOG_DEBUG, "Client %s: No re-start/ingest in show. Wrong client state: %d",
+                        client_get_id(cl), client_get_state(cl));
+        }
+
     }
-    session_leave(se);
 }
 
+void session_sort(struct session *se, struct reclist_sortparms *sp) {
+    //session_enter(se, "session_sort");
+    session_sort_unlocked(se, sp);
+    //session_leave(se, "session_sort");
+}
+
+
 enum pazpar2_error_code session_search(struct session *se,
                                        const char *query,
                                        const char *startrecs,
@@ -710,56 +736,57 @@ enum pazpar2_error_code session_search(struct session *se,
     int no_failed_query = 0;
     int no_failed_limit = 0;
     struct client_list *l, *l0;
-    struct timeval tval;
     facet_limits_t facet_limits;
+    int same_sort_order = 0;
 
     session_log(se, YLOG_DEBUG, "Search");
 
     *addinfo = 0;
 
-    if (se->settings_modified)
+    if (se->settings_modified) {
         session_remove_cached_clients(se);
+    }
     else
         session_reset_active_clients(se, 0);
 
-    session_enter(se);
+    session_enter(se, "session_search");
     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);
     if (!live_channels)
     {
-        session_leave(se);
+        session_leave(se, "session_search");
         return PAZPAR2_NO_TARGETS;
     }
 
-    yaz_gettimeofday(&tval);
-
-    tval.tv_sec += 5;
-
     facet_limits = facet_limits_create(limit);
     if (!facet_limits)
     {
         *addinfo = "limit";
-        session_leave(se);
+        session_leave(se, "session_search");
         return PAZPAR2_MALFORMED_PARAMETER_VALUE;
     }
 
     l0 = se->clients_active;
     se->clients_active = 0;
-    session_leave(se);
+    session_leave(se, "session_search");
 
     for (l = l0; l; l = l->next)
     {
         int parse_ret;
         struct client *cl = l->client;
-
+        client_parse_init(cl, 1);
         if (prepare_map(se, client_get_database(cl)) < 0)
             continue;
 
-        parse_ret = client_parse_query(cl, query, facet_limits, startrecs,
-                                       maxrecs, se->service->ccl_bibset);
+        parse_ret = client_parse_query(cl, query, facet_limits, se->service->ccl_bibset);
         if (parse_ret == -1)
             no_failed_query++;
         else if (parse_ret == -2)
@@ -768,21 +795,9 @@ enum pazpar2_error_code session_search(struct session *se,
             no_working++; /* other error, such as bad CCL map */
         else
         {
-            int r =
-                client_prep_connection(cl, se->service->z3950_operation_timeout,
-                                       se->service->z3950_session_timeout,
-                                       se->service->server->iochan_man,
-                                       &tval);
-            if (parse_ret == 1 && r == 2)
-            {
-                session_log(se, YLOG_LOG, "client %s REUSE result", client_get_id(cl));
-                client_reingest(cl);
-            }
-            else if (r)
-            {
-                session_log(se, YLOG_LOG, "client %s NEW search", client_get_id(cl));
-                client_start_search(cl);
-            }
+            client_parse_range(cl, startrecs, maxrecs);
+            client_parse_sort(cl, sp);
+            client_start_search(cl);
             no_working++;
         }
     }
@@ -927,9 +942,9 @@ size_t session_get_memory_status(struct session *session) {
     size_t session_nmem;
     if (session == 0)
         return 0;
-    session_enter(session);
+    session_enter(session, "session_get_memory_status");
     session_nmem = nmem_total(session->nmem);
-    session_leave(session);
+    session_leave(session, "session_get_memory_status");
     return session_nmem;
 }
 
@@ -959,6 +974,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;
@@ -1016,9 +1033,9 @@ static struct hitsbytarget *hitsbytarget_nb(struct session *se,
 struct hitsbytarget *get_hitsbytarget(struct session *se, int *count, NMEM nmem)
 {
     struct hitsbytarget *p;
-    session_enter(se);
+    session_enter(se, "get_hitsbytarget");
     p = hitsbytarget_nb(se, count, nmem);
-    session_leave(se);
+    session_leave(se, "get_hitsbytarget");
     return p;
 }
 
@@ -1101,7 +1118,7 @@ void perform_termlist(struct http_channel *c, struct session *se,
 
     nmem_strsplit(nmem_tmp, ",", name, &names, &num_names);
 
-    session_enter(se);
+    session_enter(se, "perform_termlist");
 
     for (j = 0; j < num_names; j++)
     {
@@ -1164,7 +1181,7 @@ void perform_termlist(struct http_channel *c, struct session *se,
             wrbuf_puts(c->wrbuf, "\"/>\n");
         }
     }
-    session_leave(se);
+    session_leave(se, "perform_termlist");
     nmem_destroy(nmem_tmp);
 }
 
@@ -1187,7 +1204,7 @@ struct record_cluster *show_single_start(struct session *se, const char *id,
 {
     struct record_cluster *r = 0;
 
-    session_enter(se);
+    session_enter(se, "show_single_start");
     *prev_r = 0;
     *next_r = 0;
     if (se->reclist)
@@ -1205,13 +1222,13 @@ struct record_cluster *show_single_start(struct session *se, const char *id,
         reclist_leave(se->reclist);
     }
     if (!r)
-        session_leave(se);
+        session_leave(se, "show_single_start");
     return r;
 }
 
 void show_single_stop(struct session *se, struct record_cluster *rec)
 {
-    session_leave(se);
+    session_leave(se, "show_single_stop");
 }
 
 struct record_cluster **show_range_start(struct session *se,
@@ -1224,7 +1241,7 @@ struct record_cluster **show_range_start(struct session *se,
 #if USE_TIMING
     yaz_timing_t t = yaz_timing_create();
 #endif
-    session_enter(se);
+    session_enter(se, "show_range_start");
     recs = nmem_malloc(se->nmem, *num * sizeof(struct record_cluster *));
     if (!se->relevance)
     {
@@ -1287,7 +1304,7 @@ struct record_cluster **show_range_start(struct session *se,
 
 void show_range_stop(struct session *se, struct record_cluster **recs)
 {
-    session_leave(se);
+    session_leave(se, "show_range_stop");
 }
 
 void statistics(struct session *se, struct statistics *stat)
@@ -1594,10 +1611,10 @@ int ingest_record(struct client *cl, const char *rec,
         xmlFreeDoc(xdoc);
         return -1;
     }
-    session_enter(se);
+    session_enter(se, "ingest_record");
     if (client_get_session(cl) == se)
         ret = ingest_to_cluster(cl, xdoc, root, record_no, mergekey_norm);
-    session_leave(se);
+    session_leave(se, "ingest_record");
 
     xmlFreeDoc(xdoc);
     return ret;
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 f62c082..b18e0a5 100755 (executable)
@@ -105,6 +105,7 @@ for f in `cat ${srcdir}/${URLS}`; do
        if test -f $OUT1 -a -z "$PAZPAR2_OVERRIDE_TEST"; then
            if diff $OUT1 $OUT2 >$DIFF; then
                rm $DIFF
+               rm $OUT2
            else
                echo "Test $testno: Failed. See $OUT1, $OUT2 and $DIFF"
                echo "URL: $f"
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 afa5d9e..a9ff9c9 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>95</merged>
-<total>1995</total>
+<merged>100</merged>
+<total>249403</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>The vertuose boke of the distyllacyon of all maner of waters of the herbes in this present volume expressed with the fygures of the styllatoryes to that noble worke belongyne</md-title>
- <md-date>1530</md-date>
- <md-author>Brunschwig, Hieronymus</md-author>
- <md-description>&quot;The colophon states that the book was finished in 1527, but this is presumably not meant for the date of printing&quot;--McKerrow</md-description>
+ <md-title>De successione ab intestato</md-title>
+ <md-date>1470-1970</md-date>
+ <md-author>Cino</md-author>
+ <md-description>&quot;Questo trattatello ... attribuito a Cino da Pistoia ... `e stato riprodotto a cura di Giovanni Tellini con il patrocinio dell&apos;Ente provinciale per il turismo di Pistoia nel settimo centenario della nascita di Cino dall&apos;unico esemplare conservato in Italia nella Biblioteca Forteguerriana di Pistoia dell&apos;edizione stampata a Colonia dalla tipografia del Dictys Historia Troiana circa il 1470.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="1037483384">
-  <md-title>The vertuose boke of the distyllacyon of all maner of waters of the herbes in this present volume expressed with the fygures of the styllatoryes to that noble worke belongyne</md-title>
-  <md-date>1530</md-date>
-  <md-author>Brunschwig, Hieronymus</md-author>
-  <md-description>T.p. in red and black</md-description>
-  <md-description>Translation of Kleines distillierbuch, books 1-2</md-description>
-  <md-description>&quot;The colophon states that the book was finished in 1527, but this is presumably not meant for the date of printing&quot;--McKerrow</md-description>
-  <md-description>Signatures: [para]⁴ a-b⁶ c-d⁴ e-f⁶ A⁴ B-R⁴/⁶ S-T⁴ V⁶ X⁴</md-description>
+  <md-title>De successione ab intestato</md-title>
+  <md-date>1470-1970</md-date>
+  <md-author>Cino</md-author>
+  <md-description>Facsimile reproduction of Latin incunabulum GW 7048, preceded by a laid-in gathering with the t.p. and an introduction in Italian by Giancarlo Savino</md-description>
+  <md-description>The imprint given on the (new) t.p. (the incunable had none) is conjectural, based on the Gesamtkatalog and other sources</md-description>
+  <md-description>&quot;Questo trattatello ... attribuito a Cino da Pistoia ... `e stato riprodotto a cura di Giovanni Tellini con il patrocinio dell&apos;Ente provinciale per il turismo di Pistoia nel settimo centenario della nascita di Cino dall&apos;unico esemplare conservato in Italia nella Biblioteca Forteguerriana di Pistoia dell&apos;edizione stampata a Colonia dalla tipografia del Dictys Historia Troiana circa il 1470.&quot;</md-description>
+  <md-description>&quot;Edizione di trecento esemplari numerati ... Pistoia dicembre 1970.&quot;</md-description>
+  <md-description>LC copy is numbered 277.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the vertuose boke of the distyllacyon of all maner of waters of the herbes in this present volume expressed with the fygures of the styllatoryes to that noble worke belongyne author brunschwig hieronymus medium book</recid>
+ <recid>content: title de successione ab intestato author cino medium book</recid>
 </hit>
 <hit>
- <md-title>In regias aquarum et silvarum constitutiones, commentarius</md-title>
- <md-date>1561</md-date>
- <md-author>Malleuillaeus, Claudius</md-author>
- <md-description>Commentary in Latin with text of the constitutiones in French</md-description>
+ <md-title>The Long parliament revived</md-title>
+ <md-title-remainder>or, An act for continuation, and the not dissolving the Long parliament (call&apos;d by King Charles the First, in the year 1640.) but by an act of Parliament. With undeniable reasons deduced from the said act to prove that that Parliament is not yet dissolved. Also, Mr. William Pryn his five arguments fully answered: whereby he endeavours to prove it to be dissolved by the kings death, &amp;c</md-title-remainder>
+ <md-date>1661</md-date>
+ <md-author>Drake, William</md-author>
+ <md-description>Wing D2136</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="2652095853">
-  <md-title>In regias aquarum et silvarum constitutiones, commentarius</md-title>
-  <md-date>1561</md-date>
-  <md-author>Malleuillaeus, Claudius</md-author>
-  <md-description>Commentary in Latin with text of the constitutiones in French</md-description>
-  <md-description>Signatures: ã⁸ a-o⁸ p⁴</md-description>
-  <md-description>Includes index</md-description>
-  <md-description>Errata on p. [2] at end</md-description>
+  <md-title>The Long parliament revived</md-title>
+  <md-title-remainder>or, An act for continuation, and the not dissolving the Long parliament (call&apos;d by King Charles the First, in the year 1640.) but by an act of Parliament. With undeniable reasons deduced from the said act to prove that that Parliament is not yet dissolved. Also, Mr. William Pryn his five arguments fully answered: whereby he endeavours to prove it to be dissolved by the kings death, &amp;c</md-title-remainder>
+  <md-date>1661</md-date>
+  <md-author>Drake, William</md-author>
+  <md-description>Wing D2136</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title in regias aquarum et silvarum constitutiones commentarius author malleuillaeus claudius medium book</recid>
+ <recid>content: title the long parliament revived author drake william medium book</recid>
 </hit>
 <hit>
- <md-title>Institutio Christianae religionis</md-title>
- <md-date>1568</md-date>
- <md-author>Calvin, Jean</md-author>
- <md-description>LC copy imperfect: final leaf wanting; ink stain on t.p. and water stains throughout with no loss of text.DLC</md-description>
+ <md-title>The Pennsylvania farmer;</md-title>
+ <md-title-remainder>being a selection from the most approved treatises on husbandry, interspersed with observations and experiments</md-title-remainder>
+ <md-date>1804</md-date>
+ <md-author>Roberts, Job</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="4266708322">
-  <md-title>Institutio Christianae religionis</md-title>
-  <md-date>1568</md-date>
-  <md-author>Calvin, Jean</md-author>
-  <md-description>Printer&apos;s device of F. Perrin on t.p</md-description>
-  <md-description>Signatures: *⁸ a-z⁸, A-N⁸ O¹⁰, 2A-2B⁶ 2C-2E⁸ 2F²</md-description>
-  <md-description>Includes index</md-description>
-  <md-description>LC copy imperfect: final leaf wanting; ink stain on t.p. and water stains throughout with no loss of text.DLC</md-description>
+  <md-title>The Pennsylvania farmer;</md-title>
+  <md-title-remainder>being a selection from the most approved treatises on husbandry, interspersed with observations and experiments</md-title-remainder>
+  <md-date>1804</md-date>
+  <md-author>Roberts, Job</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title institutio christianae religionis author calvin jean medium book</recid>
+ <recid>content: title the pennsylvania farmer author roberts job medium book</recid>
 </hit>
 <hit>
- <md-title>An invention of engines of motion lately brought to perfection</md-title>
- <md-title-remainder>Whereby may be dispatched any work now done in England or elsewhere, (especially works that require strength and swiftness) either by wind, water, cattel or man</md-title-remainder>
- <md-date>1651</md-date>
- <md-author>Hartlib, Samuel</md-author>
+ <md-title>The letters of Junius. &quot;Stat nominis umbra.&quot;</md-title>
+ <md-date>1813</md-date>
+ <md-author>Junius</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="1586353495">
-  <md-title>An invention of engines of motion lately brought to perfection</md-title>
-  <md-title-remainder>Whereby may be dispatched any work now done in England or elsewhere, (especially works that require strength and swiftness) either by wind, water, cattel or man</md-title-remainder>
-  <md-date>1651</md-date>
-  <md-author>Hartlib, Samuel</md-author>
+  <md-title>The letters of Junius. &quot;Stat nominis umbra.&quot;</md-title>
+  <md-date>1813</md-date>
+  <md-author>Junius</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an invention of engines of motion lately brought to perfection author hartlib samuel medium book</recid>
+ <recid>content: title the letters of junius stat nominis umbra author junius medium book</recid>
 </hit>
 <hit>
- <md-title>Hugonis Grotii De jure belli ac pacis libri tres</md-title>
- <md-title-remainder>in quibus jus naturae &amp; gentium, item juris publici praecipua explicantur : cum commentariis Gulielmi van der Muelen : accedunt et authoris annotata, ex postrema ejus ante obitum cura, nec non Joann. Frid. Gronovii ... notae in totum opus</md-title-remainder>
- <md-date>1696-1703</md-date>
- <md-author>Grotius, Hugo</md-author>
- <md-description>Signatures: v. 1: Engr. t.p., pi1 *⁴ 2*² 3*1, (plate), A-I⁴ K1, ²A-Z⁴ Aa-Pp⁴ Qq², ³A-Y² (³Y2 blank); v. 2: *² 2*² 3*1 A-Z⁴ Aa-Zz⁴ Aaa-Zzz⁴ Aaaa-Zzzz⁴ Aaaaa-Ggggg⁴, ²A-Z² ²Aa-Qq²; v. 3: *² 2*1 A-Z⁴ Aa-Nn⁴, ²A-Z² (²Z2, blank? wanting)</md-description>
+ <md-title>Some account of the life of Rachael Wriothesley, Lady Russell</md-title>
+ <md-date>1819</md-date>
+ <md-author>Russell, Lady Rachel Wriothesley Vaughan</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="520611137">
-  <md-title>Hugonis Grotii De jure belli ac pacis libri tres</md-title>
-  <md-title-remainder>in quibus jus naturae &amp; gentium, item juris publici praecipua explicantur : cum commentariis Gulielmi van der Muelen : accedunt et authoris annotata, ex postrema ejus ante obitum cura, nec non Joann. Frid. Gronovii ... notae in totum opus</md-title-remainder>
-  <md-date>1696-1703</md-date>
-  <md-author>Grotius, Hugo</md-author>
-  <md-description>Vol. 1 has also engraved t.p.; in all 3 volumes, engraved device (tree, with motto &quot;Virescit aquis&quot;) on t.p.; in v. 1, engr. portrait of Gulielmus van der Muelen</md-description>
-  <md-description>Vol. 1: Engr. t.p., [16], (plate), 74, 307, [1], 57, [31] p. (the last leaf blank); v. 2 (1700): [10], 792, 115, [41] p.; v. 3: [6], 288, 62, [28] p</md-description>
-  <md-description>Signatures: v. 1: Engr. t.p., pi1 *⁴ 2*² 3*1, (plate), A-I⁴ K1, ²A-Z⁴ Aa-Pp⁴ Qq², ³A-Y² (³Y2 blank); v. 2: *² 2*² 3*1 A-Z⁴ Aa-Zz⁴ Aaa-Zzz⁴ Aaaa-Zzzz⁴ Aaaaa-Ggggg⁴, ²A-Z² ²Aa-Qq²; v. 3: *² 2*1 A-Z⁴ Aa-Nn⁴, ²A-Z² (²Z2, blank? wanting)</md-description>
-  <md-description>Includes indexes</md-description>
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Some account of the life of Rachael Wriothesley, Lady Russell</md-title>
+  <md-date>1819</md-date>
+  <md-author>Russell, Lady Rachel Wriothesley Vaughan</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title hugonis grotii de jure belli ac pacis libri tres author grotius hugo medium book</recid>
+ <recid>content: title some account of the life of rachael wriothesley lady russell author russell lady rachel wriothesley vaughan medium book</recid>
 </hit>
 <hit>
- <md-title>A mechanical account of poisons in several essays</md-title>
- <md-date>1702</md-date>
- <md-author>Mead, Richard</md-author>
- <md-description>Of the viper.--Of the tarantula and mad dog.--Of poisonous minerals and plants.--Of opium.--Of venomous exhalations from the earth, poisonous airs, and waters</md-description>
+ <md-title>Traité des maladies du cœur et des gros vaisseaux</md-title>
+ <md-date>1824</md-date>
+ <md-author>Bertin, R. J</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3200965964">
-  <md-title>A mechanical account of poisons in several essays</md-title>
-  <md-date>1702</md-date>
-  <md-author>Mead, Richard</md-author>
-  <md-description>Of the viper.--Of the tarantula and mad dog.--Of poisonous minerals and plants.--Of opium.--Of venomous exhalations from the earth, poisonous airs, and waters</md-description>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Traité des maladies du cœur et des gros vaisseaux</md-title>
+  <md-date>1824</md-date>
+  <md-author>Bertin, R. J</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a mechanical account of poisons in several essays author mead richard medium book</recid>
+ <recid>content: title traite des maladies du c ur et des gros vaisseaux author bertin r j medium book</recid>
 </hit>
 <hit>
- <md-title>The accomplish&apos;d female instructor: or, A very useful companion for ladies, gentlewomen, and others</md-title>
- <md-title-remainder>In two parts. Part I. Treating of generous breeding and behaviour; choice of company, friendship; the art of speaking well [etc.] ... Part II. Treating of making curious confectionaries, or sweet-meats, jellies, syrups, cordial-waters ... to know good provisions, dye curious colours, whiten ivory ... physical and chyrurgical receipts ... and a great number of other useful and profitable things</md-title-remainder>
- <md-date>1704</md-date>
- <md-description>Preface signed: R.G</md-description>
+ <md-title>An introduction to the study of the German language</md-title>
+ <md-title-remainder>comprising extracts from the best German prose writers, with translation, notes, and a treatise on pronunciation</md-title-remainder>
+ <md-date>1832</md-date>
+ <md-author>Bokum, Hermann</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="2135223606">
-  <md-title>The accomplish&apos;d female instructor: or, A very useful companion for ladies, gentlewomen, and others</md-title>
-  <md-title-remainder>In two parts. Part I. Treating of generous breeding and behaviour; choice of company, friendship; the art of speaking well [etc.] ... Part II. Treating of making curious confectionaries, or sweet-meats, jellies, syrups, cordial-waters ... to know good provisions, dye curious colours, whiten ivory ... physical and chyrurgical receipts ... and a great number of other useful and profitable things</md-title-remainder>
-  <md-date>1704</md-date>
-  <md-description>Preface signed: R.G</md-description>
+  <md-title>An introduction to the study of the German language</md-title>
+  <md-title-remainder>comprising extracts from the best German prose writers, with translation, notes, and a treatise on pronunciation</md-title-remainder>
+  <md-date>1832</md-date>
+  <md-author>Bokum, Hermann</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the accomplish d female instructor or a very useful companion for ladies gentlewomen and others medium book</recid>
+ <recid>content: title an introduction to the study of the german language author bokum hermann medium book</recid>
 </hit>
 <hit>
- <md-title>The curiosities of common water, or, The advantages thereof in preventing and curing many distempers</md-title>
- <md-title-remainder>gather&apos;d from the writings of several eminent physicians, and also from more than forty years experience</md-title-remainder>
- <md-date>1723</md-date>
- <md-author>Smith, John</md-author>
- <md-description>LC copy imperfect: all after p. 46 wanting. Title page clipped at bottom with no loss of text.DLC</md-description>
+ <md-title>Midwifery illustrated</md-title>
+ <md-date>1833</md-date>
+ <md-author>Maygrier, J. P</md-author>
+ <md-description>Original ed. published 1822-27 under title: Nouvelle démonstrations d&apos;accouchements (Paris : Béchet)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="3749836075">
-  <md-title>The curiosities of common water, or, The advantages thereof in preventing and curing many distempers</md-title>
-  <md-title-remainder>gather&apos;d from the writings of several eminent physicians, and also from more than forty years experience</md-title-remainder>
-  <md-date>1723</md-date>
-  <md-author>Smith, John</md-author>
-  <md-description>Signatures: [A]⁴ B-F⁴</md-description>
-  <md-description>LC copy imperfect: all after p. 46 wanting. Title page clipped at bottom with no loss of text.DLC</md-description>
+  <md-title>Midwifery illustrated</md-title>
+  <md-date>1833</md-date>
+  <md-author>Maygrier, J. P</md-author>
+  <md-description>Original ed. published 1822-27 under title: Nouvelle démonstrations d&apos;accouchements (Paris : Béchet)</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the curiosities of common water or the advantages thereof in preventing and curing many distempers author smith john medium book</recid>
+ <recid>content: title midwifery illustrated author maygrier j p medium book</recid>
 </hit>
 <hit>
- <md-title>The four years voyages of Capt. George Roberts;</md-title>
- <md-title-remainder>being a series of uncommon events, which befell him in a voyage to the islands of the Canaries, Cape de Verde, and Barbadoes, from whence he was bound to the coast of Guiney ...  Together with observations on the minerals, mineral waters, metals, and salts, and of the nitre with which some of these islands abound</md-title-remainder>
- <md-date>1726</md-date>
- <md-author>Roberts, George</md-author>
- <md-description>Ascribed also to Defoe.  According to the Dict. nat. biog. this ascription &quot;seems unauthorized and unnecessary ... No reason can be alleged for doubting the existence of Roberts or the substantial truth of the narrative.&quot;  According to W.P. Trent (in Camb. hist. of Eng. lit. v. 9, p. 25) though it may be the record of a real seaman, it &quot;bears almost certain traces of Defoe&apos;s hand.&quot;  cf. also Trent&apos;s Defoe, how to know him, p. 263</md-description>
+ <md-title>Memoir of Harlan Page</md-title>
+ <md-title-remainder>or the power of prayer and personal effort for the souls of individuals</md-title-remainder>
+ <md-date>1835</md-date>
+ <md-author>Hallock, William A</md-author>
+ <md-description>Added t.p. engraved</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="1069481248">
-  <md-title>The four years voyages of Capt. George Roberts;</md-title>
-  <md-title-remainder>being a series of uncommon events, which befell him in a voyage to the islands of the Canaries, Cape de Verde, and Barbadoes, from whence he was bound to the coast of Guiney ...  Together with observations on the minerals, mineral waters, metals, and salts, and of the nitre with which some of these islands abound</md-title-remainder>
-  <md-date>1726</md-date>
-  <md-author>Roberts, George</md-author>
-  <md-description>Ascribed also to Defoe.  According to the Dict. nat. biog. this ascription &quot;seems unauthorized and unnecessary ... No reason can be alleged for doubting the existence of Roberts or the substantial truth of the narrative.&quot;  According to W.P. Trent (in Camb. hist. of Eng. lit. v. 9, p. 25) though it may be the record of a real seaman, it &quot;bears almost certain traces of Defoe&apos;s hand.&quot;  cf. also Trent&apos;s Defoe, how to know him, p. 263</md-description>
+  <md-title>Memoir of Harlan Page</md-title>
+  <md-title-remainder>or the power of prayer and personal effort for the souls of individuals</md-title-remainder>
+  <md-date>1835</md-date>
+  <md-author>Hallock, William A</md-author>
+  <md-description>Added t.p. engraved</md-description>
+  <md-description>Music: p. 242-243</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the four years voyages of capt george roberts author roberts george medium book</recid>
+ <recid>content: title memoir of harlan page author hallock william a medium book</recid>
 </hit>
 <hit>
- <md-title>Hippocrates upon air, water, and situation;</md-title>
- <md-title-remainder>upon epidemical diseases; and upon prognosticks, in acute cases especially. To this is added (by way of comparison) Thucydidesʼs account of the plague of Athens, the whole translated, methodisʼd, and illustrated with useful and explanatory notes</md-title-remainder>
- <md-date>1734</md-date>
- <md-author>Hippocrates</md-author>
- <md-description>&quot;The life of Hippocrates from Soranus&quot;: p. [xxxiii]-[xl]</md-description>
+ <md-title>Ecclesiastical records</md-title>
+ <md-title-remainder>Selections from the minutes of the Synod of Fife. M.DC.XI-M.DC.LXXXVII</md-title-remainder>
+ <md-date>1837</md-date>
+ <md-description>Ed. By G. R. Kinloch; presented to the members of the Club by Charles Baxter</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="2684093717">
-  <md-title>Hippocrates upon air, water, and situation;</md-title>
-  <md-title-remainder>upon epidemical diseases; and upon prognosticks, in acute cases especially. To this is added (by way of comparison) Thucydidesʼs account of the plague of Athens, the whole translated, methodisʼd, and illustrated with useful and explanatory notes</md-title-remainder>
-  <md-date>1734</md-date>
-  <md-author>Hippocrates</md-author>
-  <md-description>Title in red and black</md-description>
-  <md-description>&quot;The life of Hippocrates from Soranus&quot;: p. [xxxiii]-[xl]</md-description>
+  <md-title>Ecclesiastical records</md-title>
+  <md-title-remainder>Selections from the minutes of the Synod of Fife. M.DC.XI-M.DC.LXXXVII</md-title-remainder>
+  <md-date>1837</md-date>
+  <md-description>Ed. By G. R. Kinloch; presented to the members of the Club by Charles Baxter</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title hippocrates upon air water and situation author hippocrates medium book</recid>
+ <recid>content: title ecclesiastical records medium book</recid>
 </hit>
 <hit>
- <md-title>A continuation of the Reverend Mr. Whitefield&apos;s journal</md-title>
- <md-title-remainder>from his arrival at Savannah, May 7, his stay there till July 25, from thence to Fredrica, at which place he arriv&apos;d August 8, his return to Savannah again August 16, his departure from thence to Charlestown, South Carolina, from which place he took his passage on board Capt. Coc, bound to England ... : with a preface, giving the reason, why he publishes a continuation of his journals</md-title-remainder>
- <md-date>1741</md-date>
- <md-author>Whitefield, George</md-author>
- <md-description>&quot;...  A particular account of his dangerous voyage while he was nine weeks and three days upon the seas, provisions almost gone, the whole ship&apos;s crew in a perishing condition, till their arrival at Ireland (having then but about half a pint of water) there they landed. From thence Mr. Whitefield travelled by land till he arriv&apos;d in London ...&quot;</md-description>
+ <md-title>A tour in Sweden in 1838;</md-title>
+ <md-title-remainder>comprising observations on the moral, political, and economical state of the Swedish nation</md-title-remainder>
+ <md-date>1839</md-date>
+ <md-author>Laing, Samuel</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="3738890">
-  <md-title>A continuation of the Reverend Mr. Whitefield&apos;s journal</md-title>
-  <md-title-remainder>from his arrival at Savannah, May 7, his stay there till July 25, from thence to Fredrica, at which place he arriv&apos;d August 8, his return to Savannah again August 16, his departure from thence to Charlestown, South Carolina, from which place he took his passage on board Capt. Coc, bound to England ... : with a preface, giving the reason, why he publishes a continuation of his journals</md-title-remainder>
-  <md-date>1741</md-date>
-  <md-author>Whitefield, George</md-author>
-  <md-description>&quot;...  A particular account of his dangerous voyage while he was nine weeks and three days upon the seas, provisions almost gone, the whole ship&apos;s crew in a perishing condition, till their arrival at Ireland (having then but about half a pint of water) there they landed. From thence Mr. Whitefield travelled by land till he arriv&apos;d in London ...&quot;</md-description>
-  <md-description>Signatures: A-G⁴</md-description>
+  <md-title>A tour in Sweden in 1838;</md-title>
+  <md-title-remainder>comprising observations on the moral, political, and economical state of the Swedish nation</md-title-remainder>
+  <md-date>1839</md-date>
+  <md-author>Laing, Samuel</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a continuation of the reverend mr whitefield s journal author whitefield george medium book</recid>
+ <recid>content: title a tour in sweden in author laing samuel medium book</recid>
 </hit>
 <hit>
- <md-title>The motion of fluids, natural and artificial;</md-title>
- <md-title-remainder>in particular that of the air and water</md-title-remainder>
- <md-date>1747</md-date>
- <md-author>Clare, M[artin]</md-author>
+ <md-title>Richard Savage</md-title>
+ <md-title-remainder>a romance of real life</md-title-remainder>
+ <md-date>1845</md-date>
+ <md-author>Whitehead, Charles</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="1618351359">
-  <md-title>The motion of fluids, natural and artificial;</md-title>
-  <md-title-remainder>in particular that of the air and water</md-title-remainder>
-  <md-date>1747</md-date>
-  <md-author>Clare, M[artin]</md-author>
+  <md-title>Richard Savage</md-title>
+  <md-title-remainder>a romance of real life</md-title-remainder>
+  <md-date>1845</md-date>
+  <md-author>Whitehead, Charles</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the motion of fluids natural and artificial author clare m artin medium book</recid>
+ <recid>content: title richard savage author whitehead charles medium book</recid>
 </hit>
 <hit>
- <md-title>The natural history of Norway</md-title>
- <md-title-remainder>containing a particular and accurate account of the temperature of the air,the different soils, waters, vegetables, metals, minerals, stones, beasts, birds, and fishes; together with the dispositions, customs, and manner of living of the inhabitants: interspered with physiological notes from eminent writers, and transactions of academics</md-title-remainder>
- <md-date>1755</md-date>
- <md-author>Pontoppidan, Erich</md-author>
+ <md-title>Nederlandsch constitioneel archief van alle koninklijke aanspraken en parlementaire adressen</md-title>
+ <md-date>1846</md-date>
+ <md-author>Lipman, Samuel Philippus</md-author>
+ <md-description>1. verzameling. Van de omwenteling van 1813 tot de omwenteling van 1830.--2. en 3. verzameling. Van de omwenteling van 1830 tot heden.--4. verzameling. 1847-1863. Bewerkt door J.C. van Lier</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="3232963828">
-  <md-title>The natural history of Norway</md-title>
-  <md-title-remainder>containing a particular and accurate account of the temperature of the air,the different soils, waters, vegetables, metals, minerals, stones, beasts, birds, and fishes; together with the dispositions, customs, and manner of living of the inhabitants: interspered with physiological notes from eminent writers, and transactions of academics</md-title-remainder>
-  <md-date>1755</md-date>
-  <md-author>Pontoppidan, Erich</md-author>
+  <md-title>Nederlandsch constitioneel archief van alle koninklijke aanspraken en parlementaire adressen</md-title>
+  <md-date>1846</md-date>
+  <md-author>Lipman, Samuel Philippus</md-author>
+  <md-description>Vol. [3] has imprint: &apos;sGravenhage, M. Nijhoff</md-description>
+  <md-description>1. verzameling. Van de omwenteling van 1813 tot de omwenteling van 1830.--2. en 3. verzameling. Van de omwenteling van 1830 tot heden.--4. verzameling. 1847-1863. Bewerkt door J.C. van Lier</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the natural history of norway author pontoppidan erich medium book</recid>
+ <recid>content: title nederlandsch constitioneel archief van alle koninklijke aanspraken en parlementaire adressen author lipman samuel philippus medium book</recid>
 </hit>
 <hit>
- <md-title>A new and accurate system of natural history</md-title>
- <md-date>1763</md-date>
- <md-author>Brookes, Richard</md-author>
- <md-description>v. 1. The natural history of quadrupedes ...--v. 2. The natural history of birds ...--v. 3. The natural history of fishes and serpents ...--v. 4. The natural history of insects ...--v. 5. The natural history of waters, earths, stones, fossiles, and minerals ...--v. 6. The natural history of vegetables</md-description>
+ <md-title>I viaggi di Marco Polo Veneziano</md-title>
+ <md-date>1847</md-date>
+ <md-author>Polo, Marco</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="552609001">
-  <md-title>A new and accurate system of natural history</md-title>
-  <md-date>1763</md-date>
-  <md-author>Brookes, Richard</md-author>
-  <md-description>v. 1. The natural history of quadrupedes ...--v. 2. The natural history of birds ...--v. 3. The natural history of fishes and serpents ...--v. 4. The natural history of insects ...--v. 5. The natural history of waters, earths, stones, fossiles, and minerals ...--v. 6. The natural history of vegetables</md-description>
+  <md-title>I viaggi di Marco Polo Veneziano</md-title>
+  <md-date>1847</md-date>
+  <md-author>Polo, Marco</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a new and accurate system of natural history author brookes richard medium book</recid>
+ <recid>content: title i viaggi di marco polo veneziano author polo marco medium book</recid>
 </hit>
 <hit>
- <md-title>The principles of pump-work</md-title>
- <md-title-remainder>illustrated, and applied in the construction of a new pump without friction, or loss of time, or water, in working : humbly proposed for the service of the British Marine</md-title-remainder>
- <md-date>1766</md-date>
- <md-author>Martin, Benjamin</md-author>
- <md-description>Royal letter patent, p. [3], dated in the sixth year of the reign of George III, i.e. 1766</md-description>
+ <md-title>A glimpse of Hayti, and her negro chief</md-title>
+ <md-date>1850</md-date>
+ <md-description>Preface signed:  C.M.B</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="2167221470">
-  <md-title>The principles of pump-work</md-title>
-  <md-title-remainder>illustrated, and applied in the construction of a new pump without friction, or loss of time, or water, in working : humbly proposed for the service of the British Marine</md-title-remainder>
-  <md-date>1766</md-date>
-  <md-author>Martin, Benjamin</md-author>
-  <md-description>Royal letter patent, p. [3], dated in the sixth year of the reign of George III, i.e. 1766</md-description>
+  <md-title>A glimpse of Hayti, and her negro chief</md-title>
+  <md-date>1850</md-date>
+  <md-description>Preface signed:  C.M.B</md-description>
+  <md-description>Map on t.p</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the principles of pump work author martin benjamin medium book</recid>
+ <recid>content: title a glimpse of hayti and her negro chief medium book</recid>
 </hit>
 <hit>
- <md-title>Experiments and observations on the mineral waters of Philadelphia, Abington, and Bristol, in the province of Pennsylvania</md-title>
- <md-date>1773</md-date>
- <md-author>Rush, Benjamin</md-author>
+ <md-title>The history of the ancient Scots</md-title>
+ <md-title-remainder>In three parts: I. Their origin and history, to the beginning of the ninth century. II. From the beginning of the ninth century to the end of the thirteenth. III. The Hebrides under the government of Norway.--Somerled.--Chiefs descended from Somerled</md-title-remainder>
+ <md-date>1858</md-date>
+ <md-author>MacCallum, Duncan</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
     name="LOC Solr Test" checksum="3781833939">
-  <md-title>Experiments and observations on the mineral waters of Philadelphia, Abington, and Bristol, in the province of Pennsylvania</md-title>
-  <md-date>1773</md-date>
-  <md-author>Rush, Benjamin</md-author>
+  <md-title>The history of the ancient Scots</md-title>
+  <md-title-remainder>In three parts: I. Their origin and history, to the beginning of the ninth century. II. From the beginning of the ninth century to the end of the thirteenth. III. The Hebrides under the government of Norway.--Somerled.--Chiefs descended from Somerled</md-title-remainder>
+  <md-date>1858</md-date>
+  <md-author>MacCallum, Duncan</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title experiments and observations on the mineral waters of philadelphia abington and bristol in the province of pennsylvania author rush benjamin medium book</recid>
+ <recid>content: title the history of the ancient scots author maccallum duncan medium book</recid>
 </hit>
 <hit>
- <md-title>Observations made during a voyage round the world, on physical geography, natural history, and ethic philosophy</md-title>
- <md-title-remainder>Especially on: 1. The earth and its strata; 2. Water and the ocean; 3. The atmosphere; 4. The changes of the globe; 5. Organic bodies; and 6. The human species</md-title-remainder>
- <md-date>1778</md-date>
- <md-author>Forster, Johann Reinhold</md-author>
- <md-description>&quot;A journal of the voyage round the world in the Resolution&quot;: p. [9]-16</md-description>
+ <md-title>Novum Belgium</md-title>
+ <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
+ <md-date>1862</md-date>
+ <md-author>Jogues, Isaac</md-author>
+ <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1101479112">
-  <md-title>Observations made during a voyage round the world, on physical geography, natural history, and ethic philosophy</md-title>
-  <md-title-remainder>Especially on: 1. The earth and its strata; 2. Water and the ocean; 3. The atmosphere; 4. The changes of the globe; 5. Organic bodies; and 6. The human species</md-title-remainder>
-  <md-date>1778</md-date>
-  <md-author>Forster, Johann Reinhold</md-author>
-  <md-description>&quot;A journal of the voyage round the world in the Resolution&quot;: p. [9]-16</md-description>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Novum Belgium</md-title>
+  <md-title-remainder>description de / Nieuw Netherland / et / Notice sur René Goupil</md-title-remainder>
+  <md-date>1862</md-date>
+  <md-author>Jogues, Isaac</md-author>
+  <md-description>&quot;Tiré à 100 exemplaires.&quot; This copy is not numbered</md-description>
+  <md-description>The Novum Belgium is dated at end  of Des 3 Rivieres en la Nouvelle France, 3 augusti, 1646; the Notice sur rené Goupil was probably prepared the same year</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title observations made during a voyage round the world on physical geography natural history and ethic philosophy author forster johann reinhold medium book</recid>
+ <recid>content: title novum belgium author jogues isaac medium book</recid>
 </hit>
 <hit>
- <md-title>Catalogue raisonné des ouvrages qui ont été publiés sur les eaux minérales en général, et sur celles de la France en particulier</md-title>
- <md-title-remainder>avec une notice de toutes les eaux minérales de ce royaume, &amp; un tableau des différens degrés de température de celles qui sont thermales : publié d&apos;apres le vœu de la Société royale de médecine</md-title-remainder>
- <md-date>1785</md-date>
- <md-author>Carrère, Joseph-Barthélemy-François</md-author>
- <md-description>Signatures: *⁴ A-4A⁴ 4B-4I²</md-description>
+ <md-title>Lake George and Lake Champlain</md-title>
+ <md-title-remainder>from their first discovery to 1759</md-title-remainder>
+ <md-date>1869</md-date>
+ <md-author>Butler, B. C</md-author>
+ <md-description>Pages 64-240 deal with events in this region in the French and Indian war</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2716091581">
-  <md-title>Catalogue raisonné des ouvrages qui ont été publiés sur les eaux minérales en général, et sur celles de la France en particulier</md-title>
-  <md-title-remainder>avec une notice de toutes les eaux minérales de ce royaume, &amp; un tableau des différens degrés de température de celles qui sont thermales : publié d&apos;apres le vœu de la Société royale de médecine</md-title-remainder>
-  <md-date>1785</md-date>
-  <md-author>Carrère, Joseph-Barthélemy-François</md-author>
-  <md-description>Signatures: *⁴ A-4A⁴ 4B-4I²</md-description>
-  <md-description>Includes index</md-description>
+    name="LOC Solr Test" checksum="1101479112">
+  <md-title>Lake George and Lake Champlain</md-title>
+  <md-title-remainder>from their first discovery to 1759</md-title-remainder>
+  <md-date>1869</md-date>
+  <md-author>Butler, B. C</md-author>
+  <md-description>Pages 64-240 deal with events in this region in the French and Indian war</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title catalogue raisonne des ouvrages qui ont e te publie s sur les eaux mine rales en ge ne ral et sur celles de la france en particulier author carre re joseph barthe lemy franc ois medium book</recid>
+ <recid>content: title lake george and lake champlain author butler b c medium book</recid>
 </hit>
 <hit>
- <md-title>The history of Limerick, ecclesiastical, civil and military</md-title>
- <md-title-remainder>from the earliest records, to the year 1787, illustrated by fifteen engravings. To which are added the charter of Limerick, and An essay on Castle Connell Spa, on water in general and cold bathing</md-title-remainder>
- <md-date>1787</md-date>
- <md-author>Ferrar, John</md-author>
- <md-description>The essay on Castle Connell Spa has special t.-p., dated 1787; it was written in 1783</md-description>
+ <md-title>Genealogy of the Dutton family of Pennsylvania, preceded by a history of the family in England from the time of William the Conqueror to the year 1669: with an appendix containing a short account of the Duttons of Conn</md-title>
+ <md-date>1871</md-date>
+ <md-author>Cope, Gilbert</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="35736754">
-  <md-title>The history of Limerick, ecclesiastical, civil and military</md-title>
-  <md-title-remainder>from the earliest records, to the year 1787, illustrated by fifteen engravings. To which are added the charter of Limerick, and An essay on Castle Connell Spa, on water in general and cold bathing</md-title-remainder>
-  <md-date>1787</md-date>
-  <md-author>Ferrar, John</md-author>
-  <md-description>The essay on Castle Connell Spa has special t.-p., dated 1787; it was written in 1783</md-description>
+    name="LOC Solr Test" checksum="2716091581">
+  <md-title>Genealogy of the Dutton family of Pennsylvania, preceded by a history of the family in England from the time of William the Conqueror to the year 1669: with an appendix containing a short account of the Duttons of Conn</md-title>
+  <md-date>1871</md-date>
+  <md-author>Cope, Gilbert</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the history of limerick ecclesiastical civil and military author ferrar john medium book</recid>
+ <recid>content: title genealogy of the dutton family of pennsylvania preceded by a history of the family in england from the time of william the conqueror to the year with an appendix containing a short account of the duttons of conn author cope gilbert medium book</recid>
 </hit>
 <hit>
- <md-title>A plan wherein the power of steam is fully shewn</md-title>
- <md-title-remainder>by a new constructed machine, for propelling boats or vessels, of any burthen, against the most rapid streams or rivers, with great velocity; also, a machine, constructed on similar philosophical principles, by which water may be raised for grist or saw-mills, watering of meadows, &amp;c. &amp;c</md-title-remainder>
- <md-date>1788</md-date>
- <md-author>Rumsey, James</md-author>
- <md-description>Signatures: A-B⁴ C²</md-description>
+ <md-title>The land of the Veda</md-title>
+ <md-title-remainder>being personal reminiscences of India; its people, castes, thugs, and fakirs ; its religions, mythology, principal monuments, palaces, and mausoleums: together with the incidents of the great Sepoy rebellion, and its results to Christianity and civilization ; also, statistical tables of Christian missions, and a glossary of Indian terms used in this work and in missionary correspondence</md-title-remainder>
+ <md-date>1872</md-date>
+ <md-author>Butler, William</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="584606865">
-  <md-title>A plan wherein the power of steam is fully shewn</md-title>
-  <md-title-remainder>by a new constructed machine, for propelling boats or vessels, of any burthen, against the most rapid streams or rivers, with great velocity; also, a machine, constructed on similar philosophical principles, by which water may be raised for grist or saw-mills, watering of meadows, &amp;c. &amp;c</md-title-remainder>
-  <md-date>1788</md-date>
-  <md-author>Rumsey, James</md-author>
-  <md-description>Caption title</md-description>
-  <md-description>Signatures: A-B⁴ C²</md-description>
+    name="LOC Solr Test" checksum="35736754">
+  <md-title>The land of the Veda</md-title>
+  <md-title-remainder>being personal reminiscences of India; its people, castes, thugs, and fakirs ; its religions, mythology, principal monuments, palaces, and mausoleums: together with the incidents of the great Sepoy rebellion, and its results to Christianity and civilization ; also, statistical tables of Christian missions, and a glossary of Indian terms used in this work and in missionary correspondence</md-title-remainder>
+  <md-date>1872</md-date>
+  <md-author>Butler, William</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a plan wherein the power of steam is fully shewn author rumsey james medium book</recid>
+ <recid>content: title the land of the veda author butler william medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index af02e4a..808187e 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>95</merged>
-<total>1995</total>
+<merged>99</merged>
+<total>249403</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Sketch of the civil engineering of North America;</md-title>
- <md-title-remainder>comprising remarks on the harbours, river and lake navigation, lighthouses, steam-navigation, water-works, canals, roads, railways, bridges, and other works in that country</md-title-remainder>
- <md-date>1838</md-date>
- <md-author>Stevenson, David</md-author>
+ <md-title>Liechtensteinische Betriebszählung 1995</md-title>
+ <md-title-remainder>Industrie, Gewerbe, Dienstleistungen</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-description>&quot;Nr. 312&quot;--Spine</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2487200110">
-  <md-title>Sketch of the civil engineering of North America;</md-title>
-  <md-title-remainder>comprising remarks on the harbours, river and lake navigation, lighthouses, steam-navigation, water-works, canals, roads, railways, bridges, and other works in that country</md-title-remainder>
-  <md-date>1838</md-date>
-  <md-author>Stevenson, David</md-author>
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Liechtensteinische Betriebszählung 1995</md-title>
+  <md-title-remainder>Industrie, Gewerbe, Dienstleistungen</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>&quot;Nr. 312&quot;--Spine</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title sketch of the civil engineering of north america author stevenson david medium book</recid>
+ <recid>content: title liechtensteinische betriebsza hlung medium book</recid>
 </hit>
 <hit>
- <md-title>Views of ports and harbours, watering places, fishing villages, and other picturesque objects on the English coast</md-title>
- <md-date>1838</md-date>
- <md-author>Finden, W</md-author>
- <md-description>Added t.p. : Finden&apos;s ports and harbours of Great Britain</md-description>
+ <md-title>New power</md-title>
+ <md-date>1999</md-date>
+ <md-author>Lowther, Christine</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="872587641">
-  <md-title>Views of ports and harbours, watering places, fishing villages, and other picturesque objects on the English coast</md-title>
-  <md-date>1838</md-date>
-  <md-author>Finden, W</md-author>
-  <md-description>Text by W.A. Chatto</md-description>
-  <md-description>Added t.p. : Finden&apos;s ports and harbours of Great Britain</md-description>
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>New power</md-title>
+  <md-date>1999</md-date>
+  <md-author>Lowther, Christine</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title views of ports and harbours watering places fishing villages and other picturesque objects on the english coast author finden w medium book</recid>
+ <recid>content: title new power author lowther christine medium book</recid>
 </hit>
 <hit>
- <md-title>A glance at New York</md-title>
- <md-title-remainder>embracing the city government, theatres, hotels, churches, mobs, monopolies, learned professions, newspapers, rogues, dandies, fires and firemen, water and other liquids, &amp; c., &amp; c</md-title-remainder>
- <md-date>1837</md-date>
- <md-author>Greene, Asa</md-author>
+ <md-title>Tres cartas de Serguei Esenin</md-title>
+ <md-date>1995</md-date>
+ <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
+ <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1389459888">
-  <md-title>A glance at New York</md-title>
-  <md-title-remainder>embracing the city government, theatres, hotels, churches, mobs, monopolies, learned professions, newspapers, rogues, dandies, fires and firemen, water and other liquids, &amp; c., &amp; c</md-title-remainder>
-  <md-date>1837</md-date>
-  <md-author>Greene, Asa</md-author>
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Tres cartas de Serguei Esenin</md-title>
+  <md-date>1995</md-date>
+  <md-author>Esenin, Sergeĭ Aleksandrovich</md-author>
+  <md-description>Three epistolary poems published in the form of letters folded in an envelope. Text is mimeographed on brown paper with mounted dates, initials, signatures, and decorations. Each letter tied with green yarn. Colophon, including reproduction of a Chagall window design, mimeographed on green paper (12 x 21 cm.) and inserted in envelope</md-description>
+  <md-description>Part of a collection of handmade chapbooks, most with cords for hanging (literatura de cordel), published by Ediciones Vigía under the auspices of the Cuban Ministry of Culture</md-description>
+  <md-description>&quot;Esta edición ... consta de doscientos ejemplares numerados, iluminados a mano&quot;--Colophon</md-description>
+  <md-description>LC copy unnumbered.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a glance at new york author greene asa medium book</recid>
+ <recid>content: title tres cartas de serguei esenin author esenin sergei aleksandrovich medium book</recid>
 </hit>
 <hit>
- <md-title>A popular treatise on the warming and ventilation of buildings;</md-title>
- <md-title-remainder>showing the advantages of the improved system of heated water circulation, &amp;c</md-title-remainder>
- <md-date>1837</md-date>
- <md-author>Richardson, C. J</md-author>
+ <md-title>The Chamorro language of Guam;</md-title>
+ <md-title-remainder>a grammar of the idiom spoken by the inhabitants of the Marianne, or Ladrones, Islands</md-title-remainder>
+ <md-date>1909</md-date>
+ <md-author>Safford, William Edwin</md-author>
+ <md-description>&quot;Reprinted from the American Anthropologist, 1903-1905.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="323717530">
-  <md-title>A popular treatise on the warming and ventilation of buildings;</md-title>
-  <md-title-remainder>showing the advantages of the improved system of heated water circulation, &amp;c</md-title-remainder>
-  <md-date>1837</md-date>
-  <md-author>Richardson, C. J</md-author>
+    name="LOC Solr Test" checksum="1714344951">
+  <md-title>The Chamorro language of Guam;</md-title>
+  <md-title-remainder>a grammar of the idiom spoken by the inhabitants of the Marianne, or Ladrones, Islands</md-title-remainder>
+  <md-date>1909</md-date>
+  <md-author>Safford, William Edwin</md-author>
+  <md-description>Various pagings</md-description>
+  <md-description>&quot;Reprinted from the American Anthropologist, 1903-1905.&quot;</md-description>
+  <md-description>Issued in five parts</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a popular treatise on the warming and ventilation of buildings author richardson c j medium book</recid>
+ <recid>content: title the chamorro language of guam author safford william edwin medium book</recid>
 </hit>
 <hit>
- <md-title>Design no. 1 for a marine hospital on the western waters to accommodate 100 patients</md-title>
- <md-date>1837</md-date>
- <md-author>Mills, Robert</md-author>
- <md-description>Imperfect: one plate wanting</md-description>
+ <md-title>Felix Mendelssohn Bartholdy en zijne werken</md-title>
+ <md-date>1908</md-date>
+ <md-author>Hartog, Jacques</md-author>
+ <md-description>On cover: Jubilé-uitgave</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3552942468">
-  <md-title>Design no. 2 for a marine hospital on the western waters to accommodate 50 patients</md-title>
-  <md-date>1837</md-date>
-  <md-author>Mills, Robert</md-author>
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Felix Mendelssohn Bartholdy en zijne werken</md-title>
+  <md-date>1908</md-date>
+  <md-author>Hartog, Jacques</md-author>
+  <md-description>On cover: Jubilé-uitgave</md-description>
   <md-medium>book</md-medium>
  </location>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1938329999">
-  <md-title>Design no. 1 for a marine hospital on the western waters to accommodate 100 patients</md-title>
-  <md-date>1837</md-date>
-  <md-author>Mills, Robert</md-author>
-  <md-description>Imperfect: one plate wanting</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>2</count>
- <recid>content: title design no for a marine hospital on the western waters to accommodate patients author mills robert medium book</recid>
+ <count>1</count>
+ <recid>content: title felix mendelssohn bartholdy en zijne werken author hartog jacques medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the commissioners appointed under an order of the City council, of March 16, 1837, to devise a plan for supplying the city of Boston with pure water</md-title>
- <md-date>1837</md-date>
+ <md-title>The small holding</md-title>
+ <md-date>1908</md-date>
+ <md-author>Green, Frederick Ernest</md-author>
+ <md-description>&quot;Much of the matter reprinted in this ... book has appeared in Farm and garden, and some of it in Farm and home.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3004072357">
-  <md-title>Report of the commissioners appointed under an order of the City council, of March 16, 1837, to devise a plan for supplying the city of Boston with pure water</md-title>
-  <md-date>1837</md-date>
+    name="LOC Solr Test" checksum="3328957420">
+  <md-title>The small holding</md-title>
+  <md-date>1908</md-date>
+  <md-author>Green, Frederick Ernest</md-author>
+  <md-description>&quot;Much of the matter reprinted in this ... book has appeared in Farm and garden, and some of it in Farm and home.&quot;</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the commissioners appointed under an order of the city council of march to devise a plan for supplying the city of boston with pure water medium book</recid>
+ <recid>content: title the small holding author green frederick ernest medium book</recid>
 </hit>
 <hit>
- <md-title>Report on the introduction of soft water into the city of Boston</md-title>
- <md-date>1836</md-date>
- <md-author>Eddy, R. H</md-author>
+ <md-title>Essai sur les emprunts d&apos;états, et la protection des droits des porteurs de fonds d&apos;états étrangers</md-title>
+ <md-date>1907</md-date>
+ <md-author>Wuarin, Albert</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="4069814715">
-  <md-title>Report on the introduction of soft water into the city of Boston</md-title>
-  <md-date>1836</md-date>
-  <md-author>Eddy, R. H</md-author>
+    name="LOC Solr Test" checksum="1197472704">
+  <md-title>Essai sur les emprunts d&apos;états, et la protection des droits des porteurs de fonds d&apos;états étrangers</md-title>
+  <md-date>1907</md-date>
+  <md-author>Wuarin, Albert</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report on the introduction of soft water into the city of boston author eddy r h medium book</recid>
+ <recid>content: title essai sur les emprunts d e tats et la protection des droits des porteurs de fonds d e tats e trangers author wuarin albert medium book</recid>
 </hit>
 <hit>
- <md-title>Report on the survey for a ship canal from Richmond to Warwick</md-title>
- <md-title-remainder>being the plan proposed for the connection of the James River and Kanawha improvement with tide water</md-title-remainder>
- <md-date>1836</md-date>
- <md-author>Ellet, Charles</md-author>
+ <md-title>Lancasterian schools in Philadelphia</md-title>
+ <md-date>1907</md-date>
+ <md-author>Ellis, Charles Calvert</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3520944604">
-  <md-title>Report on the survey for a ship canal from Richmond to Warwick</md-title>
-  <md-title-remainder>being the plan proposed for the connection of the James River and Kanawha improvement with tide water</md-title-remainder>
-  <md-date>1836</md-date>
-  <md-author>Ellet, Charles</md-author>
+    name="LOC Solr Test" checksum="131730346">
+  <md-title>Lancasterian schools in Philadelphia</md-title>
+  <md-date>1907</md-date>
+  <md-author>Ellis, Charles Calvert</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report on the survey for a ship canal from richmond to warwick author ellet charles medium book</recid>
+ <recid>content: title lancasterian schools in philadelphia author ellis charles calvert medium book</recid>
 </hit>
 <hit>
- <md-title>Scientific tracts, for the diffusion of useful knowledge</md-title>
- <md-date>1836</md-date>
- <md-description>Philosophy of self-education, by B. B. Thatcher.--Outline of philosophy, by Lieut. Roswell Park.--Advantages of early rising, by Wm. A. Alcott.--May-flowers, by D. H. Howard.--Natural history of water, by C. T. Jackson.--Pleasures of science, by W. M. Rogers.--History of peace societies, by William Ladd.--Science of human life, by Sylvester Graham.--History of telegraphs, by J. R. Parker.--Combustion, by R. A. Coffin.--Granite rock, by Samuel Fish.--Theory of the earth, by Samuel Fish</md-description>
+ <md-title>On fermentation</md-title>
+ <md-date>1907</md-date>
+ <md-author>Taylor, Alonzo Englebert</md-author>
+ <md-description>Source: Gift of A.W. Bitting, presented in memory of Katherine Golden Bitting, Oct. 6, 1939.DLC</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="840589777">
-  <md-title>Scientific tracts, for the diffusion of useful knowledge</md-title>
-  <md-date>1836</md-date>
-  <md-description>Philosophy of self-education, by B. B. Thatcher.--Outline of philosophy, by Lieut. Roswell Park.--Advantages of early rising, by Wm. A. Alcott.--May-flowers, by D. H. Howard.--Natural history of water, by C. T. Jackson.--Pleasures of science, by W. M. Rogers.--History of peace societies, by William Ladd.--Science of human life, by Sylvester Graham.--History of telegraphs, by J. R. Parker.--Combustion, by R. A. Coffin.--Granite rock, by Samuel Fish.--Theory of the earth, by Samuel Fish</md-description>
+    name="LOC Solr Test" checksum="3877827531">
+  <md-title>On fermentation</md-title>
+  <md-date>1907</md-date>
+  <md-author>Taylor, Alonzo Englebert</md-author>
+  <md-description>LC copy has bookplate of Katherine Golden Bitting.DLC</md-description>
+  <md-description>Source: Gift of A.W. Bitting, presented in memory of Katherine Golden Bitting, Oct. 6, 1939.DLC</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title scientific tracts for the diffusion of useful knowledge medium book</recid>
+ <recid>content: title on fermentation author taylor alonzo englebert medium book</recid>
 </hit>
 <hit>
- <md-title>Thirty years ago;</md-title>
- <md-title-remainder>or, The memoirs of a water drinker</md-title-remainder>
- <md-date>1836</md-date>
- <md-author>Dunlap, William</md-author>
- <md-description>Published in 1837 under the title: Memoirs of a water drinker</md-description>
+ <md-title>The last siege of Louisburg</md-title>
+ <md-date>1907</md-date>
+ <md-author>Macdonald, C. Ochiltree</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2455202246">
-  <md-title>Thirty years ago;</md-title>
-  <md-title-remainder>or, The memoirs of a water drinker</md-title-remainder>
-  <md-date>1836</md-date>
-  <md-author>Dunlap, William</md-author>
-  <md-description>Published in 1837 under the title: Memoirs of a water drinker</md-description>
+    name="LOC Solr Test" checksum="2812085173">
+  <md-title>The last siege of Louisburg</md-title>
+  <md-date>1907</md-date>
+  <md-author>Macdonald, C. Ochiltree</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title thirty years ago author dunlap william medium book</recid>
+ <recid>content: title the last siege of louisburg author macdonald c ochiltree medium book</recid>
 </hit>
 <hit>
- <md-title>Tracts on hydraulics</md-title>
- <md-date>1836</md-date>
- <md-author>Tredgold, Thomas</md-author>
- <md-description>Smeaton, J. An experimental inquiry concerning the natural powers of water and wind to turn mills ... An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest. New fundamental experiments upon the collision of bodies.--Venturi, G. B. Experimental inquiries concerning the principle of the lateral communication of motion in fluids ... tr. from the French by W. Nicholson.--Eytelwein, J. A. A summary of the most useful parts of hydraulics; chiefly extracted and abridged from Eytelwein&apos;s Handbuch der Mechanik und der Hydraulik. By T. Young</md-description>
+ <md-title>The standard financial dictionary;</md-title>
+ <md-title-remainder>an encyclopedia covering the entire field of finance, words, terms, phrases</md-title-remainder>
+ <md-date>1906-1907</md-date>
+ <md-author>Shea, Christopher Ambrose</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1906332135">
-  <md-title>Tracts on hydraulics</md-title>
-  <md-date>1836</md-date>
-  <md-author>Tredgold, Thomas</md-author>
-  <md-description>The three papers by J. Smeaton were read before the Royal Society, May 3 and 10, 1759, April 25, 1776, and April 18, 1782. The translation of Venturi&apos;s work was first published in the Journal of natural philosophy, chemistry and the arts. The &quot;Summary of ... hydraulics&quot; appeared in 1802 in the Journal of the Royal Institution</md-description>
-  <md-description>Smeaton, J. An experimental inquiry concerning the natural powers of water and wind to turn mills ... An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest. New fundamental experiments upon the collision of bodies.--Venturi, G. B. Experimental inquiries concerning the principle of the lateral communication of motion in fluids ... tr. from the French by W. Nicholson.--Eytelwein, J. A. A summary of the most useful parts of hydraulics; chiefly extracted and abridged from Eytelwein&apos;s Handbuch der Mechanik und der Hydraulik. By T. Young</md-description>
+    name="LOC Solr Test" checksum="2263215062">
+  <md-title>The standard financial dictionary;</md-title>
+  <md-title-remainder>an encyclopedia covering the entire field of finance, words, terms, phrases</md-title-remainder>
+  <md-date>1906-1907</md-date>
+  <md-author>Shea, Christopher Ambrose</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title tracts on hydraulics author tredgold thomas medium book</recid>
+ <recid>content: title the standard financial dictionary author shea christopher ambrose medium book</recid>
 </hit>
 <hit>
- <md-title>Two months at Kilkee</md-title>
- <md-title-remainder>a watering place in the County Clare, near the mouth of the Shannon, with an account of a voyage down that river from Limerick to Kilrush, and sketches of objects of interest in the neighbourhood, which will serve as a guide to the coast scenery</md-title-remainder>
- <md-date>1836</md-date>
- <md-author>Knott, Mary John</md-author>
- <md-description>Added t.-p., engraved</md-description>
+ <md-title>Die Musik in Böhmen</md-title>
+ <md-date>1906</md-date>
+ <md-author>Batka, Richard</md-author>
+ <md-description>The frontispiece is a mounted photograph</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="291719666">
-  <md-title>Two months at Kilkee</md-title>
-  <md-title-remainder>a watering place in the County Clare, near the mouth of the Shannon, with an account of a voyage down that river from Limerick to Kilrush, and sketches of objects of interest in the neighbourhood, which will serve as a guide to the coast scenery</md-title-remainder>
-  <md-date>1836</md-date>
-  <md-author>Knott, Mary John</md-author>
-  <md-description>Added t.-p., engraved</md-description>
+    name="LOC Solr Test" checksum="1746342815">
+  <md-title>Die Musik in Böhmen</md-title>
+  <md-date>1906</md-date>
+  <md-author>Batka, Richard</md-author>
+  <md-description>Series title also at head of t.-p</md-description>
+  <md-description>The frontispiece is a mounted photograph</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title two months at kilkee author knott mary john medium book</recid>
+ <recid>content: title die musik in bo hmen author batka richard 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>Baku</md-title>
+ <md-title-remainder>an eventful history</md-title-remainder>
+ <md-date>1905</md-date>
+ <md-author>Henry, James Dodds</md-author>
+ <md-description>pt. I. The origin, progress and present position of the Russian petroleum industry.--pt. II. The rising in the Caucasus.--pt. III. Batoum, Baku&apos;s chief oil port</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1357462024">
-  <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="3360955284">
+  <md-title>Baku</md-title>
+  <md-title-remainder>an eventful history</md-title-remainder>
+  <md-date>1905</md-date>
+  <md-author>Henry, James Dodds</md-author>
+  <md-description>pt. I. The origin, progress and present position of the Russian petroleum industry.--pt. II. The rising in the Caucasus.--pt. III. Batoum, Baku&apos;s chief oil port</md-description>
   <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 baku author henry james dodds medium book</recid>
 </hit>
 <hit>
- <md-title>Bubbles from the brunnens of Nassau;</md-title>
- <md-date>1835</md-date>
- <md-author>Head, Francis Bond</md-author>
- <md-description>Added t.-p., engraved</md-description>
+ <md-title>The life of Froude</md-title>
+ <md-date>1905</md-date>
+ <md-author>Paul, Herbert W</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2423204382">
-  <md-title>Bubbles from the brunnens of Nassau;</md-title>
-  <md-date>1835</md-date>
-  <md-author>Head, Francis Bond</md-author>
-  <md-description>Added t.-p., engraved</md-description>
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The life of Froude</md-title>
+  <md-date>1905</md-date>
+  <md-author>Paul, Herbert W</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title bubbles from the brunnens of nassau author head francis bond medium book</recid>
+ <recid>content: title the life of froude author paul herbert w medium book</recid>
 </hit>
 <hit>
- <md-title>Catalogues of the animals and plants of Massachusetts</md-title>
- <md-title-remainder>with a copious index</md-title-remainder>
- <md-date>1835</md-date>
- <md-author>Hitchcock, Edward</md-author>
- <md-description>I. Mammalia -- II. Birds / by E. Emmons -- III. Reptilia / by D.S.C.H. Smith -- IV. Fishes / by J.V.C. Smith -- V. Testacea : Marine shells / by T.A. Greene. Land and fresh water shells / by J.M. Earle -- VI. Crustacea / by A.A. Gould -- VII. Araneides / by N.M. Hentz -- VIII. Insects / by T.W. Harris -- IX. Radiata -- X. Catalogue of plants</md-description>
+ <md-title>Dějiny české hudby</md-title>
+ <md-date>1903</md-date>
+ <md-author>Nejedlý, Zdeněk</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="4037816851">
-  <md-title>Catalogues of the animals and plants of Massachusetts</md-title>
-  <md-title-remainder>with a copious index</md-title-remainder>
-  <md-date>1835</md-date>
-  <md-author>Hitchcock, Edward</md-author>
-  <md-description>&quot;Copied from the second edition of Professor Hitchcock&apos;s &apos;Report on the geology, botany and zoology of Massachusetts.&apos;&quot;--Note, p. [3]</md-description>
-  <md-description>Includes index</md-description>
-  <md-description>I. Mammalia -- II. Birds / by E. Emmons -- III. Reptilia / by D.S.C.H. Smith -- IV. Fishes / by J.V.C. Smith -- V. Testacea : Marine shells / by T.A. Greene. Land and fresh water shells / by J.M. Earle -- VI. Crustacea / by A.A. Gould -- VII. Araneides / by N.M. Hentz -- VIII. Insects / by T.W. Harris -- IX. Radiata -- X. Catalogue of plants</md-description>
+    name="LOC Solr Test" checksum="680600457">
+  <md-title>Dějiny české hudby</md-title>
+  <md-date>1903</md-date>
+  <md-author>Nejedlý, Zdeněk</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title catalogues of the animals and plants of massachusetts author hitchcock edward medium book</recid>
+ <recid>content: title de jiny c eske hudby author nejedly zdene k medium book</recid>
 </hit>
 <hit>
- <md-title>Second report of Loammi Baldwin, Esq., engineer, made to a committee of the Boston Aqueduct Corporation</md-title>
- <md-date>1835</md-date>
- <md-author>Baldwin, Loammi</md-author>
+ <md-title>The geological structure of Monzoni and Fassa</md-title>
+ <md-date>1903</md-date>
+ <md-author>Gordon, Maria M. Ogilvie</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="808591913">
-  <md-title>Second report of Loammi Baldwin, Esq., engineer, made to a committee of the Boston Aqueduct Corporation</md-title>
-  <md-date>1835</md-date>
-  <md-author>Baldwin, Loammi</md-author>
+    name="LOC Solr Test" checksum="2295212926">
+  <md-title>The geological structure of Monzoni and Fassa</md-title>
+  <md-date>1903</md-date>
+  <md-author>Gordon, Maria M. Ogilvie</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title second report of loammi baldwin esq engineer made to a committee of the boston aqueduct corporation author baldwin loammi medium book</recid>
+ <recid>content: title the geological structure of monzoni and fassa author gordon maria m ogilvie 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>Four southern magazines</md-title>
+ <md-date>1902</md-date>
+ <md-author>Rogers, Edward Reinhold</md-author>
+ <md-description>&quot;The four chapters of this brief discussion are limited to four of the principal ante-bellum southern magazines--namely, De Bow&apos;s review, of New Orleans; The Southern review, of Charleston, S. C.; The Southern quarterly review, also of Charleston, S. C.; The Southern literary messenger, of Richmond, Virginia.&quot;--Pref</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2972074493">
-  <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="1229470568">
+  <md-title>Four southern magazines</md-title>
+  <md-date>1902</md-date>
+  <md-author>Rogers, Edward Reinhold</md-author>
+  <md-description>&quot;The four chapters of this brief discussion are limited to four of the principal ante-bellum southern magazines--namely, De Bow&apos;s review, of New Orleans; The Southern review, of Charleston, S. C.; The Southern quarterly review, also of Charleston, S. C.; The Southern literary messenger, of Richmond, Virginia.&quot;--Pref</md-description>
   <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 four southern magazines author rogers edward reinhold medium book</recid>
 </hit>
 <hit>
- <md-title>A manual of the ornithology of the United States and of Canada</md-title>
- <md-date>1834</md-date>
- <md-author>Nuttall, Thomas</md-author>
+ <md-title>Frederick Chopin</md-title>
+ <md-title-remainder>as a man and musician;</md-title-remainder>
+ <md-date>1902</md-date>
+ <md-author>Niecks, Frederick</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="259721802">
-  <md-title>A manual of the ornithology of the United States and of Canada</md-title>
-  <md-date>1834</md-date>
-  <md-author>Nuttall, Thomas</md-author>
+    name="LOC Solr Test" checksum="3909825395">
+  <md-title>Frederick Chopin</md-title>
+  <md-title-remainder>as a man and musician;</md-title-remainder>
+  <md-date>1902</md-date>
+  <md-author>Niecks, Frederick</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a manual of the ornithology of the united states and of canada author nuttall thomas medium book</recid>
+ <recid>content: title frederick chopin author niecks frederick medium book</recid>
 </hit>
 <hit>
- <md-title>Observations on the mineral waters of Avon, Livingston County, New York</md-title>
- <md-date>1834</md-date>
- <md-author>Francis, John W</md-author>
- <md-description>&quot;From the United States medical and surgical journal.&quot;</md-description>
+ <md-title>What I saw in South Africa, September and October, 1902</md-title>
+ <md-date>1902</md-date>
+ <md-author>MacDonald, James Ramsay</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3488946740">
-  <md-title>Observations on the mineral waters of Avon, Livingston County, New York</md-title>
-  <md-date>1834</md-date>
-  <md-author>Francis, John W</md-author>
-  <md-description>Caption title: Avon mineral waters</md-description>
-  <md-description>&quot;From the United States medical and surgical journal.&quot;</md-description>
+    name="LOC Solr Test" checksum="2844083037">
+  <md-title>What I saw in South Africa, September and October, 1902</md-title>
+  <md-date>1902</md-date>
+  <md-author>MacDonald, James Ramsay</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title observations on the mineral waters of avon livingston county new york author francis john w medium book</recid>
+ <recid>content: title what i saw in south africa september and october author macdonald james ramsay medium book</recid>
 </hit>
 <hit>
- <md-title>Report on the subject of introducing pure water into the city of Boston</md-title>
- <md-date>1834</md-date>
- <md-author>Baldwin, Loammi</md-author>
+ <md-title>History of the First Light Battery Connecticut Volunteers, 1861-1865</md-title>
+ <md-title-remainder>Personal records and reminiscences. The story of the battery from its organization to the present time</md-title-remainder>
+ <md-date>1901</md-date>
+ <md-author>Beecher, Herbert W</md-author>
+ <md-description>Edited by John De Morgan</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1874334271">
-  <md-title>Report on the subject of introducing pure water into the city of Boston</md-title>
-  <md-date>1834</md-date>
-  <md-author>Baldwin, Loammi</md-author>
+    name="LOC Solr Test" checksum="163728210">
+  <md-title>History of the First Light Battery Connecticut Volunteers, 1861-1865</md-title>
+  <md-title-remainder>Personal records and reminiscences. The story of the battery from its organization to the present time</md-title-remainder>
+  <md-date>1901</md-date>
+  <md-author>Beecher, Herbert W</md-author>
+  <md-description>Edited by John De Morgan</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report on the subject of introducing pure water into the city of boston author baldwin loammi medium book</recid>
+ <recid>content: title history of the first light battery connecticut volunteers author beecher herbert w medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 393ac67..365a0ea 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>95</merged>
-<total>1995</total>
+<merged>98</merged>
+<total>201695</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Address of the Committee of the Delaware and Schuylkill Canal Company, to the committees of the Senate and House of Representatives on the memorial of said company</md-title>
- <md-date>1799</md-date>
- <md-description>Signatures: [A]⁴ B-C⁴ D-E²</md-description>
+ <md-title>Mutatus polemo</md-title>
+ <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
+ <md-date>1650</md-date>
+ <md-author>A. B</md-author>
+ <md-description>Signatures: A-G⁴</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1714344951">
-  <md-title>Address of the Committee of the Delaware and Schuylkill Canal Company, to the committees of the Senate and House of Representatives on the memorial of said company</md-title>
-  <md-date>1799</md-date>
-  <md-description>Signatures: [A]⁴ B-C⁴ D-E²</md-description>
+    name="LOC Solr Test" checksum="2135223606">
+  <md-title>Mutatus polemo</md-title>
+  <md-title-remainder>the horrible stratagems of the Jesuits, lately practised in England during the civil wars and now discovered by a reclaimed Romanist, imployed before as a workman of the mission from His Holiness : wherein the royalist may see himself out-witted and forlorn, while the Presbyterian is closed with, and all to draw on the holy cause : a relation in particular, and with such exquisite characters of truth stampt upon it, that each of our three grand parties may here feel how each other pulses beat : also, a discovery of a plot laid for a speedy invasion</md-title-remainder>
+  <md-date>1650</md-date>
+  <md-author>A. B</md-author>
+  <md-description>Signatures: A-G⁴</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title address of the committee of the delaware and schuylkill canal company to the committees of the senate and house of representatives on the memorial of said company medium book</recid>
+ <recid>content: title mutatus polemo author a b medium book</recid>
 </hit>
 <hit>
- <md-title>An historical account of the rise, progress, and present state of the canal navigation in Pennsylvania</md-title>
- <md-title-remainder>with an appendix containing abstracts of the acts of the legislature since the year 1790, and their grants of money for improving roads and navigable waters throughout the state, to which is annexed an explanatory map</md-title-remainder>
- <md-date>1795</md-date>
- <md-description>Signatures: pi1 [a]² b-d² A-T² [U]²</md-description>
+ <md-title>Adat istiadat perkawinan Dayak Kanayatn</md-title>
+ <md-date>1999</md-date>
+ <md-author>A. B. Dacing T</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="616604729">
-  <md-title>An historical account of the rise, progress, and present state of the canal navigation in Pennsylvania</md-title>
-  <md-title-remainder>with an appendix containing abstracts of the acts of the legislature since the year 1790, and their grants of money for improving roads and navigable waters throughout the state, to which is annexed an explanatory map</md-title-remainder>
-  <md-date>1795</md-date>
-  <md-description>Signatures: pi1 [a]² b-d² A-T² [U]²</md-description>
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Adat istiadat perkawinan Dayak Kanayatn</md-title>
+  <md-date>1999</md-date>
+  <md-author>A. B. Dacing T</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an historical account of the rise progress and present state of the canal navigation in pennsylvania medium book</recid>
+ <recid>content: title adat istiadat perkawinan dayak kanayatn author a b dacing t medium book</recid>
 </hit>
 <hit>
- <md-title>An ordinance providing for the raising of a sum of money for supplying the city of Philadelphia with wholesome water</md-title>
- <md-date>1799</md-date>
- <md-description>&quot;Printed by order of the Corporation of Philadelphia.&quot;</md-description>
+ <md-title>Homseni</md-title>
+ <md-date>1996</md-date>
+ <md-author>A. C</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2263215062">
-  <md-title>An ordinance providing for the raising of a sum of money for supplying the city of Philadelphia with wholesome water</md-title>
-  <md-date>1799</md-date>
-  <md-description>Signatures: [A]⁴</md-description>
-  <md-description>&quot;Printed by order of the Corporation of Philadelphia.&quot;</md-description>
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Homseni</md-title>
+  <md-date>1996</md-date>
+  <md-author>A. C</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an ordinance providing for the raising of a sum of money for supplying the city of philadelphia with wholesome water medium book</recid>
+ <recid>content: title homseni author a c medium book</recid>
 </hit>
 <hit>
- <md-title>Flux and sources of nutrients in the Mississippi-Atchafalaya River Basin</md-title>
- <md-title-remainder>topic 3, report for the integrated assessment on hypoxia in the Gulf of Mexico</md-title-remainder>
- <md-description>&quot;May 1999.&quot;</md-description>
+ <md-title>The strange story of Ahrinziman</md-title>
+ <md-date>1906</md-date>
+ <md-author>A. F. S</md-author>
+ <md-description>Frontispiece</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3168968100">
-  <md-title>Flux and sources of nutrients in the Mississippi-Atchafalaya River Basin</md-title>
-  <md-title-remainder>topic 3, report for the integrated assessment on hypoxia in the Gulf of Mexico</md-title-remainder>
-  <md-description>&quot;May 1999.&quot;</md-description>
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>The strange story of Ahrinziman</md-title>
+  <md-date>1906</md-date>
+  <md-author>A. F. S</md-author>
+  <md-description>Frontispiece</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title flux and sources of nutrients in the mississippi atchafalaya river basin medium book</recid>
+ <recid>content: title the strange story of ahrinziman author a f s medium book</recid>
 </hit>
 <hit>
- <md-title>Lights and shadows of American life</md-title>
- <md-date>1832</md-date>
- <md-description>v. 1. The politician. Elizabeth Latimer. The squatter. Pinchon. The devil&apos;s pulpit. The binnacle -- v. 2. The young backwoodsman. Major Egerton. An adventure at sea. The Green Mountain boy. Cobus Yerks. The wag-water -- v. 3. The azure hose. Weenokhenchah Wandeeteekah. The three Indians. Modern chivalry. The isle of flowers. The last of the boatmen</md-description>
+ <md-title>Our two lives;</md-title>
+ <md-title-remainder>or, Graham and I</md-title-remainder>
+ <md-date>1873</md-date>
+ <md-author>A. H. K</md-author>
+ <md-description>Wright II, 2643</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1325464160">
-  <md-title>Lights and shadows of American life</md-title>
-  <md-date>1832</md-date>
-  <md-description>v. 1. The politician. Elizabeth Latimer. The squatter. Pinchon. The devil&apos;s pulpit. The binnacle -- v. 2. The young backwoodsman. Major Egerton. An adventure at sea. The Green Mountain boy. Cobus Yerks. The wag-water -- v. 3. The azure hose. Weenokhenchah Wandeeteekah. The three Indians. Modern chivalry. The isle of flowers. The last of the boatmen</md-description>
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>Our two lives;</md-title>
+  <md-title-remainder>or, Graham and I</md-title-remainder>
+  <md-date>1873</md-date>
+  <md-author>A. H. K</md-author>
+  <md-description>Wright II, 2643</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title lights and shadows of american life medium book</recid>
+ <recid>content: title our two lives author a h k medium book</recid>
 </hit>
 <hit>
- <md-title>Proposals by the Propietors of the locks and canals on Merrimack River</md-title>
- <md-title-remainder>for the sale of their mill power and land at Lowell, in the county of Middlesex, in Massachusetts</md-title-remainder>
- <md-date>1826</md-date>
+ <md-title>Leonardo Rodríguez Alcaine en el movimiento obrero de México</md-title>
+ <md-date>2000</md-date>
+ <md-author>A. P</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2908078765">
-  <md-title>Proposals by the Propietors of the locks and canals on Merrimack River</md-title>
-  <md-title-remainder>for the sale of their mill power and land at Lowell, in the county of Middlesex, in Massachusetts</md-title-remainder>
-  <md-date>1826</md-date>
+    name="LOC Solr Test" checksum="3738890">
+  <md-title>Leonardo Rodríguez Alcaine en el movimiento obrero de México</md-title>
+  <md-date>2000</md-date>
+  <md-author>A. P</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title proposals by the propietors of the locks and canals on merrimack river medium book</recid>
+ <recid>content: title leonardo rodri guez alcaine en el movimiento obrero de me xico author a p medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the commissioners appointed under an order of the City council, of March 16, 1837, to devise a plan for supplying the city of Boston with pure water</md-title>
- <md-date>1837</md-date>
+ <md-title>X. Y. Z. of Wall Street</md-title>
+ <md-date>1902</md-date>
+ <md-author>A. P. H</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3004072357">
-  <md-title>Report of the commissioners appointed under an order of the City council, of March 16, 1837, to devise a plan for supplying the city of Boston with pure water</md-title>
-  <md-date>1837</md-date>
+    name="LOC Solr Test" checksum="1618351359">
+  <md-title>X. Y. Z. of Wall Street</md-title>
+  <md-date>1902</md-date>
+  <md-author>A. P. H</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the commissioners appointed under an order of the city council of march to devise a plan for supplying the city of boston with pure water medium book</recid>
+ <recid>content: title x y z of wall street author a p h medium book</recid>
 </hit>
 <hit>
- <md-title>Report of the Watering Committee</md-title>
- <md-title-remainder>to the select &amp; common councils of the city of Philadelphia, relative to the Fair Mount water works. Read January 9, 1823</md-title-remainder>
- <md-date>1823</md-date>
+ <md-title>Side lights on the ʻforty-five&apos; and its heroes</md-title>
+ <md-date>1903</md-date>
+ <md-author>A. Š</md-author>
+ <md-description>John Home, the Scottish volunteer and historian.--Home&apos;s &quot;History of the rebellion in Scotland,&quot; and public opinion.--Ms. materials for Home&apos;s &quot;History.&quot; The Anti-Gallicans.--&quot;The good Lochiel&quot;: a hero of the &quot;forty-five.&quot;--Three Jacobite maps.--James Ray, of Whitehaven: a Hanoverian volunteer of the &quot;forty-five.&quot;--Ray&apos;s experiences in Scotland.--Ray&apos;s journey to the north of Scotland</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3424951012">
-  <md-title>Report of the Watering Committee</md-title>
-  <md-title-remainder>to the select &amp; common councils of the city of Philadelphia, relative to the Fair Mount water works. Read January 9, 1823</md-title-remainder>
-  <md-date>1823</md-date>
+    name="LOC Solr Test" checksum="3232963828">
+  <md-title>Side lights on the ʻforty-five&apos; and its heroes</md-title>
+  <md-date>1903</md-date>
+  <md-author>A. Š</md-author>
+  <md-description>Preface signed: A. S</md-description>
+  <md-description>John Home, the Scottish volunteer and historian.--Home&apos;s &quot;History of the rebellion in Scotland,&quot; and public opinion.--Ms. materials for Home&apos;s &quot;History.&quot; The Anti-Gallicans.--&quot;The good Lochiel&quot;: a hero of the &quot;forty-five.&quot;--Three Jacobite maps.--James Ray, of Whitehaven: a Hanoverian volunteer of the &quot;forty-five.&quot;--Ray&apos;s experiences in Scotland.--Ray&apos;s journey to the north of Scotland</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report of the watering committee medium book</recid>
+ <recid>content: title side lights on the forty five and its heroes author a s medium book</recid>
 </hit>
 <hit>
- <md-title>Scientific tracts, for the diffusion of useful knowledge</md-title>
- <md-date>1836</md-date>
- <md-description>Philosophy of self-education, by B. B. Thatcher.--Outline of philosophy, by Lieut. Roswell Park.--Advantages of early rising, by Wm. A. Alcott.--May-flowers, by D. H. Howard.--Natural history of water, by C. T. Jackson.--Pleasures of science, by W. M. Rogers.--History of peace societies, by William Ladd.--Science of human life, by Sylvester Graham.--History of telegraphs, by J. R. Parker.--Combustion, by R. A. Coffin.--Granite rock, by Samuel Fish.--Theory of the earth, by Samuel Fish</md-description>
+ <md-title>Overland, inland, and upland</md-title>
+ <md-title-remainder>A lady&apos;s notes of personal observation and adventure</md-title-remainder>
+ <md-date>1873</md-date>
+ <md-author>A. U</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="840589777">
-  <md-title>Scientific tracts, for the diffusion of useful knowledge</md-title>
-  <md-date>1836</md-date>
-  <md-description>Philosophy of self-education, by B. B. Thatcher.--Outline of philosophy, by Lieut. Roswell Park.--Advantages of early rising, by Wm. A. Alcott.--May-flowers, by D. H. Howard.--Natural history of water, by C. T. Jackson.--Pleasures of science, by W. M. Rogers.--History of peace societies, by William Ladd.--Science of human life, by Sylvester Graham.--History of telegraphs, by J. R. Parker.--Combustion, by R. A. Coffin.--Granite rock, by Samuel Fish.--Theory of the earth, by Samuel Fish</md-description>
+    name="LOC Solr Test" checksum="552609001">
+  <md-title>Overland, inland, and upland</md-title>
+  <md-title-remainder>A lady&apos;s notes of personal observation and adventure</md-title-remainder>
+  <md-date>1873</md-date>
+  <md-author>A. U</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title scientific tracts for the diffusion of useful knowledge medium book</recid>
+ <recid>content: title overland inland and upland author a u medium book</recid>
 </hit>
 <hit>
- <md-title>The accomplish&apos;d female instructor: or, A very useful companion for ladies, gentlewomen, and others</md-title>
- <md-title-remainder>In two parts. Part I. Treating of generous breeding and behaviour; choice of company, friendship; the art of speaking well [etc.] ... Part II. Treating of making curious confectionaries, or sweet-meats, jellies, syrups, cordial-waters ... to know good provisions, dye curious colours, whiten ivory ... physical and chyrurgical receipts ... and a great number of other useful and profitable things</md-title-remainder>
- <md-date>1704</md-date>
- <md-description>Preface signed: R.G</md-description>
+ <md-title>Biographisch woordenboek der Nederlanden</md-title>
+ <md-title-remainder>bevattende levensbeschrijvingen van zoodanige personen, die zich op eenigerlei wijze in ons vaderland hebben vermaard gemaakt</md-title-remainder>
+ <md-date>1852</md-date>
+ <md-author>Aa, Abraham Jacob van der</md-author>
+ <md-description>Title varies: v. 3-6, 9, A. J. van der Aa, Biographisch woordenboek der Nederlanden, voortgezet door K. J. R. van Harderwijk; v. 7-8, 10-21, voortgezet door K. J. R. van Harderwijk en Dr. G. D. J. Schotel</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2135223606">
-  <md-title>The accomplish&apos;d female instructor: or, A very useful companion for ladies, gentlewomen, and others</md-title>
-  <md-title-remainder>In two parts. Part I. Treating of generous breeding and behaviour; choice of company, friendship; the art of speaking well [etc.] ... Part II. Treating of making curious confectionaries, or sweet-meats, jellies, syrups, cordial-waters ... to know good provisions, dye curious colours, whiten ivory ... physical and chyrurgical receipts ... and a great number of other useful and profitable things</md-title-remainder>
-  <md-date>1704</md-date>
-  <md-description>Preface signed: R.G</md-description>
+    name="LOC Solr Test" checksum="1101479112">
+  <md-title>Biographisch woordenboek der Nederlanden</md-title>
+  <md-title-remainder>bevattende levensbeschrijvingen van zoodanige personen, die zich op eenigerlei wijze in ons vaderland hebben vermaard gemaakt</md-title-remainder>
+  <md-date>1852</md-date>
+  <md-author>Aa, Abraham Jacob van der</md-author>
+  <md-description>Title varies: v. 3-6, 9, A. J. van der Aa, Biographisch woordenboek der Nederlanden, voortgezet door K. J. R. van Harderwijk; v. 7-8, 10-21, voortgezet door K. J. R. van Harderwijk en Dr. G. D. J. Schotel</md-description>
+  <md-description>Vol. 2 is in 4 pts.; v. 8, 12 and 17 in 2 pts. each, with continuous paging</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the accomplish d female instructor or a very useful companion for ladies gentlewomen and others medium book</recid>
+ <recid>content: title biographisch woordenboek der nederlanden author aa abraham jacob van der medium book</recid>
 </hit>
 <hit>
- <md-title>The charter of the City of New-York</md-title>
- <md-date>1801</md-date>
- <md-description>Signatures: [A]⁴B-H⁴(-H4)</md-description>
+ <md-title>De geschiedenis der Vereenigde Nederlanden, enderzelver buitenlandsche bezittingen</md-title>
+ <md-title-remainder>geduurende de staatsen erfstadhouderlijke regeerwijze, ten tijde van Willem den Vierden; de vrouwe gouvernante Anna; en Willem den Vijfden</md-title-remainder>
+ <md-date>1804-1810</md-date>
+ <md-author>Aa, Cornelis van der</md-author>
+ <md-description>Vol. 1 has half-title: De lotgewallen van de republiek der Veréénigde Nederlanden. Sints de invoering der staats- en erfstadhouderlijke regeerwijze in het jaar MDCCXLVII. Vol. 2-6: Geschiedenis der Veréénigde Nederlanden, 1747-1794</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2812085173">
-  <md-title>The charter of the City of New-York</md-title>
-  <md-date>1801</md-date>
-  <md-description>Signatures: [A]⁴B-H⁴(-H4)</md-description>
+    name="LOC Solr Test" checksum="2716091581">
+  <md-title>De geschiedenis der Vereenigde Nederlanden, enderzelver buitenlandsche bezittingen</md-title>
+  <md-title-remainder>geduurende de staatsen erfstadhouderlijke regeerwijze, ten tijde van Willem den Vierden; de vrouwe gouvernante Anna; en Willem den Vijfden</md-title-remainder>
+  <md-date>1804-1810</md-date>
+  <md-author>Aa, Cornelis van der</md-author>
+  <md-description>Vol. 1 has half-title: De lotgewallen van de republiek der Veréénigde Nederlanden. Sints de invoering der staats- en erfstadhouderlijke regeerwijze in het jaar MDCCXLVII. Vol. 2-6: Geschiedenis der Veréénigde Nederlanden, 1747-1794</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the charter of the city of new york medium book</recid>
+ <recid>content: title de geschiedenis der vereenigde nederlanden enderzelver buitenlandsche bezittingen author aa cornelis van der medium book</recid>
 </hit>
 <hit>
- <md-title>The report of the Committee for conducting the experiments of the Society for the Improvement of Naval Architecture</md-title>
- <md-date>1800</md-date>
- <md-description>Experiments to ascertain the laws respecting bodies moving through the water with different velocities, 1793-1798</md-description>
+ <md-title>Sketches from the ranch</md-title>
+ <md-title-remainder>a Montana memoir</md-title-remainder>
+ <md-date>1998</md-date>
+ <md-author>Aadland, Dan</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3877827531">
-  <md-title>The report of the Committee for conducting the experiments of the Society for the Improvement of Naval Architecture</md-title>
-  <md-date>1800</md-date>
-  <md-description>Experiments to ascertain the laws respecting bodies moving through the water with different velocities, 1793-1798</md-description>
-  <md-description>Reissued in &quot;Nautical and hydraulic experiments. By Colonel Mark Beaufoy,&quot; v. 1, 1834</md-description>
+    name="LOC Solr Test" checksum="35736754">
+  <md-title>Sketches from the ranch</md-title>
+  <md-title-remainder>a Montana memoir</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-author>Aadland, Dan</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the report of the committee for conducting the experiments of the society for the improvement of naval architecture medium book</recid>
+ <recid>content: title sketches from the ranch author aadland dan medium book</recid>
 </hit>
 <hit>
- <md-title>The right of a state to grant exclusive privileges, in roads, bridges, canals, navigable waters, &amp;c. vindicated;</md-title>
- <md-title-remainder>by a candid examination of the grant from the state of New-York to, and contract with Robert R. Livingston and Robert Fulton, for the exclusive navigation of vessels, by steam or fire, for a limited time, on the waters of said state, and within the jurisdiction thereof</md-title-remainder>
- <md-date>1811</md-date>
+ <md-title>Economic value of pro-environmental farming</md-title>
+ <md-title-remainder>a critical and decision-making oriented application of the contingent valuation method</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Aakkula, Jyrki J</md-author>
+ <md-description>Originally presented as the author&apos;s dissertation (University of Helsinki, 1999)</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1229470568">
-  <md-title>The right of a state to grant exclusive privileges, in roads, bridges, canals, navigable waters, &amp;c. vindicated;</md-title>
-  <md-title-remainder>by a candid examination of the grant from the state of New-York to, and contract with Robert R. Livingston and Robert Fulton, for the exclusive navigation of vessels, by steam or fire, for a limited time, on the waters of said state, and within the jurisdiction thereof</md-title-remainder>
-  <md-date>1811</md-date>
+    name="LOC Solr Test" checksum="1650349223">
+  <md-title>Economic value of pro-environmental farming</md-title>
+  <md-title-remainder>a critical and decision-making oriented application of the contingent valuation method</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Aakkula, Jyrki J</md-author>
+  <md-description>Originally presented as the author&apos;s dissertation (University of Helsinki, 1999)</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the right of a state to grant exclusive privileges in roads bridges canals navigable waters c vindicated medium book</recid>
+ <recid>content: title economic value of pro environmental farming author aakkula jyrki j medium book</recid>
 </hit>
 <hit>
- <md-title>The Watering places of Great Britain and fashionable directory</md-title>
- <md-date>1831</md-date>
+ <md-title>Digital signature blindness</md-title>
+ <md-title-remainder>analysis of legislative approaches toward electronic authentication</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Aalberts, Babette</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2391206518">
-  <md-title>The Watering places of Great Britain and fashionable directory</md-title>
-  <md-date>1831</md-date>
+    name="LOC Solr Test" checksum="3264961692">
+  <md-title>Digital signature blindness</md-title>
+  <md-title-remainder>analysis of legislative approaches toward electronic authentication</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Aalberts, Babette</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the watering places of great britain and fashionable directory medium book</recid>
+ <recid>content: title digital signature blindness author aalberts babette medium book</recid>
 </hit>
 <hit>
- <md-title>Nouveaux élémens de thérapeutique et de matière médicale</md-title>
- <md-title-remainder>suivis d&apos;un essai françois et latin sur l&apos;art de formuler, et d&apos;un précis sur les eaux minérales les plus usitées</md-title-remainder>
- <md-date>1817</md-date>
- <md-author>Alibert, Jean-Louis-Marie</md-author>
- <md-description>Title-page of v. 2 wanting.DLC</md-description>
+ <md-title>Roof</md-title>
+ <md-title-remainder>de ontvreemding van joods bezit tijdens de Tweede Wereldoorlog</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Aalders, Gerard</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2876080901">
-  <md-title>Nouveaux élémens de thérapeutique et de matière médicale</md-title>
-  <md-title-remainder>suivis d&apos;un essai françois et latin sur l&apos;art de formuler, et d&apos;un précis sur les eaux minérales les plus usitées</md-title-remainder>
-  <md-date>1817</md-date>
-  <md-author>Alibert, Jean-Louis-Marie</md-author>
-  <md-description>Title-page of v. 2 wanting</md-description>
-  <md-description>Title-page of v. 2 wanting.DLC</md-description>
+    name="LOC Solr Test" checksum="584606865">
+  <md-title>Roof</md-title>
+  <md-title-remainder>de ontvreemding van joods bezit tijdens de Tweede Wereldoorlog</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Aalders, Gerard</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title nouveaux e le mens de the rapeutique et de matie re me dicale author alibert jean louis marie medium book</recid>
+ <recid>content: title roof author aalders gerard medium book</recid>
 </hit>
 <hit>
- <md-title>A great faith described and inculcated</md-title>
- <md-title-remainder>a sermon, on Luke VII. 9</md-title-remainder>
- <md-date>1805</md-date>
- <md-author>Backus, Isaac</md-author>
- <md-description>No. 10 in a volume lettered: Tracts. Isaac Backus. 1770-1865</md-description>
+ <md-title>Als ik wil kan ik duiken--</md-title>
+ <md-title-remainder>brieven van Claartje van Aals, verpleegster in de joods psychiatrische inrichting Het Apeldoornsche Bosch, 1940-1943</md-title-remainder>
+ <md-date>1995</md-date>
+ <md-author>Aals, Claartje van</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="131730346">
-  <md-title>A great faith described and inculcated</md-title>
-  <md-title-remainder>a sermon, on Luke VII. 9</md-title-remainder>
-  <md-date>1805</md-date>
-  <md-author>Backus, Isaac</md-author>
-  <md-description>No. 10 in a volume lettered: Tracts. Isaac Backus. 1770-1865</md-description>
+    name="LOC Solr Test" checksum="2199219334">
+  <md-title>Als ik wil kan ik duiken--</md-title>
+  <md-title-remainder>brieven van Claartje van Aals, verpleegster in de joods psychiatrische inrichting Het Apeldoornsche Bosch, 1940-1943</md-title-remainder>
+  <md-date>1995</md-date>
+  <md-author>Aals, Claartje van</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a great faith described and inculcated author backus isaac medium book</recid>
+ <recid>content: title als ik wil kan ik duiken author aals claartje van medium book</recid>
 </hit>
 <hit>
- <md-title>Report on the subject of introducing pure water into the city of Boston</md-title>
- <md-date>1834</md-date>
- <md-author>Baldwin, Loammi</md-author>
+ <md-title>Sneeuwbeeld</md-title>
+ <md-date>2000</md-date>
+ <md-author>Aalten, Thomas van</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1874334271">
-  <md-title>Report on the subject of introducing pure water into the city of Boston</md-title>
-  <md-date>1834</md-date>
-  <md-author>Baldwin, Loammi</md-author>
+    name="LOC Solr Test" checksum="3813831803">
+  <md-title>Sneeuwbeeld</md-title>
+  <md-date>2000</md-date>
+  <md-author>Aalten, Thomas van</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report on the subject of introducing pure water into the city of boston author baldwin loammi medium book</recid>
+ <recid>content: title sneeuwbeeld author aalten thomas van medium book</recid>
 </hit>
 <hit>
- <md-title>Second report of Loammi Baldwin, Esq., engineer, made to a committee of the Boston Aqueduct Corporation</md-title>
- <md-date>1835</md-date>
- <md-author>Baldwin, Loammi</md-author>
+ <md-title>Murrosikä ja sukupuoli</md-title>
+ <md-title-remainder>julkiset ja yksityiset ikämäärittelyt</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Aapola, Sinikka</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="808591913">
-  <md-title>Second report of Loammi Baldwin, Esq., engineer, made to a committee of the Boston Aqueduct Corporation</md-title>
-  <md-date>1835</md-date>
-  <md-author>Baldwin, Loammi</md-author>
+    name="LOC Solr Test" checksum="1133476976">
+  <md-title>Murrosikä ja sukupuoli</md-title>
+  <md-title-remainder>julkiset ja yksityiset ikämäärittelyt</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Aapola, Sinikka</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title second report of loammi baldwin esq engineer made to a committee of the boston aqueduct corporation author baldwin loammi medium book</recid>
+ <recid>content: title murrosika ja sukupuoli author aapola sinikka medium book</recid>
 </hit>
 <hit>
- <md-title>Memoirs illustrating the history of Jacobinism</md-title>
- <md-date>1799</md-date>
- <md-author>Barruel</md-author>
- <md-description>Pagination: v. 1: xviii, 226 p.; v. 2: viii, v,[1], 264 p.; v. 3: xii, 256 p., [1] leaf of plates; v. 4: xi, [2], 14-400 p., [1] folded leaf of plates; pages 193 and 361, v. 4, misnumbered 173 and 363 respectively</md-description>
+ <md-title>Kunsten å bu i hus</md-title>
+ <md-title-remainder>essay</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Aareskjold, Solveig</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="99732482">
-  <md-title>Memoirs illustrating the history of Jacobinism</md-title>
-  <md-date>1799</md-date>
-  <md-author>Barruel</md-author>
-  <md-description>&quot;Translated into English by the Hon. Robert Clifford, F.R.S. &amp; A.S.&quot;-- t.p., v. 4.; only v. 4 has edition statement</md-description>
-  <md-description>Vol. 3 has imprint: New-York: Printed by Isaac Collins, for Cornelius Davis, No. 94, Water-Street, 1799; v. 4: Elizabeth-Town: Printed by Samuel Kollock for Cornelius Davis, No. 94, Water-Street, New-York, 1799</md-description>
-  <md-description>Signatures: v. 1: [A]⁴ B-U⁴ W⁴ X-2F⁴ 2G²; v. 2: [A]⁴ B-U⁴ W⁴ X-2K⁴ 2L⁴(-2L4); v. 3: [A]² B-2L⁴; v. 4: [A]⁴ B-3D⁴</md-description>
-  <md-description>Pagination: v. 1: xviii, 226 p.; v. 2: viii, v,[1], 264 p.; v. 3: xii, 256 p., [1] leaf of plates; v. 4: xi, [2], 14-400 p., [1] folded leaf of plates; pages 193 and 361, v. 4, misnumbered 173 and 363 respectively</md-description>
-  <md-description>LC copy v. 1 lacks gathering H, p. 39-46; v. 4 lacks gathering 2K (p. 257-264) but has extra copy of gathering K (p.73-80) bound in its place.DLC</md-description>
-  <md-description>v. 1. The antichristian conspiracy -- v. 2. The anti-monarchical conspiracy -- v. 3-4. The antisocial conspiracy</md-description>
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>Kunsten å bu i hus</md-title>
+  <md-title-remainder>essay</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Aareskjold, Solveig</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title memoirs illustrating the history of jacobinism author barruel medium book</recid>
+ <recid>content: title kunsten a bu i hus author aareskjold solveig medium book</recid>
 </hit>
 <hit>
- <md-title>Essays, physical and chemical</md-title>
- <md-date>1791</md-date>
- <md-author>Bergman, Torbern</md-author>
- <md-description>I. Of the origin of chemistry.--II. History of chemistry during the middle age.--III. Analysis of lithomarge.--IV. Of asbestine earth.--V. Thoughts on a natural system of fossils.--VI. Of the combination of mercury with the marine acid.--VII. Process for burning bricks.--VIII. Of the acidulated waters of Medvi.--IX. Of the medicinal springs of Lokarne.--X. Of cobalt, nickel, platina, and manganese.--XI. Observations on urinary calculi</md-description>
+ <md-title>Raimo Pullat</md-title>
+ <md-title-remainder>valikbibliograafia, 1964-2000</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Aarma, Liivi</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1133476976">
-  <md-title>Essays, physical and chemical</md-title>
-  <md-date>1791</md-date>
-  <md-author>Bergman, Torbern</md-author>
-  <md-description>Binder&apos;s title: Physical and chemical essays. 3</md-description>
-  <md-description>Issued also with t.-p.: Physical and chemical essays: translated from the original Latin of Sir Torbern Bergman... To which are added, notes and illustrations, by the translator.  Vol. III. Edinburgh, Printed for G. Mudie; [etc., etc.] 1791</md-description>
-  <md-description>I. Of the origin of chemistry.--II. History of chemistry during the middle age.--III. Analysis of lithomarge.--IV. Of asbestine earth.--V. Thoughts on a natural system of fossils.--VI. Of the combination of mercury with the marine acid.--VII. Process for burning bricks.--VIII. Of the acidulated waters of Medvi.--IX. Of the medicinal springs of Lokarne.--X. Of cobalt, nickel, platina, and manganese.--XI. Observations on urinary calculi</md-description>
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Raimo Pullat</md-title>
+  <md-title-remainder>valikbibliograafia, 1964-2000</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Aarma, Liivi</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title essays physical and chemical author bergman torbern medium book</recid>
+ <recid>content: title raimo pullat author aarma liivi medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index cf47b0b..e50db81 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>95</merged>
-<total>1995</total>
+<merged>100</merged>
+<total>201695</total>
 <start>0</start>
 <num>20</num>
 <hit>
- <md-title>Thermometrical navigation</md-title>
- <md-title-remainder>being a series of experiments and observations tending to prove that ascertaining the relative heat of the sea-water from time to time, the passage of a ship through the Gulph [sic] Stream, and from deep water into soundings, may be discovered in time to avoid danger, although (owing to tempestuous weather) it may be impossible to heave the lead or observe the heavenly bodies : extracted from the American Philosophical Transactions, vol. 2 &amp;3, with additions and improvements</md-title-remainder>
- <md-date>1799</md-date>
- <md-author>Williams, Jonathan</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="3328957420">
-  <md-title>Thermometrical navigation</md-title>
-  <md-title-remainder>being a series of experiments and observations tending to prove that ascertaining the relative heat of the sea-water from time to time, the passage of a ship through the Gulph [sic] Stream, and from deep water into soundings, may be discovered in time to avoid danger, although (owing to tempestuous weather) it may be impossible to heave the lead or observe the heavenly bodies : extracted from the American Philosophical Transactions, vol. 2 &amp;3, with additions and improvements</md-title-remainder>
-  <md-date>1799</md-date>
-  <md-author>Williams, Jonathan</md-author>
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>The children of Adam</md-title>
+  <md-title-remainder>an Islamic perspective on pluralism</md-title-remainder>
+  <md-date>1996</md-date>
+  <md-author>ʻUthmān, Fatḥī</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title thermometrical navigation author williams jonathan medium book</recid>
+ <recid>content: title the children of adam author uthma n fath i medium book</recid>
 </hit>
 <hit>
- <md-title>An historical account of sub-ways in the British metropolis</md-title>
- <md-title-remainder>for the flow of pure water and gas into the houses of the inhabitants, without disturbing the pavements: including the projects in 1824 and 1825</md-title-remainder>
- <md-date>1828</md-date>
- <md-author>Williams, John</md-author>
+ <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="227723938">
-  <md-title>An historical account of sub-ways in the British metropolis</md-title>
-  <md-title-remainder>for the flow of pure water and gas into the houses of the inhabitants, without disturbing the pavements: including the projects in 1824 and 1825</md-title-remainder>
-  <md-date>1828</md-date>
-  <md-author>Williams, John</md-author>
+    name="LOC Solr Test" checksum="3781833939">
+  <md-title>Botbāt nying-sāi nai kānphatthanā =</md-title>
+  <md-title-remainder>Gender in development</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>ʻUthakī Chulamanī-Khamphui</md-author>
+  <md-description>&quot;Khōngkān lēkthī Lāo/96/019.&quot;</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title an historical account of sub ways in the british metropolis author williams john 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>A continuation of the Reverend Mr. Whitefield&apos;s journal</md-title>
- <md-title-remainder>from his arrival at Savannah, May 7, his stay there till July 25, from thence to Fredrica, at which place he arriv&apos;d August 8, his return to Savannah again August 16, his departure from thence to Charlestown, South Carolina, from which place he took his passage on board Capt. Coc, bound to England ... : with a preface, giving the reason, why he publishes a continuation of his journals</md-title-remainder>
- <md-date>1741</md-date>
- <md-author>Whitefield, George</md-author>
- <md-description>&quot;...  A particular account of his dangerous voyage while he was nine weeks and three days upon the seas, provisions almost gone, the whole ship&apos;s crew in a perishing condition, till their arrival at Ireland (having then but about half a pint of water) there they landed. From thence Mr. Whitefield travelled by land till he arriv&apos;d in London ...&quot;</md-description>
+ <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="3738890">
-  <md-title>A continuation of the Reverend Mr. Whitefield&apos;s journal</md-title>
-  <md-title-remainder>from his arrival at Savannah, May 7, his stay there till July 25, from thence to Fredrica, at which place he arriv&apos;d August 8, his return to Savannah again August 16, his departure from thence to Charlestown, South Carolina, from which place he took his passage on board Capt. Coc, bound to England ... : with a preface, giving the reason, why he publishes a continuation of his journals</md-title-remainder>
-  <md-date>1741</md-date>
-  <md-author>Whitefield, George</md-author>
-  <md-description>&quot;...  A particular account of his dangerous voyage while he was nine weeks and three days upon the seas, provisions almost gone, the whole ship&apos;s crew in a perishing condition, till their arrival at Ireland (having then but about half a pint of water) there they landed. From thence Mr. Whitefield travelled by land till he arriv&apos;d in London ...&quot;</md-description>
-  <md-description>Signatures: A-G⁴</md-description>
+    name="LOC Solr Test" checksum="1101479112">
+  <md-title>ʻĀrām lūang thī samkhan læ wat pračham ratchakān</md-title>
+  <md-date>1998-2541</md-date>
+  <md-author>ʻUrai Singphaibūnphō̜n</md-author>
+  <md-description>Royal temples in Bangkok Thailand</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a continuation of the reverend mr whitefield s journal author whitefield george 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 manual of the land and fresh-water shells of the British Islands</md-title>
- <md-date>1831</md-date>
- <md-author>Turton, William</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="4005818987">
-  <md-title>A manual of the land and fresh-water shells of the British Islands</md-title>
-  <md-date>1831</md-date>
-  <md-author>Turton, William</md-author>
+    name="LOC Solr Test" checksum="2716091581">
+  <md-title>Haẓrat ʻUmar ke sarkārī k̲h̲ut̤ūt̤</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʻUmar ibn al-Khaṭṭāb</md-author>
+  <md-description>Collection of official letters of Caliph Umar ibn al-Khattab, d. 644</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a manual of the land and fresh water shells of the british islands author turton william 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>Tracts on hydraulics</md-title>
- <md-date>1836</md-date>
- <md-author>Tredgold, Thomas</md-author>
- <md-description>Smeaton, J. An experimental inquiry concerning the natural powers of water and wind to turn mills ... An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest. New fundamental experiments upon the collision of bodies.--Venturi, G. B. Experimental inquiries concerning the principle of the lateral communication of motion in fluids ... tr. from the French by W. Nicholson.--Eytelwein, J. A. A summary of the most useful parts of hydraulics; chiefly extracted and abridged from Eytelwein&apos;s Handbuch der Mechanik und der Hydraulik. By T. Young</md-description>
+ <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼUi Mā Chamʻ</md-author>
+ <md-description>Novel</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1906332135">
-  <md-title>Tracts on hydraulics</md-title>
-  <md-date>1836</md-date>
-  <md-author>Tredgold, Thomas</md-author>
-  <md-description>The three papers by J. Smeaton were read before the Royal Society, May 3 and 10, 1759, April 25, 1776, and April 18, 1782. The translation of Venturi&apos;s work was first published in the Journal of natural philosophy, chemistry and the arts. The &quot;Summary of ... hydraulics&quot; appeared in 1802 in the Journal of the Royal Institution</md-description>
-  <md-description>Smeaton, J. An experimental inquiry concerning the natural powers of water and wind to turn mills ... An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest. New fundamental experiments upon the collision of bodies.--Venturi, G. B. Experimental inquiries concerning the principle of the lateral communication of motion in fluids ... tr. from the French by W. Nicholson.--Eytelwein, J. A. A summary of the most useful parts of hydraulics; chiefly extracted and abridged from Eytelwein&apos;s Handbuch der Mechanik und der Hydraulik. By T. Young</md-description>
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Krayʻ krve pyakʻ ñña chī suiʹ sā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼUi Mā Chamʻ</md-author>
+  <md-description>Novel</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title tracts on hydraulics author tredgold thomas 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>Report made to the mayor and aldermen of the city of Boston on the subject of supplying the inhabitants of that city with water</md-title>
- <md-date>1825</md-date>
- <md-author>Treadwell, Daniel</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="3973821123">
-  <md-title>Report made to the mayor and aldermen of the city of Boston on the subject of supplying the inhabitants of that city with water</md-title>
-  <md-date>1825</md-date>
-  <md-author>Treadwell, Daniel</md-author>
+    name="LOC Solr Test" checksum="35736754">
+  <md-title>Kawīniphon ʻĪsān</md-title>
+  <md-title-remainder>hīt sipsō̜ng khō̜ng sipsī</md-title-remainder>
+  <md-date>1997-2540</md-date>
+  <md-author>ʻUdom Būasī</md-author>
+  <md-description>Poems</md-description>
+  <md-description>Depicts seasonal festivals and customs of Northeastern Thailand</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title report made to the mayor and aldermen of the city of boston on the subject of supplying the inhabitants of that city with water author treadwell daniel medium book</recid>
+ <recid>content: title kawi niphon i sa n author udom bu asi 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>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="1357462024">
-  <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="1650349223">
+  <md-title>Kānpariwat læ sưksā wikhro̜ wannakam phư̄nbān Phāk Tai praphēt nangsư̄ but rư̄ang Pō̜ngkhrok</md-title>
+  <md-date>1999-2542</md-date>
+  <md-author>ʻUbonsī ʻAtthaphan</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a treatise on water works for conveying and distributing supplies of water author storrow charles s 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>Sketch of the civil engineering of North America;</md-title>
- <md-title-remainder>comprising remarks on the harbours, river and lake navigation, lighthouses, steam-navigation, water-works, canals, roads, railways, bridges, and other works in that country</md-title-remainder>
- <md-date>1838</md-date>
- <md-author>Stevenson, David</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="2487200110">
-  <md-title>Sketch of the civil engineering of North America;</md-title>
-  <md-title-remainder>comprising remarks on the harbours, river and lake navigation, lighthouses, steam-navigation, water-works, canals, roads, railways, bridges, and other works in that country</md-title-remainder>
-  <md-date>1838</md-date>
-  <md-author>Stevenson, David</md-author>
+    name="LOC Solr Test" checksum="3264961692">
+  <md-title>Phlēng prakō̜p kānrīan kānsō̜n Phāsā Thai</md-title>
+  <md-date>1999</md-date>
+  <md-author>ʻUaichai Phakāmāt</md-author>
+  <md-description>&quot;Khrōngkān tamrā wichākān rātchaphat chalœ̄m phrakīat nư̄ang nai warōkāt Phrabāt Somdet Phračhaoyūhūa song čharœ̄n phrachonmāyu khrop 6 rō̜p&quot;--Cover</md-description>
+  <md-description>Thai language learning and teaching through language, words, and phrases from Thai songs; academic rajabhat text in honor of His Majesty King Bhumibol&apos;s 72nd birthday celebration</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title sketch of the civil engineering of north america author stevenson david 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>The curiosities of common water, or, The advantages thereof in preventing and curing many distempers</md-title>
- <md-title-remainder>gather&apos;d from the writings of several eminent physicians, and also from more than forty years experience</md-title-remainder>
- <md-date>1723</md-date>
- <md-author>Smith, John</md-author>
- <md-description>LC copy imperfect: all after p. 46 wanting. Title page clipped at bottom with no loss of text.DLC</md-description>
+ <md-title>Mranʻ māʹ ruiʺ rā ʼa khā peʺ ʼoṅʻ mhanʻ duiṅʻyārī</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Sanʻʺ</md-author>
+ <md-description>Almanac, 2000</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3749836075">
-  <md-title>The curiosities of common water, or, The advantages thereof in preventing and curing many distempers</md-title>
-  <md-title-remainder>gather&apos;d from the writings of several eminent physicians, and also from more than forty years experience</md-title-remainder>
-  <md-date>1723</md-date>
-  <md-author>Smith, John</md-author>
-  <md-description>Signatures: [A]⁴ B-F⁴</md-description>
-  <md-description>LC copy imperfect: all after p. 46 wanting. Title page clipped at bottom with no loss of text.DLC</md-description>
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>Mranʻ māʹ ruiʺ rā ʼa khā peʺ ʼoṅʻ mhanʻ duiṅʻyārī</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Sanʻʺ</md-author>
+  <md-description>Almanac, 2000</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the curiosities of common water or the advantages thereof in preventing and curing many distempers author smith john medium book</recid>
+ <recid>content: title mran ma rui ra a kha pe on mhan duin ya ri author on san medium book</recid>
 </hit>
 <hit>
- <md-title>Experimental enquiry concerning the natural powers of wind and water to turn mills and other machines depending on a circular motion</md-title>
- <md-title-remainder>and An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest : also, New fundamental experiments upon the collision of bodies : with five plates of machines</md-title-remainder>
- <md-date>1794-1796</md-date>
- <md-author>Smeaton, John</md-author>
- <md-description>&quot;An experimental examination of the quantity and proportion of mechanic power ...&quot; and &quot;New fundamental experiments upon the collision of bodies&quot; each have separate t.p</md-description>
+ <md-title>Peʺ chapʻ khraṅʻʺ nhaṅʻʹ ʼa khrāʺ vatthu tui myāʺ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Sanʻʺ</md-author>
+ <md-description>Short stories</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3845829667">
-  <md-title>Experimental enquiry concerning the natural powers of wind and water to turn mills and other machines depending on a circular motion</md-title>
-  <md-title-remainder>And An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest. Also New fundamental experiments upon the collision of bodies. With five plates of machines</md-title-remainder>
-  <md-date>1796</md-date>
-  <md-author>Smeaton, John</md-author>
-  <md-description>Includes special t.-p.: An experimental examination of the quantity and proportion of mechanic power ...; New fundamental experiments upon the collision of bodies</md-description>
-  <md-medium>book</md-medium>
- </location>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1682347087">
-  <md-title>Experimental enquiry concerning the natural powers of wind and water to turn mills and other machines depending on a circular motion</md-title>
-  <md-title-remainder>and An experimental examination of the quantity and proportion of mechanic power necessary to be employed in giving different degrees of velocity to heavy bodies from a state of rest : also, New fundamental experiments upon the collision of bodies : with five plates of machines</md-title-remainder>
-  <md-date>1794</md-date>
-  <md-author>Smeaton, John</md-author>
-  <md-description>&quot;An experimental examination of the quantity and proportion of mechanic power ...&quot; and &quot;New fundamental experiments upon the collision of bodies&quot; each have separate t.p</md-description>
-  <md-description>Signatures: [A]² B-F⁸ G⁴ H² I⁸ K1</md-description>
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Peʺ chapʻ khraṅʻʺ nhaṅʻʹ ʼa khrāʺ vatthu tui myāʺ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Sanʻʺ</md-author>
+  <md-description>Short stories</md-description>
   <md-medium>book</md-medium>
  </location>
- <count>2</count>
- <recid>content: title experimental enquiry concerning the natural powers of wind and water to turn mills and other machines depending on a circular motion author smeaton john medium book</recid>
+ <count>1</count>
+ <recid>content: title pe chap khran nhan a khra vatthu tui mya author on san medium book</recid>
 </hit>
 <hit>
- <md-title>Illustrations of British ornithology</md-title>
- <md-date>1833</md-date>
- <md-author>Selby, Prideaux John</md-author>
- <md-description>v. 1. Land birds. - v. 2. Water birds</md-description>
+ <md-title>Loka krīʺ mhā dī lui pai</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Koṅʻʺ</md-author>
+ <md-description>Satires</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2940076629">
-  <md-title>Illustrations of British ornithology</md-title>
-  <md-date>1833</md-date>
-  <md-author>Selby, Prideaux John</md-author>
-  <md-description>Vol. 1: 2d ed</md-description>
-  <md-description>v. 1. Land birds. - v. 2. Water birds</md-description>
+    name="LOC Solr Test" checksum="2103225742">
+  <md-title>Loka krīʺ mhā dī lui pai</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Koṅʻʺ</md-author>
+  <md-description>Satires</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title illustrations of british ornithology author selby prideaux john medium book</recid>
+ <recid>content: title loka kri mha di lui pai author on kon medium book</recid>
 </hit>
 <hit>
- <md-title>A dissertation on the mineral waters of Saratoga</md-title>
- <md-title-remainder>Including an account of the waters of Ballston</md-title-remainder>
- <md-date>1809</md-date>
- <md-author>Seaman, Valentine</md-author>
+ <md-title>Dutiya Mranʻ mā Nuiṅʻ ṅaṃ toʻ nhaṅʻʹ Bhu raṅʻʹ noṅʻ Kyoʻ thaṅʻ Noʻrathā</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Khaṅʻ Cuiʺ</md-author>
+ <md-description>Life and times of Burmese King Bayinnaung, of Toungoo, fl. 1551-1581</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3360955284">
-  <md-title>A dissertation on the mineral waters of Saratoga</md-title>
-  <md-title-remainder>Including an account of the waters of Ballston</md-title-remainder>
-  <md-date>1809</md-date>
-  <md-author>Seaman, Valentine</md-author>
+    name="LOC Solr Test" checksum="3717838211">
+  <md-title>Dutiya Mranʻ mā Nuiṅʻ ṅaṃ toʻ nhaṅʻʹ Bhu raṅʻʹ noṅʻ Kyoʻ thaṅʻ Noʻrathā</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Khaṅʻ Cuiʺ</md-author>
+  <md-description>Life and times of Burmese King Bayinnaung, of Toungoo, fl. 1551-1581</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a dissertation on the mineral waters of saratoga author seaman valentine medium book</recid>
+ <recid>content: title dutiya mran ma nuin n am to nhan bhu ran non kyo than no ratha author on khan cui medium book</recid>
 </hit>
 <hit>
- <md-title>Experiments and observations on the mineral waters of Philadelphia, Abington, and Bristol, in the province of Pennsylvania</md-title>
- <md-date>1773</md-date>
- <md-author>Rush, Benjamin</md-author>
+ <md-title>Natʻ syhaṅʻ noṅʻ nhaṅʻʹ Rājādhātukalyā =</md-title>
+ <md-title-remainder>Natshinnaung and Yaza Dartukalya</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Hinʻʺ Kyoʻ</md-author>
+ <md-description>About Natʻsyhaṅʻnoṅʻ, 1577-1613, prince of Toungoo, and princess of Hanthawaddy Rājadhātukalyā, and their times</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3781833939">
-  <md-title>Experiments and observations on the mineral waters of Philadelphia, Abington, and Bristol, in the province of Pennsylvania</md-title>
-  <md-date>1773</md-date>
-  <md-author>Rush, Benjamin</md-author>
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Natʻ syhaṅʻ noṅʻ nhaṅʻʹ Rājādhātukalyā =</md-title>
+  <md-title-remainder>Natshinnaung and Yaza Dartukalya</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Hinʻʺ Kyoʻ</md-author>
+  <md-description>Cover title</md-description>
+  <md-description>About Natʻsyhaṅʻnoṅʻ, 1577-1613, prince of Toungoo, and princess of Hanthawaddy Rājadhātukalyā, and their times</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title experiments and observations on the mineral waters of philadelphia abington and bristol in the province of pennsylvania author rush benjamin medium book</recid>
+ <recid>content: title nat syhan non nhan ra ja dha tukalya author on hin kyo medium book</recid>
 </hit>
 <hit>
- <md-title>A plan wherein the power of steam is fully shewn</md-title>
- <md-title-remainder>by a new constructed machine, for propelling boats or vessels, of any burthen, against the most rapid streams or rivers, with great velocity; also, a machine, constructed on similar philosophical principles, by which water may be raised for grist or saw-mills, watering of meadows, &amp;c. &amp;c</md-title-remainder>
- <md-date>1788</md-date>
- <md-author>Rumsey, James</md-author>
- <md-description>Signatures: A-B⁴ C²</md-description>
+ <md-title>Sanʻʺ rhacʻ chayʻ phracʻ lā khaiʹ lyhaṅʻ</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Cuiʺ</md-author>
+ <md-description>&quot;1998 khu nhacʻ, Cā pe Bimānʻ cā mū chu, sutapadesā (sippaṃ nhaṅʻʹ ʼa suṃʺ khya paññā rapʻ) pathama chu.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="584606865">
-  <md-title>A plan wherein the power of steam is fully shewn</md-title>
-  <md-title-remainder>by a new constructed machine, for propelling boats or vessels, of any burthen, against the most rapid streams or rivers, with great velocity; also, a machine, constructed on similar philosophical principles, by which water may be raised for grist or saw-mills, watering of meadows, &amp;c. &amp;c</md-title-remainder>
-  <md-date>1788</md-date>
-  <md-author>Rumsey, James</md-author>
-  <md-description>Caption title</md-description>
-  <md-description>Signatures: A-B⁴ C²</md-description>
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Sanʻʺ rhacʻ chayʻ phracʻ lā khaiʹ lyhaṅʻ</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Cuiʺ</md-author>
+  <md-description>&quot;1998 khu nhacʻ, Cā pe Bimānʻ cā mū chu, sutapadesā (sippaṃ nhaṅʻʹ ʼa suṃʺ khya paññā rapʻ) pathama chu.&quot;</md-description>
+  <md-description>Agricultural yields in Burma</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a plan wherein the power of steam is fully shewn author rumsey james medium book</recid>
+ <recid>content: title san rhac chay phrac la khai lyhan author on cui medium book</recid>
 </hit>
 <hit>
- <md-title>A short treatise on the application of steam</md-title>
- <md-title-remainder>whereby is clearly shewn, from actual experiments that steam may be applied to propel boats or vessels of any burthen against rapid currents with great velocity great velocity [sic] : the same principles are also introduced with effect by a machine of a simple and che[a]p construction, for the purpose of raising water sufficient for the working of grist-mills, saw-mills, &amp;c. and for watering meadows and other purposes of agriculture</md-title-remainder>
- <md-date>1788</md-date>
- <md-author>Rumsey, James</md-author>
- <md-description>On preliminary l.: &quot;27th Congress, 2d session. Doc. no. 189. Ho. of Reps. Rumsey&apos;s steam engine. April 15, 1842 ... This reprint is as near a fac simile of the original pamphlet as it is possible now to make it.&quot;</md-description>
+ <md-title>The writings of General Aung San</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʼOṅʻ Chanʻʺ</md-author>
+ <md-description>Writings of the statesman and leader of freedom struggle in Burma</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="2199219334">
-  <md-title>A short treatise on the application of steam</md-title>
-  <md-title-remainder>whereby is clearly shewn, from actual experiments that steam may be applied to propel boats or vessels of any burthen against rapid currents with great velocity great velocity [sic] : the same principles are also introduced with effect by a machine of a simple and che[a]p construction, for the purpose of raising water sufficient for the working of grist-mills, saw-mills, &amp;c. and for watering meadows and other purposes of agriculture</md-title-remainder>
-  <md-date>1788</md-date>
-  <md-author>Rumsey, James</md-author>
-  <md-description>Signatures: [A]⁴ B-C⁴ [D]² (last leaf blank)</md-description>
+    name="LOC Solr Test" checksum="4266708322">
+  <md-title>The writings of General Aung San</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʼOṅʻ Chanʻʺ</md-author>
+  <md-description>Writings of the statesman and leader of freedom struggle in Burma</md-description>
   <md-medium>book</md-medium>
  </location>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3264961692">
-  <md-title>A short treatise on the application of steam</md-title>
-  <md-title-remainder>whereby is clearly shewn, from actual experiments, that steam may be applied to propel boats or vessels of any burthen against rapid currents with great velocity [!] The same principles are also introduced with effect, by a machine of a simple and cheap construction, for the purpose of raising water sufficient for the working of grist or saw mills. And for watering meadows and other agricultural purposes</md-title-remainder>
-  <md-date>1788</md-date>
-  <md-author>Rumsey, James</md-author>
-  <md-description>On preliminary l.: &quot;27th Congress, 2d session. Doc. no. 189. Ho. of Reps. Rumsey&apos;s steam engine. April 15, 1842 ... This reprint is as near a fac simile of the original pamphlet as it is possible now to make it.&quot;</md-description>
-  <md-medium>book</md-medium>
- </location>
- <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1650349223">
-  <md-title>A short treatise on the application of steam</md-title>
-  <md-title-remainder>whereby is clearly shewn, from actual experiments, that steam may be applied to propel boats or vessels of any burthen against rapid currents with great velocity.  The same princples are also introduced with effect, by a machine of a simple and cheap construction, for the purpose of raising water sufficient for the working of grist-mills, saw-mills, &amp;c. and for watering meadows and other purposes of agriculture</md-title-remainder>
-  <md-date>1788</md-date>
-  <md-author>Rumsey, James</md-author>
-  <md-description>Reprinted, in anticipation of a reply by John Fitch, from a pamphlet published in Virginia, to prove the author&apos;s prior right of applying steam to propel boats, &amp;c. cf. Advertisement</md-description>
-  <md-medium>book</md-medium>
- </location>
- <count>3</count>
- <recid>content: title a short treatise on the application of steam author rumsey james medium book</recid>
+ <count>1</count>
+ <recid>content: title the writings of general aung san author on chan medium book</recid>
 </hit>
 <hit>
- <md-title>A complete treatise on the mineral waters of Virginia</md-title>
- <md-title-remainder>containing a description of their situation, their natural history, their analysis, contents, and their use in medicine</md-title-remainder>
- <md-date>1792</md-date>
- <md-author>Rouelle, John</md-author>
- <md-description>Signatures: pi⁴ A-L⁴</md-description>
+ <md-title>Kotmāi pā chumchon thī prachāchon tō̜ngkān læ nǣothāng kānthamngān khō̜ng Khana ʻAnukammakān Pā Chumchon, Khana Kammakān Nayōbāi Pāmai hǣng Chāt</md-title>
+ <md-date>1993-2536</md-date>
+ <md-author>ʻŌ̜rawan Kritbunyarit</md-author>
+ <md-description>Draft of communities demanded forestry law for conservation of forests in Northern Thailand and need for local community assertion in conservation affairs</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="67734618">
-  <md-title>A complete treatise on the mineral waters of Virginia</md-title>
-  <md-title-remainder>containing a description of their situation, their natural history, their analysis, contents, and their use in medicine</md-title-remainder>
-  <md-date>1792</md-date>
-  <md-author>Rouelle, John</md-author>
-  <md-description>Signatures: pi⁴ A-L⁴</md-description>
+    name="LOC Solr Test" checksum="584606865">
+  <md-title>Kotmāi pā chumchon thī prachāchon tō̜ngkān læ nǣothāng kānthamngān khō̜ng Khana ʻAnukammakān Pā Chumchon, Khana Kammakān Nayōbāi Pāmai hǣng Chāt</md-title>
+  <md-date>1993-2536</md-date>
+  <md-author>ʻŌ̜rawan Kritbunyarit</md-author>
+  <md-description>Draft of communities demanded forestry law for conservation of forests in Northern Thailand and need for local community assertion in conservation affairs</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a complete treatise on the mineral waters of virginia author rouelle john medium book</recid>
+ <recid>content: title kotma i pa chumchon thi pracha chon to ngka n l n otha ng ka nthamnga n kho ng khana anukammaka n pa chumchon khana kammaka n nayo ba i pa mai h ng cha t author o rawan kritbunyarit medium book</recid>
 </hit>
 <hit>
- <md-title>The American Latin grammar, or, A complete introduction to the Latin tongue</md-title>
- <md-title-remainder>formed from the most approved writings in this kind : as those of Lilly, Ruddiman, Phillips, Holmes, Bp. Wettenhall, Cheever, Clarke, Reed, &amp;c</md-title-remainder>
- <md-date>1794</md-date>
- <md-author>Ross, Robert</md-author>
- <md-description>Advertised as &quot;just published&quot; in the Impartial herald, Newburyport, January 2, 1795. Dated 1780 by Evans (entry 16983); however, Mycall did not move to the Water-Street address until Oct. 2, 1793</md-description>
+ <md-title>ʻĀtchayākō̜n dek ?</md-title>
+ <md-date>2000-2543</md-date>
+ <md-author>ʻŌ̜rasom Sutthisākhō̜n</md-author>
+ <md-description>&quot;Sanapsanun kānwičhai chœ̄ng sārakhadī dōi Sathāban Wičhai Rabop Sāthāranasuk.&quot;</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="3296959556">
-  <md-title>The American Latin grammar, or, A complete introduction to the Latin tongue</md-title>
-  <md-title-remainder>formed from the most approved writings in this kind : as those of Lilly, Ruddiman, Phillips, Holmes, Bp. Wettenhall, Cheever, Clarke, Reed, &amp;c</md-title-remainder>
-  <md-date>1794</md-date>
-  <md-author>Ross, Robert</md-author>
-  <md-description>Advertised as &quot;just published&quot; in the Impartial herald, Newburyport, January 2, 1795. Dated 1780 by Evans (entry 16983); however, Mycall did not move to the Water-Street address until Oct. 2, 1793</md-description>
-  <md-description>Letterpress &quot;Recommendation&quot; on verso of t.p. dated: October, 1780; however, Shipton &amp; Mooney suggest this is probably Evans 27640, advertised in 1794</md-description>
-  <md-description>Signatures: A-G⁸</md-description>
+    name="LOC Solr Test" checksum="2199219334">
+  <md-title>ʻĀtchayākō̜n dek ?</md-title>
+  <md-date>2000-2543</md-date>
+  <md-author>ʻŌ̜rasom Sutthisākhō̜n</md-author>
+  <md-description>&quot;Sanapsanun kānwičhai chœ̄ng sārakhadī dōi Sathāban Wičhai Rabop Sāthāranasuk.&quot;</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the american latin grammar or a complete introduction to the latin tongue author ross robert medium book</recid>
+ <recid>content: title a tchaya ko n dek author o rasom sutthisa kho n medium book</recid>
 </hit>
 <hit>
- <md-title>The four years voyages of Capt. George Roberts;</md-title>
- <md-title-remainder>being a series of uncommon events, which befell him in a voyage to the islands of the Canaries, Cape de Verde, and Barbadoes, from whence he was bound to the coast of Guiney ...  Together with observations on the minerals, mineral waters, metals, and salts, and of the nitre with which some of these islands abound</md-title-remainder>
- <md-date>1726</md-date>
- <md-author>Roberts, George</md-author>
- <md-description>Ascribed also to Defoe.  According to the Dict. nat. biog. this ascription &quot;seems unauthorized and unnecessary ... No reason can be alleged for doubting the existence of Roberts or the substantial truth of the narrative.&quot;  According to W.P. Trent (in Camb. hist. of Eng. lit. v. 9, p. 25) though it may be the record of a real seaman, it &quot;bears almost certain traces of Defoe&apos;s hand.&quot;  cf. also Trent&apos;s Defoe, how to know him, p. 263</md-description>
+ <md-title>Ko̜ Rattanakōsin</md-title>
+ <md-date>1999-2542</md-date>
+ <md-author>ʻŌ̜nsūang Butnāk</md-author>
+ <md-description>Description of Bangkok, Thailand</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="1069481248">
-  <md-title>The four years voyages of Capt. George Roberts;</md-title>
-  <md-title-remainder>being a series of uncommon events, which befell him in a voyage to the islands of the Canaries, Cape de Verde, and Barbadoes, from whence he was bound to the coast of Guiney ...  Together with observations on the minerals, mineral waters, metals, and salts, and of the nitre with which some of these islands abound</md-title-remainder>
-  <md-date>1726</md-date>
-  <md-author>Roberts, George</md-author>
-  <md-description>Ascribed also to Defoe.  According to the Dict. nat. biog. this ascription &quot;seems unauthorized and unnecessary ... No reason can be alleged for doubting the existence of Roberts or the substantial truth of the narrative.&quot;  According to W.P. Trent (in Camb. hist. of Eng. lit. v. 9, p. 25) though it may be the record of a real seaman, it &quot;bears almost certain traces of Defoe&apos;s hand.&quot;  cf. also Trent&apos;s Defoe, how to know him, p. 263</md-description>
+    name="LOC Solr Test" checksum="1133476976">
+  <md-title>Ko̜ Rattanakōsin</md-title>
+  <md-date>1999-2542</md-date>
+  <md-author>ʻŌ̜nsūang Butnāk</md-author>
+  <md-description>Description of Bangkok, Thailand</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title the four years voyages of capt george roberts author roberts george medium book</recid>
+ <recid>content: title ko rattanako sin author o nsu ang butna k medium book</recid>
 </hit>
 <hit>
- <md-title>A popular treatise on the warming and ventilation of buildings;</md-title>
- <md-title-remainder>showing the advantages of the improved system of heated water circulation, &amp;c</md-title-remainder>
- <md-date>1837</md-date>
- <md-author>Richardson, C. J</md-author>
+ <md-title>Panyā sāngsan čhāk rư̄an phư̄nthin</md-title>
+ <md-date>2000</md-date>
+ <md-author>ʻŌ̜nsiri Pānin</md-author>
+ <md-description>Lecture held on September 15, 2000 at Sinlapakorn University on traditional domestic vernacular architecture in Thailand</md-description>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="323717530">
-  <md-title>A popular treatise on the warming and ventilation of buildings;</md-title>
-  <md-title-remainder>showing the advantages of the improved system of heated water circulation, &amp;c</md-title-remainder>
-  <md-date>1837</md-date>
-  <md-author>Richardson, C. J</md-author>
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Panyā sāngsan čhāk rư̄an phư̄nthin</md-title>
+  <md-date>2000</md-date>
+  <md-author>ʻŌ̜nsiri Pānin</md-author>
+  <md-description>&quot;15 Kanyāyon 2543.&quot;</md-description>
+  <md-description>Lecture held on September 15, 2000 at Sinlapakorn University on traditional domestic vernacular architecture in Thailand</md-description>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title a popular treatise on the warming and ventilation of buildings author richardson c j medium book</recid>
+ <recid>content: title panya sa ngsan c ha k r an ph nthin author o nsiri pa nin medium book</recid>
 </hit>
 <hit>
- <md-title>Sketch of the geographical rout of a great railway</md-title>
- <md-title-remainder>by which it is proposed to connect the canals and navigable waters, of New-York, Pennsylvania, Ohio, Indiana, Illinois, Michigan, Missouri, and the adjacent states and territories; opening thereby a free communication, at all seasons of the year, between the Atlantic states and the great valley of the Mississippi</md-title-remainder>
- <md-date>1830</md-date>
- <md-author>Redfield, W. C</md-author>
- <md-description>Attributed to Redfield by his biographer in the Dictionary of American Biography. See also, Sabin, no. 68511</md-description>
+ <md-title>Rư̄an phư̄nbān Thai-Mō̜n =</md-title>
+ <md-title-remainder>Thai-Mon vernacular houses</md-title-remainder>
+ <md-date>2000-2543</md-date>
+ <md-author>ʻŌ̜nsiri Pānin</md-author>
  <md-medium>book</md-medium>
  <location id="LOC Solr Test"
-    name="LOC Solr Test" checksum="776594049">
-  <md-title>Sketch of the geographical rout of a great railway</md-title>
-  <md-title-remainder>by which it is proposed to connect the canals and navigable waters, of New-York, Pennsylvania, Ohio, Indiana, Illinois, Michigan, Missouri, and the adjacent states and territories; opening thereby a free communication, at all seasons of the year, between the Atlantic states and the great valley of the Mississippi</md-title-remainder>
-  <md-date>1830</md-date>
-  <md-author>Redfield, W. C</md-author>
-  <md-description>Printed tan paper covers</md-description>
-  <md-description>Attributed to Redfield by his biographer in the Dictionary of American Biography. See also, Sabin, no. 68511</md-description>
-  <md-description>Map engraved by J.H. Young</md-description>
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>Rư̄an phư̄nbān Thai-Mō̜n =</md-title>
+  <md-title-remainder>Thai-Mon vernacular houses</md-title-remainder>
+  <md-date>2000-2543</md-date>
+  <md-author>ʻŌ̜nsiri Pānin</md-author>
   <md-medium>book</md-medium>
  </location>
  <count>1</count>
- <recid>content: title sketch of the geographical rout of a great railway author redfield w c medium book</recid>
+ <recid>content: title r an ph nba n thai mo n author o nsiri pa nin 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" />
 -->
index 2e77443..89ab7ff 100644 (file)
@@ -1,8 +1,8 @@
-<!-- Solr target, Settings 5 -->
+<!-- Solr target, Settings 6: sortmaps -->
 <settings target="LOC Solr Test">
   <set name="pz:present_chunk" value="0"/>
   <set name="pz:sortmap:title"  value="solr:title" /> 
-  <set name="pz:sortmap:date"   value="solr:date" /> 
-  <set name="pz:sortmap:author" value="solr:author" /> 
+  <set name="pz:sortmap:date"   value="solr:date_exact" /> 
+  <set name="pz:sortmap:author" value="solr:author_exact" /> 
   <set name="pz:sortmap:score"  value="solr:score" /> 
 </settings>
index 697a3a8..b705753 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>7</merged>
+<merged>3</merged>
 <total>31</total>
 <start>0</start>
-<num>7</num>
+<num>3</num>
 <hit>
  <md-title>WATER WELL DATA</md-title>
  <md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
  <count>1</count>
  <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
-<hit>
- <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
- <md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
- <location id="my"
-    name="marcserver" checksum="3602387">
-  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-  <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah earthquake epicenters author medium book</recid>
-</hit>
-<hit>
- <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
- <md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
- <location id="my"
-    name="marcserver" checksum="4291493253">
-  <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-  <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
-  <md-description tag="513">1692-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title bibliography of maine geology author medium book</recid>
-</hit>
-<hit>
- <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
- <md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
- <location id="my"
-    name="marcserver" checksum="64172">
-  <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-  <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
-  <md-description tag="513">1982-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title automated flood warning network author medium book</recid>
-</hit>
-<hit>
- <md-title>APPLIED GEOLOGY FILE</md-title>
- <md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
- <location id="my"
-    name="marcserver" checksum="4291493253">
-  <md-title>APPLIED GEOLOGY FILE</md-title>
-  <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
-  <md-description tag="513">1970-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title applied geology file author medium book</recid>
-</hit>
 </show>
\ No newline at end of file
index 9af6f33..dbd671c 100644 (file)
@@ -6,34 +6,10 @@
 <start>0</start>
 <num>10</num>
 <hit>
- <md-title>STATEWIDE PLANNING</md-title>
- <md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
- <location id="my"
-    name="marcserver" checksum="3602387">
-  <md-title>STATEWIDE PLANNING</md-title>
-  <md-description tag="520">This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
-  <md-description tag="513">1960-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title statewide planning author medium book</recid>
-</hit>
-<hit>
- <md-title>WATER WELL DATA</md-title>
- <md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
- <location id="my"
-    name="marcserver" checksum="64172">
-  <md-title>WATER WELL DATA</md-title>
-  <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
-  <md-description tag="513">1930-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title water well data author medium book</recid>
-</hit>
-<hit>
  <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
  <md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
  <location id="my"
-    name="marcserver" checksum="4291493253">
+    name="marcserver" checksum="3602387">
   <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
   <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
   <md-description tag="513">-PRESENT</md-description>
@@ -45,7 +21,7 @@
  <md-title>COAL SAMPLE BANK</md-title>
  <md-description>This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description>
  <location id="my"
-    name="marcserver" checksum="4287955038">
+    name="marcserver" checksum="64172">
   <md-title>COAL SAMPLE BANK</md-title>
   <md-description tag="520">This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description>
   <md-description tag="513">-PRESENT</md-description>
@@ -57,7 +33,7 @@
  <md-title>FRESH WATER WETLANDS MAPS</md-title>
  <md-description>Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description>
  <location id="my"
-    name="marcserver" checksum="4284416823">
+    name="marcserver" checksum="4291493253">
   <md-title>FRESH WATER WETLANDS MAPS</md-title>
   <md-description tag="520">Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description>
  </location>
@@ -68,7 +44,7 @@
  <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
  <md-description>This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description>
  <location id="my"
-    name="marcserver" checksum="4280878608">
+    name="marcserver" checksum="4287955038">
   <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
   <md-description tag="520">This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description>
   <md-description tag="513">1972-PRESENT</md-description>
  <recid>content: title maine geological survey bedrock water well inventory author medium book</recid>
 </hit>
 <hit>
+ <md-title>WATER WELL DATA</md-title>
+ <md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
+ <location id="my"
+    name="marcserver" checksum="4284416823">
+  <md-title>WATER WELL DATA</md-title>
+  <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
+  <md-description tag="513">1930-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title water well data author medium book</recid>
+</hit>
+<hit>
+ <md-title>STATEWIDE PLANNING</md-title>
+ <md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
+ <location id="my"
+    name="marcserver" checksum="4280878608">
+  <md-title>STATEWIDE PLANNING</md-title>
+  <md-description tag="520">This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
+  <md-description tag="513">1960-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title statewide planning author medium book</recid>
+</hit>
+<hit>
  <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
  <md-description>This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description>
  <location id="my"
index d0057f9..0b91990 100644 (file)
@@ -1,15 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>5</merged>
+<merged>3</merged>
 <total>31</total>
 <start>0</start>
-<num>5</num>
+<num>3</num>
 <hit>
  <md-title>APPLIED GEOLOGY FILE</md-title>
  <md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
  <location id="my"
-    name="marcserver" checksum="4291493253">
+    name="marcserver" checksum="3602387">
   <md-title>APPLIED GEOLOGY FILE</md-title>
   <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
   <md-description tag="513">1970-PRESENT</md-description>
  <count>1</count>
  <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
-<hit>
- <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
- <md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
- <location id="my"
-    name="marcserver" checksum="3602387">
-  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-  <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah earthquake epicenters author medium book</recid>
-</hit>
-<hit>
- <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
- <md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
- <location id="my"
-    name="marcserver" checksum="64172">
-  <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-  <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah geological and mineral survey publications author medium book</recid>
-</hit>
 </show>
\ No newline at end of file
index d0057f9..0b91990 100644 (file)
@@ -1,15 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>5</merged>
+<merged>3</merged>
 <total>31</total>
 <start>0</start>
-<num>5</num>
+<num>3</num>
 <hit>
  <md-title>APPLIED GEOLOGY FILE</md-title>
  <md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
  <location id="my"
-    name="marcserver" checksum="4291493253">
+    name="marcserver" checksum="3602387">
   <md-title>APPLIED GEOLOGY FILE</md-title>
   <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
   <md-description tag="513">1970-PRESENT</md-description>
  <count>1</count>
  <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
-<hit>
- <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
- <md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
- <location id="my"
-    name="marcserver" checksum="3602387">
-  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-  <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah earthquake epicenters author medium book</recid>
-</hit>
-<hit>
- <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
- <md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
- <location id="my"
-    name="marcserver" checksum="64172">
-  <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-  <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah geological and mineral survey publications author medium book</recid>
-</hit>
 </show>
\ No newline at end of file
index 697a3a8..b705753 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <show><status>OK</status>
 <activeclients>0</activeclients>
-<merged>7</merged>
+<merged>3</merged>
 <total>31</total>
 <start>0</start>
-<num>7</num>
+<num>3</num>
 <hit>
  <md-title>WATER WELL DATA</md-title>
  <md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
  <count>1</count>
  <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
-<hit>
- <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
- <md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
- <location id="my"
-    name="marcserver" checksum="3602387">
-  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-  <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
-  <md-description tag="513">-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title utah earthquake epicenters author medium book</recid>
-</hit>
-<hit>
- <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
- <md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
- <location id="my"
-    name="marcserver" checksum="4291493253">
-  <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-  <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
-  <md-description tag="513">1692-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title bibliography of maine geology author medium book</recid>
-</hit>
-<hit>
- <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
- <md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
- <location id="my"
-    name="marcserver" checksum="64172">
-  <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-  <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
-  <md-description tag="513">1982-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title automated flood warning network author medium book</recid>
-</hit>
-<hit>
- <md-title>APPLIED GEOLOGY FILE</md-title>
- <md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
- <location id="my"
-    name="marcserver" checksum="4291493253">
-  <md-title>APPLIED GEOLOGY FILE</md-title>
-  <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
-  <md-description tag="513">1970-PRESENT</md-description>
- </location>
- <count>1</count>
- <recid>content: title applied geology file author medium book</recid>
-</hit>
 </show>
\ No newline at end of file