Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/pazpar2: Document changes
authorDennis Schafroth <dennis@indexdata.com>
Fri, 21 Sep 2012 13:05:49 +0000 (15:05 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Fri, 21 Sep 2012 13:05:49 +0000 (15:05 +0200)
84 files changed:
NEWS
src/http_command.c
src/pazpar2_config.c
src/pazpar2_config.h
src/reclists.c
src/record.h
src/relevance.c
test/gils_service.xml
test/marc_service.xml
test/run_pazpar2.sh
test/test_facets_13.res
test/test_facets_16.res
test/test_facets_24.res
test/test_facets_4.res
test/test_facets_9.res
test/test_filter_12.res
test/test_filter_16.res
test/test_filter_17.res
test/test_filter_3.res
test/test_filter_6.res
test/test_filter_9.res
test/test_http.cfg
test/test_http_10.res
test/test_http_11.res
test/test_http_18.res
test/test_http_23.res
test/test_http_28.res
test/test_http_32.res
test/test_http_36.res
test/test_http_41.res
test/test_http_42.res
test/test_http_45.res
test/test_http_49.res
test/test_http_5.res
test/test_http_50.res
test/test_http_6.res
test/test_http_60.res
test/test_http_63.res
test/test_http_66.res
test/test_http_72.res
test/test_http_74.res
test/test_http_76.res
test/test_http_79.res
test/test_http_8.res
test/test_http_81.res
test/test_http_9.res
test/test_icu.cfg
test/test_icu_4.res
test/test_icu_5.res
test/test_icu_6.res
test/test_icu_7.res
test/test_icu_9.res
test/test_limit_limitmap_15.res
test/test_limit_limitmap_18.res
test/test_limit_limitmap_21.res
test/test_limit_limitmap_24.res
test/test_limit_limitmap_26.res
test/test_limit_limitmap_28.res
test/test_limit_limitmap_30.res
test/test_limit_limitmap_36.res
test/test_limit_limitmap_4.res
test/test_limit_limitmap_42.res
test/test_limit_limitmap_9.res
test/test_post_10.res
test/test_post_8.res
test/test_post_9.res
test/test_solr_13.res
test/test_solr_18.res
test/test_solr_22.res
test/test_solr_25.res
test/test_solr_29.res
test/test_solr_4.res
test/test_solr_9.res
test/test_termlist_block_9.res
test/test_turbomarcxml_4.res
test/test_turbomarcxml_7.res
test/test_url_10.res
test/test_url_17.res
test/test_url_18.res
test/test_url_3.res
test/test_url_6.res
test/test_url_7.res
test/test_url_8.res
test/test_url_9.res

diff --git a/NEWS b/NEWS
index 84c64ca..da7feb8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+--- 1.6.20 2012/09/21
+
+Rank algorithm details may be printed as part of show reseponse in
+element <relevance_info>.. This is only printed if <rank debug="yes"/>
+is used in service.
+
+Record as returned by show/record command have a minimal indentation
+which makes things human-readable.
+
 --- 1.6.19 2012/09/18
 
 Rank algorithm skips strings that gets normalized to empty string.
index 2097eee..c752b53 100644 (file)
@@ -826,7 +826,7 @@ static void cmd_bytarget(struct http_channel *c)
 }
 
 static void write_metadata(WRBUF w, struct conf_service *service,
-        struct record_metadata **ml, int full)
+                           struct record_metadata **ml, int full, int indent)
 {
     int imeta;
 
@@ -839,7 +839,10 @@ static void write_metadata(WRBUF w, struct conf_service *service,
         for (md = ml[imeta]; md; md = md->next)
         {
             struct record_metadata_attr *attr = md->attributes;
-            wrbuf_printf(w, "\n<md-%s", cmd->name);
+            int i;
+            for (i = 0; i < indent; i++)
+                wrbuf_putc(w, ' ');
+            wrbuf_printf(w, "<md-%s", cmd->name);
 
             for (; attr; attr = attr->next)
             {
@@ -862,7 +865,7 @@ static void write_metadata(WRBUF w, struct conf_service *service,
                     wrbuf_puts(w, "[can't represent]");
                     break;
             }
-            wrbuf_printf(w, "</md-%s>", cmd->name);
+            wrbuf_printf(w, "</md-%s>\n", cmd->name);
         }
     }
 }
@@ -873,20 +876,20 @@ static void write_subrecord(struct record *r, WRBUF w,
     const char *name = session_setting_oneval(
         client_get_database(r->client), PZ_NAME);
 
-    wrbuf_puts(w, "<location id=\"");
+    wrbuf_puts(w, " <location id=\"");
     wrbuf_xmlputs(w, client_get_id(r->client));
     wrbuf_puts(w, "\"\n");
 
-    wrbuf_puts(w, " name=\"");
+    wrbuf_puts(w, "    name=\"");
     wrbuf_xmlputs(w,  *name ? name : "Unknown");
     wrbuf_puts(w, "\" ");
 
     wrbuf_puts(w, "checksum=\"");
     wrbuf_printf(w,  "%u", r->checksum);
-    wrbuf_puts(w, "\">");
+    wrbuf_puts(w, "\">\n");
 
-    write_metadata(w, service, r->metadata, show_details);
-    wrbuf_puts(w, "</location>\n");
+    write_metadata(w, service, r->metadata, show_details, 2);
+    wrbuf_puts(w, " </location>\n");
 }
 
 static void show_raw_record_error(void *data, const char *addinfo)
@@ -1024,26 +1027,26 @@ static void show_record(struct http_channel *c, struct http_session *s)
     {
         struct record *r;
         response_open_no_status(c, "record");
-        wrbuf_puts(c->wrbuf, "\n<recid>");
+        wrbuf_puts(c->wrbuf, "\n <recid>");
         wrbuf_xmlputs(c->wrbuf, rec->recid);
         wrbuf_puts(c->wrbuf, "</recid>\n");
         if (prev_r)
         {
-            wrbuf_puts(c->wrbuf, "<prevrecid>");
+            wrbuf_puts(c->wrbuf, " <prevrecid>");
             wrbuf_xmlputs(c->wrbuf, prev_r->recid);
             wrbuf_puts(c->wrbuf, "</prevrecid>\n");
         }
         if (next_r)
         {
-            wrbuf_puts(c->wrbuf, "<nextrecid>");
+            wrbuf_puts(c->wrbuf, " <nextrecid>");
             wrbuf_xmlputs(c->wrbuf, next_r->recid);
             wrbuf_puts(c->wrbuf, "</nextrecid>\n");
         }
-        wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n",
+        wrbuf_printf(c->wrbuf, " <activeclients>%d</activeclients>\n",
                      session_active_clients(s->psession));
-        write_metadata(c->wrbuf, service, rec->metadata, 1);
+        write_metadata(c->wrbuf, service, rec->metadata, 1, 1);
         for (r = rec->records; r; r = r->next)
-            write_subrecord(r, c->wrbuf, service, 1);
+            write_subrecord(r, c->wrbuf, service, 2);
         response_close(c, "record");
     }
     show_single_stop(s->psession, rec);
@@ -1131,15 +1134,23 @@ static void show_records(struct http_channel *c, struct http_session *s, int act
         struct conf_service *service = s->psession->service;
 
         wrbuf_puts(c->wrbuf, "<hit>\n");
-        write_metadata(c->wrbuf, service, rec->metadata, 0);
+        write_metadata(c->wrbuf, service, rec->metadata, 0, 1);
         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
             write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details
-        if (ccount > 1)
-            wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
+        wrbuf_printf(c->wrbuf, " <count>%d</count>\n", ccount);
        if (strstr(sort, "relevance"))
-           wrbuf_printf(c->wrbuf, "<relevance>%d</relevance>\n",
+        {
+           wrbuf_printf(c->wrbuf, " <relevance>%d</relevance>\n",
                          rec->relevance_score);
-        wrbuf_puts(c->wrbuf, "<recid>");
+            if (service->rank_debug)
+            {
+                wrbuf_printf(c->wrbuf, " <relevance_info>\n");
+                wrbuf_xmlputs(c->wrbuf, wrbuf_cstr(rec->relevance_explain1));
+                wrbuf_xmlputs(c->wrbuf, wrbuf_cstr(rec->relevance_explain2));
+                wrbuf_printf(c->wrbuf, " </relevance_info>\n");
+            }
+        }
+        wrbuf_puts(c->wrbuf, " <recid>");
         wrbuf_xmlputs(c->wrbuf, rec->recid);
         wrbuf_puts(c->wrbuf, "</recid>\n");
         wrbuf_puts(c->wrbuf, "</hit>\n");
index ca16ea5..57809b1 100644 (file)
@@ -133,6 +133,7 @@ struct conf_service *service_init(struct conf_server *server,
     service->z3950_session_timeout = 180;
     service->z3950_operation_timeout = 30;
     service->rank_cluster = 1;
+    service->rank_debug = 0;
 
     service->charsets = 0;
 
@@ -620,17 +621,33 @@ static struct conf_service *service_create_static(struct conf_server *server,
         else if (!strcmp((const char *) n->name, "rank"))
         {
             char *rank_cluster = (char *) xmlGetProp(n, (xmlChar *) "cluster");
-
-            if (rank_cluster && !strcmp(rank_cluster, "yes"))
-                service->rank_cluster = 1;
-            else if (rank_cluster && !strcmp(rank_cluster, "no"))
-                service->rank_cluster = 0;
-            else
+            char *rank_debug = (char *) xmlGetProp(n, (xmlChar *) "debug");
+            if (rank_cluster)
             {
-                yaz_log(YLOG_FATAL, "service: rank@cluster boolean");
-                return 0;
+                if (!strcmp(rank_cluster, "yes"))
+                    service->rank_cluster = 1;
+                else if (!strcmp(rank_cluster, "no"))
+                    service->rank_cluster = 0;
+                else 
+                {
+                    yaz_log(YLOG_FATAL, "service: rank@cluster boolean");
+                    return 0;
+                }
+            }
+            if (rank_debug)
+            {
+                if (!strcmp(rank_debug, "yes"))
+                    service->rank_debug = 1;
+                else if (!strcmp(rank_debug, "no"))
+                    service->rank_debug = 0;
+                else
+                {
+                    yaz_log(YLOG_FATAL, "service: rank@debug boolean");
+                    return 0;
+                }
             }
             xmlFree(rank_cluster);
+            xmlFree(rank_debug);
         }
         else if (!strcmp((const char *) n->name, "sort-default"))
         {
@@ -638,7 +655,8 @@ static struct conf_service *service_create_static(struct conf_server *server,
 
             if (default_sort && strcmp(default_sort, "")) {
                 service->default_sort = nmem_strdup(service->nmem, default_sort);
-                yaz_log(YLOG_LOG, "service %d: default sort order configured to: %s", service_id, default_sort);
+                yaz_log(YLOG_LOG, "service %s: default sort order configured to: %s",
+                        service_id, default_sort);
             }
             else
             {
index 1cad37a..8f80f39 100644 (file)
@@ -117,6 +117,7 @@ struct conf_service
     int z3950_session_timeout;
     int z3950_operation_timeout;
     int rank_cluster;
+    int rank_debug;
     char *default_sort;
 
     int ref_count;
index 60df921..097b8c7 100644 (file)
@@ -294,7 +294,16 @@ struct reclist *reclist_create(NMEM nmem)
 void reclist_destroy(struct reclist *l)
 {
     if (l)
+    {
+        struct reclist_bucket *rb;
+        
+        for (rb = l->sorted_list; rb; rb = rb->snext)
+        {
+            wrbuf_destroy(rb->record->relevance_explain1);
+            wrbuf_destroy(rb->record->relevance_explain2);
+        }
         yaz_mutex_destroy(&l->mutex);
+    }
 }
 
 int reclist_get_num_records(struct reclist *l)
@@ -372,6 +381,8 @@ struct record_cluster *reclist_insert(struct reclist *l,
         memset(cluster->sortkeys, 0,
                sizeof(union data_types*) * service->num_sortkeys);
 
+        cluster->relevance_explain1 = wrbuf_alloc();
+        cluster->relevance_explain2 = wrbuf_alloc();
         /* attach to hash list */
         *p = new;
 
index 5ac558e..a5afde1 100644 (file)
@@ -88,6 +88,8 @@ struct record_cluster
     float *term_frequency_vecf;
     // Set-specific ID for this record
     char *recid;
+    WRBUF relevance_explain1;
+    WRBUF relevance_explain2;
     struct record *records;
 };
 
index 9ad953b..3755b09 100644 (file)
@@ -40,6 +40,7 @@ struct relevance
 
 struct word_entry {
     const char *norm_str;
+    const char *display_str;
     int termno;
     char *ccl_field;
     struct word_entry *next;
@@ -77,6 +78,9 @@ void relevance_countwords(struct relevance *r, struct record_cluster *cluster,
     int *mult = cluster->term_frequency_vec_tmp;
     const char *norm_str;
     int i, length = 0;
+    struct word_entry *e = r->entries;
+    WRBUF w = cluster->relevance_explain1;
+
     pp2_charset_token_first(r->prt, words, 0);
     for (i = 1; i < r->vec_len; i++)
         mult[i] = 0;
@@ -96,9 +100,14 @@ void relevance_countwords(struct relevance *r, struct record_cluster *cluster,
 
     for (i = 1; i < r->vec_len; i++)
     {
-        if (length > 0) /* only add if non-empty */
+        if (length > 0 && mult[i] > 0) /* only add if non-empty */
+        {
+            wrbuf_printf(w, "%s: field=%s vecf[%d] += mult(%d) / length(%d);\n",
+                         e->display_str, name, i, mult[i], length);
             cluster->term_frequency_vecf[i] += (double) mult[i] / length;
+        }
         cluster->term_frequency_vec[i] += mult[i];
+        e = e->next;
     }
 
     cluster->term_frequency_vec[0] += length;
@@ -138,6 +147,7 @@ static void pull_terms(struct relevance *res, struct ccl_rpn_node *n)
                 (*e)->norm_str = nmem_strdup(res->nmem, norm_str);
                 (*e)->ccl_field = ccl_field;
                 (*e)->termno = res->vec_len++;
+                (*e)->display_str = nmem_strdup(res->nmem, words[i]);
                 (*e)->next = 0;
             }
         }
@@ -239,15 +249,27 @@ void relevance_prepare_read(struct relevance *rel, struct reclist *reclist)
     // Calculate relevance for each document
     while (1)
     {
-        int t;
         int relevance = 0;
+        WRBUF w;
+        struct word_entry *e = rel->entries;
         struct record_cluster *rec = reclist_read_record(reclist);
         if (!rec)
             break;
-        for (t = 1; t < rel->vec_len; t++)
+        w = rec->relevance_explain2;
+        wrbuf_rewind(w);
+        for (i = 1; i < rel->vec_len; i++)
         {
-            float termfreq = (float) rec->term_frequency_vecf[t];
-            relevance += 100000 * termfreq * idfvec[t];
+            float termfreq = (float) rec->term_frequency_vecf[i];
+            int add = 100000 * termfreq * idfvec[i];
+
+            wrbuf_printf(w, "idf[%d] = log(((1 + total(%d))/termoccur(%d));\n",
+                         i, rel->doc_frequency_vec[0],
+                         rel->doc_frequency_vec[i]);
+            wrbuf_printf(w, "%s: relevance += 100000 * vecf[%d](%f) * "
+                         "idf[%d](%f) (%d);\n",
+                         e->display_str, i, termfreq, i, idfvec[i], add);
+            relevance += add;
+            e = e->next;
         }
         if (!rel->rank_cluster)
         {
@@ -257,8 +279,14 @@ void relevance_prepare_read(struct relevance *rel, struct reclist *reclist)
             for (record = rec->records; record; record = record->next)
                 cluster_size++;
 
+            wrbuf_printf(w, "score = relevance(%d)/cluster_size(%d);\n",
+                         relevance, cluster_size);
             relevance /= cluster_size;
         }
+        else
+        {
+            wrbuf_printf(w, "score = relevance(%d);\n", relevance);
+        }
         rec->relevance_score = relevance;
     }
     reclist_leave(reclist);
index f115422..daecf4d 100644 (file)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
     <service id="gils">
+      <rank debug="yes"/>
       <settings target="z3950.indexdata.com/gils">
        <set name="pz:name" value="Index Data GILS test server"/>
        
index d0e9266..ed93a62 100644 (file)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
     <service id="marc">
+      <rank debug="yes"/>
       <settings src="z3950_indexdata_com_marc.xml"/>
       <metadata name="url" merge="unique"/>
       <metadata name="title" brief="yes" sortkey="skiparticle" merge="longest" rank="6"/>
index fe58c6a..f62c082 100755 (executable)
@@ -102,7 +102,7 @@ for f in `cat ${srcdir}/${URLS}`; do
        if test ! -f $OUT2; then
            touch $OUT2
        fi
-       if test -f $OUT1; then
+       if test -f $OUT1 -a -z "$PAZPAR2_OVERRIDE_TEST"; then
            if diff $OUT1 $OUT2 >$DIFF; then
                rm $DIFF
            else
index bbb5448..e0c22e6 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
- name="db1" checksum="4195168235">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1"
- name="db1" checksum="75373906">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>97311</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4195168235">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="75373906">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>97311</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index 29137c8..30fc531 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
- name="db1" checksum="4195168235">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1"
- name="db1" checksum="75373906">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>97311</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4195168235">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="75373906">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>97311</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index 0e3a51d..8983946 100644 (file)
 <start>0</start>
 <num>8</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
- name="db1" checksum="4195168235">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1"
- name="db1" checksum="75373906">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>53554</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4195168235">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="75373906">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>53554</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1"
- name="db1" checksum="3319303400">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>44628</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3319303400">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>44628</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1"
- name="db1" checksum="3844822301">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>44628</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3844822301">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>44628</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/db1"
- name="db1" checksum="2968957466">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description></location>
-<relevance>19126</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="2968957466">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>19126</relevance>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1"
- name="db1" checksum="3669649334">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description></location>
-<relevance>18595</relevance>
-<recid>content: title the puget sound region author mairs john w</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3669649334">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ </location>
+ <count>1</count>
+ <relevance>18595</relevance>
+ <recid>content: title the puget sound region author mairs john w</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="localhost:9999/db1"
- name="db1" checksum="4019995268">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date></location>
-<relevance>13388</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4019995268">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+ </location>
+ <count>1</count>
+ <relevance>13388</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="localhost:9999/db1"
- name="db1" checksum="3144130433">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author></location>
-<relevance>13388</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3144130433">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>13388</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1"
- name="db1" checksum="3494476367">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3494476367">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index c3bcbb2..b1c2baa 100644 (file)
@@ -6,83 +6,95 @@
 <start>0</start>
 <num>6</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
- name="db1" checksum="4195168235">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1"
- name="db1" checksum="75373906">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>69043</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4195168235">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="75373906">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>69043</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1"
- name="db1" checksum="3319303400">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>57536</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3319303400">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>57536</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1"
- name="db1" checksum="3844822301">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>57536</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3844822301">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>57536</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1"
- name="db1" checksum="3669649334">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description></location>
-<relevance>23973</relevance>
-<recid>content: title the puget sound region author mairs john w</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3669649334">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ </location>
+ <count>1</count>
+ <relevance>23973</relevance>
+ <recid>content: title the puget sound region author mairs john w</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="localhost:9999/db1"
- name="db1" checksum="4019995268">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date></location>
-<relevance>17260</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4019995268">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+ </location>
+ <count>1</count>
+ <relevance>17260</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1"
- name="db1" checksum="3494476367">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="3494476367">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 24568bc..b498c15 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
- name="db1" checksum="4195168235">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1"
- name="db1" checksum="75373906">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>97311</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="4195168235">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/db1"
+    name="db1" checksum="75373906">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>97311</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index 9d1eadd..c24b060 100644 (file)
 <start>0</start>
 <num>12</num>
 <hit>
-
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<relevance>51972</relevance>
-<recid>content: title the late shift author carter bill medium book</recid>
+ <md-title>The late shift</md-title>
+ <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-author>Carter, Bill</md-author>
+ <md-subject>Tonight show (Television program)</md-subject>
+ <md-subject>Letterman, David</md-subject>
+ <md-subject>Leno, Jay</md-subject>
+ <md-subject>Talk shows</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The late shift</md-title>
+  <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-author>Carter, Bill</md-author>
+  <md-subject>Tonight show (Television program)</md-subject>
+  <md-subject>Letterman, David</md-subject>
+  <md-subject>Leno, Jay</md-subject>
+  <md-subject>Talk shows</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>51972</relevance>
+ <recid>content: title the late shift author carter bill medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>33410</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33410</relevance>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description></location>
-<relevance>29158</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+ </location>
+ <count>1</count>
+ <relevance>29158</relevance>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<relevance>25058</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <relevance>25058</relevance>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>20881</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>20881</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>16705</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>16705</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="61276177">
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<relevance>13921</relevance>
-<recid>content: title dealing with dropouts author paulu nancy medium</recid>
+ <md-title>Dealing with dropouts</md-title>
+ <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Paulu, Nancy</md-author>
+ <md-subject>Dropouts</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="61276177">
+  <md-title>Dealing with dropouts</md-title>
+  <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Paulu, Nancy</md-author>
+  <md-subject>Dropouts</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <relevance>13921</relevance>
+ <recid>content: title dealing with dropouts author paulu nancy medium</recid>
 </hit>
 <hit>
-
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="235468466">
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<relevance>13364</relevance>
-<recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
+ <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+ <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+ <md-date>1986</md-date>
+ <md-subject>Physical education</md-subject>
+ <md-subject>Handicapped children</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="235468466">
+  <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+  <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+  <md-date>1986</md-date>
+  <md-subject>Physical education</md-subject>
+  <md-subject>Handicapped children</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <relevance>13364</relevance>
+ <recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject></location>
-<relevance>10023</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>10023</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<relevance>5966</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>5966</relevance>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
-<md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;December 1984.&quot;</md-description>
-<md-description tag="500">Includes indexes</md-description></location>
-<relevance>3341</relevance>
-<recid>content: title technology programs that work author medium book</recid>
+ <md-title>Technology programs that work</md-title>
+ <md-date>1984</md-date>
+ <md-subject>United States</md-subject>
+ <md-subject>Educational technology</md-subject>
+ <md-subject>Federal aid to education</md-subject>
+ <md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Technology programs that work</md-title>
+  <md-date>1984</md-date>
+  <md-subject>United States</md-subject>
+  <md-subject>Educational technology</md-subject>
+  <md-subject>Federal aid to education</md-subject>
+  <md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
+  <md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;December 1984.&quot;</md-description>
+  <md-description tag="500">Includes indexes</md-description>
+ </location>
+ <count>1</count>
+ <relevance>3341</relevance>
+ <recid>content: title technology programs that work author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;July 1987.&quot;</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-description tag="500">&quot;LP 87-403c.&quot;</md-description></location>
-<relevance>0</relevance>
-<recid>content: title check this out author seager andrew j medium book</recid>
+ <md-title>Check this out</md-title>
+ <md-title-remainder>library program models</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Seager, Andrew J</md-author>
+ <md-subject>Libraries and community</md-subject>
+ <md-subject>Libraries and education</md-subject>
+ <md-subject>School libraries</md-subject>
+ <md-subject>Instructional materials centers</md-subject>
+ <md-subject>Public libraries</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>Check this out</md-title>
+  <md-title-remainder>library program models</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Seager, Andrew J</md-author>
+  <md-subject>Libraries and community</md-subject>
+  <md-subject>Libraries and education</md-subject>
+  <md-subject>School libraries</md-subject>
+  <md-subject>Instructional materials centers</md-subject>
+  <md-subject>Public libraries</md-subject>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;July 1987.&quot;</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-description tag="500">&quot;LP 87-403c.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title check this out author seager andrew j medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 1617afe..e290d20 100644 (file)
 <start>0</start>
 <num>19</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1963026620">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1963026620">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1216306911">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1216306911">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="93569409">
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
-<md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;December 1984.&quot;</md-description>
-<md-description tag="500">Includes indexes</md-description></location>
-<recid>content: title technology programs that work author medium book</recid>
+ <md-title>Technology programs that work</md-title>
+ <md-date>1984</md-date>
+ <md-subject>United States</md-subject>
+ <md-subject>Educational technology</md-subject>
+ <md-subject>Federal aid to education</md-subject>
+ <md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="93569409">
+  <md-title>Technology programs that work</md-title>
+  <md-date>1984</md-date>
+  <md-subject>United States</md-subject>
+  <md-subject>Educational technology</md-subject>
+  <md-subject>Federal aid to education</md-subject>
+  <md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
+  <md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;December 1984.&quot;</md-description>
+  <md-description tag="500">Includes indexes</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title technology programs that work author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4203185747">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description></location>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4203185747">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4017834789">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4017834789">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3271115080">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3271115080">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2709746329">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2709746329">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2895097287">
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<recid>content: title the late shift author carter bill medium book</recid>
+ <md-title>The late shift</md-title>
+ <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-author>Carter, Bill</md-author>
+ <md-subject>Tonight show (Television program)</md-subject>
+ <md-subject>Letterman, David</md-subject>
+ <md-subject>Leno, Jay</md-subject>
+ <md-subject>Talk shows</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2895097287">
+  <md-title>The late shift</md-title>
+  <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-author>Carter, Bill</md-author>
+  <md-subject>Tonight show (Television program)</md-subject>
+  <md-subject>Letterman, David</md-subject>
+  <md-subject>Leno, Jay</md-subject>
+  <md-subject>Talk shows</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the late shift author carter bill medium book</recid>
 </hit>
 <hit>
-
-<md-title>Internet world</md-title>
-<md-date>1992</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Computer networks</md-subject>
-<md-subject>Information networks</md-subject>
-<md-subject>Computer Systems</md-subject>
-<md-subject>Online Systems</md-subject>
-<md-description>Title from caption</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1401657869">
-<md-title>Internet world</md-title>
-<md-date>1992</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Computer networks</md-subject>
-<md-subject>Information networks</md-subject>
-<md-subject>Computer Systems</md-subject>
-<md-subject>Online Systems</md-subject>
-<md-description tag="500">Title from caption</md-description></location>
-<recid>content: title internet world author medium book</recid>
+ <md-title>Internet world</md-title>
+ <md-date>1992</md-date>
+ <md-subject>Internet (Computer network)</md-subject>
+ <md-subject>Computer networks</md-subject>
+ <md-subject>Information networks</md-subject>
+ <md-subject>Computer Systems</md-subject>
+ <md-subject>Online Systems</md-subject>
+ <md-description>Title from caption</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1401657869">
+  <md-title>Internet world</md-title>
+  <md-date>1992</md-date>
+  <md-subject>Internet (Computer network)</md-subject>
+  <md-subject>Computer networks</md-subject>
+  <md-subject>Information networks</md-subject>
+  <md-subject>Computer Systems</md-subject>
+  <md-subject>Online Systems</md-subject>
+  <md-description tag="500">Title from caption</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title internet world author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Internet</md-title>
-<md-title-remainder>mailing lists</md-title-remainder>
-<md-date>1993</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Mailing lists</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3641816996">
-<md-title>Internet</md-title>
-<md-title-remainder>mailing lists</md-title-remainder>
-<md-date>1993</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Mailing lists</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<recid>content: title internet author medium book</recid>
+ <md-title>Internet</md-title>
+ <md-title-remainder>mailing lists</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-subject>Internet (Computer network)</md-subject>
+ <md-subject>Mailing lists</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3641816996">
+  <md-title>Internet</md-title>
+  <md-title-remainder>mailing lists</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-subject>Internet (Computer network)</md-subject>
+  <md-subject>Mailing lists</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title internet author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Info Canada</md-title>
-<md-date>1991</md-date>
-<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2148377578">
-<md-title>Info Canada</md-title>
-<md-date>1991</md-date>
-<md-description tag="500">Title from caption</md-description>
-<md-description tag="580">Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description></location>
-<recid>content: title info canada author medium book</recid>
+ <md-title>Info Canada</md-title>
+ <md-date>1991</md-date>
+ <md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2148377578">
+  <md-title>Info Canada</md-title>
+  <md-date>1991</md-date>
+  <md-description tag="500">Title from caption</md-description>
+  <md-description tag="580">Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title info canada author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1030955953">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow"
- name="ztest slow" checksum="284236244">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1030955953">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="284236244">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="654938160">
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject></location>
-<recid>content: title four psalms author smith george adam medium book</recid>
+ <md-title>Four psalms</md-title>
+ <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+ <md-date>1980</md-date>
+ <md-author>Smith, George Adam</md-author>
+ <md-subject>Bible</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="654938160">
+  <md-title>Four psalms</md-title>
+  <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+  <md-date>1980</md-date>
+  <md-author>Smith, George Adam</md-author>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title four psalms author smith george adam medium book</recid>
 </hit>
 <hit>
-
-<md-title>FEDLINK services directory for fiscal year</md-title>
-<md-subject>FEDLINK (Network)</md-subject>
-<md-subject>Library information networks</md-subject>
-<md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1587008827">
-<md-title>FEDLINK services directory for fiscal year</md-title>
-<md-subject>FEDLINK (Network)</md-subject>
-<md-subject>Library information networks</md-subject>
-<md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description tag="500">Description based on: 1990</md-description></location>
-<recid>content: title fedlink services directory for fiscal year author medium book</recid>
+ <md-title>FEDLINK services directory for fiscal year</md-title>
+ <md-subject>FEDLINK (Network)</md-subject>
+ <md-subject>Library information networks</md-subject>
+ <md-subject>Libraries, Governmental, administrative, etc</md-subject>
+ <md-description>Description based on: 1990</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1587008827">
+  <md-title>FEDLINK services directory for fiscal year</md-title>
+  <md-subject>FEDLINK (Network)</md-subject>
+  <md-subject>Library information networks</md-subject>
+  <md-subject>Libraries, Governmental, administrative, etc</md-subject>
+  <md-description tag="500">Description based on: 1990</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title fedlink services directory for fiscal year author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Deuteronomy</md-title>
-<md-date>1968</md-date>
-<md-author>Oberst, Bruce</md-author>
-<md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3456466038">
-<md-title>Deuteronomy</md-title>
-<md-date>1968</md-date>
-<md-author>Oberst, Bruce</md-author>
-<md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description tag="504">Bibliography: p. 449-452</md-description></location>
-<recid>content: title deuteronomy author oberst bruce medium book</recid>
+ <md-title>Deuteronomy</md-title>
+ <md-date>1968</md-date>
+ <md-author>Oberst, Bruce</md-author>
+ <md-subject>Bible. O.T. Deuteronomy</md-subject>
+ <md-description>Bibliography: p. 449-452</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3456466038">
+  <md-title>Deuteronomy</md-title>
+  <md-date>1968</md-date>
+  <md-author>Oberst, Bruce</md-author>
+  <md-subject>Bible. O.T. Deuteronomy</md-subject>
+  <md-description tag="504">Bibliography: p. 449-452</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title deuteronomy author oberst bruce medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="469587202">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="469587202">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1777675662">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1777675662">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2524395371">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2524395371">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="840289118">
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;July 1987.&quot;</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-description tag="500">&quot;LP 87-403c.&quot;</md-description></location>
-<recid>content: title check this out author seager andrew j medium book</recid>
+ <md-title>Check this out</md-title>
+ <md-title-remainder>library program models</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Seager, Andrew J</md-author>
+ <md-subject>Libraries and community</md-subject>
+ <md-subject>Libraries and education</md-subject>
+ <md-subject>School libraries</md-subject>
+ <md-subject>Instructional materials centers</md-subject>
+ <md-subject>Public libraries</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="840289118">
+  <md-title>Check this out</md-title>
+  <md-title-remainder>library program models</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Seager, Andrew J</md-author>
+  <md-subject>Libraries and community</md-subject>
+  <md-subject>Libraries and education</md-subject>
+  <md-subject>School libraries</md-subject>
+  <md-subject>Instructional materials centers</md-subject>
+  <md-subject>Public libraries</md-subject>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;July 1987.&quot;</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-description tag="500">&quot;LP 87-403c.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title check this out author seager andrew j medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 0cf01fa..c216196 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1963026620">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1963026620">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1216306911">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1216306911">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="93569409">
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
-<md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;December 1984.&quot;</md-description>
-<md-description tag="500">Includes indexes</md-description></location>
-<recid>content: title technology programs that work author medium book</recid>
+ <md-title>Technology programs that work</md-title>
+ <md-date>1984</md-date>
+ <md-subject>United States</md-subject>
+ <md-subject>Educational technology</md-subject>
+ <md-subject>Federal aid to education</md-subject>
+ <md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="93569409">
+  <md-title>Technology programs that work</md-title>
+  <md-date>1984</md-date>
+  <md-subject>United States</md-subject>
+  <md-subject>Educational technology</md-subject>
+  <md-subject>Federal aid to education</md-subject>
+  <md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
+  <md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;December 1984.&quot;</md-description>
+  <md-description tag="500">Includes indexes</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title technology programs that work author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4203185747">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description></location>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4203185747">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4017834789">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4017834789">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3271115080">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3271115080">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2709746329">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2709746329">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3080448245">
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
+ <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+ <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+ <md-date>1986</md-date>
+ <md-subject>Physical education</md-subject>
+ <md-subject>Handicapped children</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3080448245">
+  <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+  <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+  <md-date>1986</md-date>
+  <md-subject>Physical education</md-subject>
+  <md-subject>Handicapped children</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
 </hit>
 <hit>
-
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2895097287">
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<recid>content: title the late shift author carter bill medium book</recid>
+ <md-title>The late shift</md-title>
+ <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-author>Carter, Bill</md-author>
+ <md-subject>Tonight show (Television program)</md-subject>
+ <md-subject>Letterman, David</md-subject>
+ <md-subject>Leno, Jay</md-subject>
+ <md-subject>Talk shows</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2895097287">
+  <md-title>The late shift</md-title>
+  <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-author>Carter, Bill</md-author>
+  <md-subject>Tonight show (Television program)</md-subject>
+  <md-subject>Letterman, David</md-subject>
+  <md-subject>Leno, Jay</md-subject>
+  <md-subject>Talk shows</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the late shift author carter bill medium book</recid>
 </hit>
 <hit>
-
-<md-title>Internet world</md-title>
-<md-date>1992</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Computer networks</md-subject>
-<md-subject>Information networks</md-subject>
-<md-subject>Computer Systems</md-subject>
-<md-subject>Online Systems</md-subject>
-<md-description>Title from caption</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1401657869">
-<md-title>Internet world</md-title>
-<md-date>1992</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Computer networks</md-subject>
-<md-subject>Information networks</md-subject>
-<md-subject>Computer Systems</md-subject>
-<md-subject>Online Systems</md-subject>
-<md-description tag="500">Title from caption</md-description></location>
-<recid>content: title internet world author medium book</recid>
+ <md-title>Internet world</md-title>
+ <md-date>1992</md-date>
+ <md-subject>Internet (Computer network)</md-subject>
+ <md-subject>Computer networks</md-subject>
+ <md-subject>Information networks</md-subject>
+ <md-subject>Computer Systems</md-subject>
+ <md-subject>Online Systems</md-subject>
+ <md-description>Title from caption</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1401657869">
+  <md-title>Internet world</md-title>
+  <md-date>1992</md-date>
+  <md-subject>Internet (Computer network)</md-subject>
+  <md-subject>Computer networks</md-subject>
+  <md-subject>Information networks</md-subject>
+  <md-subject>Computer Systems</md-subject>
+  <md-subject>Online Systems</md-subject>
+  <md-description tag="500">Title from caption</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title internet world author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Internet</md-title>
-<md-title-remainder>mailing lists</md-title-remainder>
-<md-date>1993</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Mailing lists</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3641816996">
-<md-title>Internet</md-title>
-<md-title-remainder>mailing lists</md-title-remainder>
-<md-date>1993</md-date>
-<md-subject>Internet (Computer network)</md-subject>
-<md-subject>Mailing lists</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<recid>content: title internet author medium book</recid>
+ <md-title>Internet</md-title>
+ <md-title-remainder>mailing lists</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-subject>Internet (Computer network)</md-subject>
+ <md-subject>Mailing lists</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3641816996">
+  <md-title>Internet</md-title>
+  <md-title-remainder>mailing lists</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-subject>Internet (Computer network)</md-subject>
+  <md-subject>Mailing lists</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title internet author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Info Canada</md-title>
-<md-date>1991</md-date>
-<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2148377578">
-<md-title>Info Canada</md-title>
-<md-date>1991</md-date>
-<md-description tag="500">Title from caption</md-description>
-<md-description tag="580">Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description></location>
-<recid>content: title info canada author medium book</recid>
+ <md-title>Info Canada</md-title>
+ <md-date>1991</md-date>
+ <md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2148377578">
+  <md-title>Info Canada</md-title>
+  <md-date>1991</md-date>
+  <md-description tag="500">Title from caption</md-description>
+  <md-description tag="580">Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title info canada author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1030955953">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow"
- name="ztest slow" checksum="284236244">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1030955953">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="284236244">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="654938160">
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject></location>
-<recid>content: title four psalms author smith george adam medium book</recid>
+ <md-title>Four psalms</md-title>
+ <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+ <md-date>1980</md-date>
+ <md-author>Smith, George Adam</md-author>
+ <md-subject>Bible</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="654938160">
+  <md-title>Four psalms</md-title>
+  <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+  <md-date>1980</md-date>
+  <md-author>Smith, George Adam</md-author>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title four psalms author smith george adam medium book</recid>
 </hit>
 <hit>
-
-<md-title>FEDLINK services directory for fiscal year</md-title>
-<md-subject>FEDLINK (Network)</md-subject>
-<md-subject>Library information networks</md-subject>
-<md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1587008827">
-<md-title>FEDLINK services directory for fiscal year</md-title>
-<md-subject>FEDLINK (Network)</md-subject>
-<md-subject>Library information networks</md-subject>
-<md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description tag="500">Description based on: 1990</md-description></location>
-<recid>content: title fedlink services directory for fiscal year author medium book</recid>
+ <md-title>FEDLINK services directory for fiscal year</md-title>
+ <md-subject>FEDLINK (Network)</md-subject>
+ <md-subject>Library information networks</md-subject>
+ <md-subject>Libraries, Governmental, administrative, etc</md-subject>
+ <md-description>Description based on: 1990</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1587008827">
+  <md-title>FEDLINK services directory for fiscal year</md-title>
+  <md-subject>FEDLINK (Network)</md-subject>
+  <md-subject>Library information networks</md-subject>
+  <md-subject>Libraries, Governmental, administrative, etc</md-subject>
+  <md-description tag="500">Description based on: 1990</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title fedlink services directory for fiscal year author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Deuteronomy</md-title>
-<md-date>1968</md-date>
-<md-author>Oberst, Bruce</md-author>
-<md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3456466038">
-<md-title>Deuteronomy</md-title>
-<md-date>1968</md-date>
-<md-author>Oberst, Bruce</md-author>
-<md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description tag="504">Bibliography: p. 449-452</md-description></location>
-<recid>content: title deuteronomy author oberst bruce medium book</recid>
+ <md-title>Deuteronomy</md-title>
+ <md-date>1968</md-date>
+ <md-author>Oberst, Bruce</md-author>
+ <md-subject>Bible. O.T. Deuteronomy</md-subject>
+ <md-description>Bibliography: p. 449-452</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3456466038">
+  <md-title>Deuteronomy</md-title>
+  <md-date>1968</md-date>
+  <md-author>Oberst, Bruce</md-author>
+  <md-subject>Bible. O.T. Deuteronomy</md-subject>
+  <md-description tag="504">Bibliography: p. 449-452</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title deuteronomy author oberst bruce medium book</recid>
 </hit>
 <hit>
-
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2333728536">
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<recid>content: title dealing with dropouts author paulu nancy medium</recid>
+ <md-title>Dealing with dropouts</md-title>
+ <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Paulu, Nancy</md-author>
+ <md-subject>Dropouts</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2333728536">
+  <md-title>Dealing with dropouts</md-title>
+  <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Paulu, Nancy</md-author>
+  <md-subject>Dropouts</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title dealing with dropouts author paulu nancy medium</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="469587202">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="469587202">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1777675662">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1777675662">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2524395371">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2524395371">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 2b390e9..e693c44 100644 (file)
 <start>0</start>
 <num>12</num>
 <hit>
-
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The late shift</md-title>
-<md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
-<md-date>1993</md-date>
-<md-author>Carter, Bill</md-author>
-<md-subject>Tonight show (Television program)</md-subject>
-<md-subject>Letterman, David</md-subject>
-<md-subject>Leno, Jay</md-subject>
-<md-subject>Talk shows</md-subject>
-<md-description tag="500">Includes index</md-description></location>
-<relevance>51972</relevance>
-<recid>content: title the late shift author carter bill medium book</recid>
+ <md-title>The late shift</md-title>
+ <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+ <md-date>1993</md-date>
+ <md-author>Carter, Bill</md-author>
+ <md-subject>Tonight show (Television program)</md-subject>
+ <md-subject>Letterman, David</md-subject>
+ <md-subject>Leno, Jay</md-subject>
+ <md-subject>Talk shows</md-subject>
+ <md-description>Includes index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The late shift</md-title>
+  <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
+  <md-date>1993</md-date>
+  <md-author>Carter, Bill</md-author>
+  <md-subject>Tonight show (Television program)</md-subject>
+  <md-subject>Letterman, David</md-subject>
+  <md-subject>Leno, Jay</md-subject>
+  <md-subject>Talk shows</md-subject>
+  <md-description tag="500">Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>51972</relevance>
+ <recid>content: title the late shift author carter bill medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>33410</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33410</relevance>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description></location>
-<relevance>29158</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+ </location>
+ <count>1</count>
+ <relevance>29158</relevance>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<relevance>25058</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <relevance>25058</relevance>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>20881</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>20881</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>16705</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>16705</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="61276177">
-<md-title>Dealing with dropouts</md-title>
-<md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Paulu, Nancy</md-author>
-<md-subject>Dropouts</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<relevance>13921</relevance>
-<recid>content: title dealing with dropouts author paulu nancy medium</recid>
+ <md-title>Dealing with dropouts</md-title>
+ <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Paulu, Nancy</md-author>
+ <md-subject>Dropouts</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="61276177">
+  <md-title>Dealing with dropouts</md-title>
+  <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Paulu, Nancy</md-author>
+  <md-subject>Dropouts</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <relevance>13921</relevance>
+ <recid>content: title dealing with dropouts author paulu nancy medium</recid>
 </hit>
 <hit>
-
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="235468466">
-<md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
-<md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
-<md-date>1986</md-date>
-<md-subject>Physical education</md-subject>
-<md-subject>Handicapped children</md-subject>
-<md-description tag="533">Microfiche</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description></location>
-<relevance>13364</relevance>
-<recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
+ <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+ <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+ <md-date>1986</md-date>
+ <md-subject>Physical education</md-subject>
+ <md-subject>Handicapped children</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="235468466">
+  <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
+  <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
+  <md-date>1986</md-date>
+  <md-subject>Physical education</md-subject>
+  <md-subject>Handicapped children</md-subject>
+  <md-description tag="533">Microfiche</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+ </location>
+ <count>1</count>
+ <relevance>13364</relevance>
+ <recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject></location>
-<relevance>10023</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>10023</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<relevance>5966</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>5966</relevance>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Technology programs that work</md-title>
-<md-date>1984</md-date>
-<md-subject>United States</md-subject>
-<md-subject>Educational technology</md-subject>
-<md-subject>Federal aid to education</md-subject>
-<md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
-<md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;December 1984.&quot;</md-description>
-<md-description tag="500">Includes indexes</md-description></location>
-<relevance>3341</relevance>
-<recid>content: title technology programs that work author medium book</recid>
+ <md-title>Technology programs that work</md-title>
+ <md-date>1984</md-date>
+ <md-subject>United States</md-subject>
+ <md-subject>Educational technology</md-subject>
+ <md-subject>Federal aid to education</md-subject>
+ <md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Technology programs that work</md-title>
+  <md-date>1984</md-date>
+  <md-subject>United States</md-subject>
+  <md-subject>Educational technology</md-subject>
+  <md-subject>Federal aid to education</md-subject>
+  <md-description tag="500">&quot;Spons agency Office of Educational Research and Improvement&quot;--Doc. resume</md-description>
+  <md-description tag="500">&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;December 1984.&quot;</md-description>
+  <md-description tag="500">Includes indexes</md-description>
+ </location>
+ <count>1</count>
+ <relevance>3341</relevance>
+ <recid>content: title technology programs that work author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>Check this out</md-title>
-<md-title-remainder>library program models</md-title-remainder>
-<md-date>1987</md-date>
-<md-author>Seager, Andrew J</md-author>
-<md-subject>Libraries and community</md-subject>
-<md-subject>Libraries and education</md-subject>
-<md-subject>School libraries</md-subject>
-<md-subject>Instructional materials centers</md-subject>
-<md-subject>Public libraries</md-subject>
-<md-description tag="500">Distributed to depository libraries in microfiche</md-description>
-<md-description tag="500">&quot;July 1987.&quot;</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-description tag="500">&quot;LP 87-403c.&quot;</md-description></location>
-<relevance>0</relevance>
-<recid>content: title check this out author seager andrew j medium book</recid>
+ <md-title>Check this out</md-title>
+ <md-title-remainder>library program models</md-title-remainder>
+ <md-date>1987</md-date>
+ <md-author>Seager, Andrew J</md-author>
+ <md-subject>Libraries and community</md-subject>
+ <md-subject>Libraries and education</md-subject>
+ <md-subject>School libraries</md-subject>
+ <md-subject>Instructional materials centers</md-subject>
+ <md-subject>Public libraries</md-subject>
+ <md-description>Distributed to depository libraries in microfiche</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>Check this out</md-title>
+  <md-title-remainder>library program models</md-title-remainder>
+  <md-date>1987</md-date>
+  <md-author>Seager, Andrew J</md-author>
+  <md-subject>Libraries and community</md-subject>
+  <md-subject>Libraries and education</md-subject>
+  <md-subject>School libraries</md-subject>
+  <md-subject>Instructional materials centers</md-subject>
+  <md-subject>Public libraries</md-subject>
+  <md-description tag="500">Distributed to depository libraries in microfiche</md-description>
+  <md-description tag="500">&quot;July 1987.&quot;</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-description tag="500">&quot;LP 87-403c.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title check this out author seager andrew j medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 8aa054d..e63ac01 100644 (file)
 <start>0</start>
 <num>6</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2524395371">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>94000</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2524395371">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>94000</relevance>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3271115080">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<relevance>70500</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3271115080">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <relevance>70500</relevance>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4017834789">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>58750</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4017834789">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>58750</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1777675662">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>47000</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1777675662">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>47000</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="469587202">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<relevance>16785</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="469587202">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>16785</relevance>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1030955953">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow"
- name="ztest slow" checksum="284236244">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>0</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1030955953">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="284236244">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>0</relevance>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 8aa054d..e63ac01 100644 (file)
 <start>0</start>
 <num>6</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="2524395371">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>94000</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="2524395371">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>94000</relevance>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="3271115080">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<relevance>70500</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="3271115080">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <relevance>70500</relevance>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="4017834789">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>58750</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="4017834789">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>58750</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1777675662">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>47000</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1777675662">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>47000</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
- name="ztest slow" checksum="469587202">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject></location>
-<relevance>16785</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="469587202">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+ </location>
+ <count>1</count>
+ <relevance>16785</relevance>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
- name="ztest slow" checksum="1030955953">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow"
- name="ztest slow" checksum="284236244">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>0</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="1030955953">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="localhost:9999/Slow"
+    name="ztest slow" checksum="284236244">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>0</relevance>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index df09619..2ff1540 100644 (file)
@@ -9,7 +9,7 @@
       <ccldirective name="and" value="AND"/>
       <ccldirective name="or" value="OR"/>
       <ccldirective name="not" value="NOT"/>
-      <rank cluster="yes"/>
+      <rank cluster="yes" debug="yes"/>
 
       <include src="z3950_indexdata_com_marc.xml"/>
 
index 0c5a8f4..eac04e1 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 6da323e..6d3019b 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 7bf8d1f..56bd95d 100644 (file)
@@ -6,42 +6,64 @@
 <start>0</start>
 <num>3</num>
 <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="z3950.indexdata.com/gils#DUMMY"
- name="gils" checksum="4276870208">
-<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>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>11882</relevance>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <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="z3950.indexdata.com/gils#DUMMY"
+    name="gils" checksum="4276870208">
+  <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>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>11882</relevance>
+ <relevance_info>
+computer: field=description vecf[1] += mult(3) / length(35);
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882);
+score = relevance(11882);
+ </relevance_info>
+ <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils#DUMMY"
- name="gils" checksum="2559989591">
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
-<md-description tag="513">1972-1978</md-description>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title groundwater resource maps county series author medium book</recid>
+ <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+ <location id="z3950.indexdata.com/gils#DUMMY"
+    name="gils" checksum="2559989591">
+  <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+  <md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+  <md-description tag="513">1972-1978</md-description>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title groundwater resource maps county series author medium book</recid>
 </hit>
 <hit>
-
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils#DUMMY"
- name="gils" checksum="843108974">
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description tag="520">This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
-<md-description tag="513">1907-PRESENT</md-description>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title oil gas drilling author medium book</recid>
+ <md-title>OIL/GAS DRILLING</md-title>
+ <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+ <location id="z3950.indexdata.com/gils#DUMMY"
+    name="gils" checksum="843108974">
+  <md-title>OIL/GAS DRILLING</md-title>
+  <md-description tag="520">This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+  <md-description tag="513">1907-PRESENT</md-description>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title oil gas drilling author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 116b479..a7ee6bb 100644 (file)
@@ -1,28 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <record>
-<recid>content: title how to program a computer author jack collins medium book</recid>
-<nextrecid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</nextrecid>
-<activeclients>0</activeclients>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-lccn>11224466</md-lccn>
-<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-id>11224467</md-id>
-<md-lccn>11224467</md-lccn>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-id>11224466</md-id>
-<md-lccn>11224466</md-lccn>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
+ <nextrecid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</nextrecid>
+ <activeclients>0</activeclients>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <md-lccn>11224466</md-lccn>
+ <md-lccn>11224467</md-lccn>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-id>11224467</md-id>
+  <md-lccn>11224467</md-lccn>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-id>11224466</md-id>
+  <md-lccn>11224466</md-lccn>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
 </record>
\ No newline at end of file
index 77035ab..1eb6dfd 100644 (file)
@@ -6,27 +6,51 @@
 <start>0</start>
 <num>3</num>
 <hit>
-
-<md-title>UTAH GEOCHROMOMETRY</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2074161109">
-<md-title>UTAH GEOCHROMOMETRY</md-title></location>
-<relevance>86304</relevance>
-<recid>content: title utah geochromometry author medium book</recid>
+ <md-title>UTAH GEOCHROMOMETRY</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2074161109">
+  <md-title>UTAH GEOCHROMOMETRY</md-title>
+ </location>
+ <count>1</count>
+ <relevance>86304</relevance>
+ <relevance_info>
+utah: field=title vecf[1] += mult(6) / length(2);
+idf[1] = log(((1 + total(3))/termoccur(3));
+utah: relevance += 100000 * vecf[1](3.000000) * idf[1](0.287682) (86304);
+score = relevance(86304);
+ </relevance_info>
+ <recid>content: title utah geochromometry author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1725776531">
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title></location>
-<relevance>57536</relevance>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1725776531">
+  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
+ </location>
+ <count>1</count>
+ <relevance>57536</relevance>
+ <relevance_info>
+utah: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(3))/termoccur(3));
+utah: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536);
+score = relevance(57536);
+ </relevance_info>
+ <recid>content: title utah earthquake epicenters author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1899968820">
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title></location>
-<relevance>28768</relevance>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1899968820">
+  <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
+ </location>
+ <count>1</count>
+ <relevance>28768</relevance>
+ <relevance_info>
+utah: field=title vecf[1] += mult(6) / length(6);
+idf[1] = log(((1 + total(3))/termoccur(3));
+utah: relevance += 100000 * vecf[1](1.000000) * idf[1](0.287682) (28768);
+score = relevance(28768);
+ </relevance_info>
+ <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 5268bf3..b8939f0 100644 (file)
@@ -6,33 +6,55 @@
 <start>0</start>
 <num>3</num>
 <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="z3950.indexdata.com/gils"
- name="gils" checksum="2074161109">
-<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>
-<relevance>11882</relevance>
-<recid>content: title bibliography of maine geology</recid>
+ <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="z3950.indexdata.com/gils"
+    name="gils" checksum="2074161109">
+  <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>
+ <count>1</count>
+ <relevance>11882</relevance>
+ <relevance_info>
+computer: field=description vecf[1] += mult(3) / length(35);
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.085714) * idf[1](1.386294) (11882);
+score = relevance(11882);
+ </relevance_info>
+ <recid>content: title bibliography of maine geology</recid>
 </hit>
 <hit>
-
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1899968820">
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description></location>
-<relevance>0</relevance>
-<recid>content: title groundwater resource maps county series</recid>
+ <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1899968820">
+  <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+  <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title groundwater resource maps county series</recid>
 </hit>
 <hit>
-
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1725776531">
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description></location>
-<relevance>0</relevance>
-<recid>content: title oil gas drilling</recid>
+ <md-title>OIL/GAS DRILLING</md-title>
+ <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1725776531">
+  <md-title>OIL/GAS DRILLING</md-title>
+  <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](1.386294) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title oil gas drilling</recid>
 </hit>
 </show>
\ No newline at end of file
index 011d4fc..3175195 100644 (file)
 <start>0</start>
 <num>8</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>50262</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>50262</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.251314) (50262);
+score = relevance(50262);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>50262</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>50262</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.251314) (50262);
+score = relevance(50262);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>21541</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>21541</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.251314) (21541);
+score = relevance(21541);
+ </relevance_info>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>21541</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>21541</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.251314) (21541);
+score = relevance(21541);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>20942</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>20942</relevance>
+ <relevance_info>
+computer: field=title-remainder vecf[1] += mult(5) / length(6);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.251314) (20942);
+score = relevance(20942);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>15078</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>15078</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.251314) (15078);
+score = relevance(15078);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>15078</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>15078</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.251314) (15078);
+score = relevance(15078);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(7));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.251314) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index ae79c68..1d2ce8e 100644 (file)
 <start>0</start>
 <num>8</num>
 <hit>
-
-<md-title>APPLIED GEOLOGY FILE</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2074161109">
-<md-title>APPLIED GEOLOGY FILE</md-title></location>
-<relevance>0</relevance>
-<recid>content: title applied geology file author medium book</recid>
+ <md-title>APPLIED GEOLOGY FILE</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2074161109">
+  <md-title>APPLIED GEOLOGY FILE</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title applied geology file author medium book</recid>
 </hit>
 <hit>
-
-<md-title>ELECTRIC LOG LIBRARY</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2770930265">
-<md-title>ELECTRIC LOG LIBRARY</md-title></location>
-<relevance>0</relevance>
-<recid>content: title electric log library author medium book</recid>
+ <md-title>ELECTRIC LOG LIBRARY</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2770930265">
+  <md-title>ELECTRIC LOG LIBRARY</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title electric log library author medium book</recid>
 </hit>
 <hit>
-
-<md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2945122554">
-<md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title></location>
-<relevance>0</relevance>
-<recid>content: title isotopic dates of rocks and minerals author medium book</recid>
+ <md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2945122554">
+  <md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title isotopic dates of rocks and minerals author medium book</recid>
 </hit>
 <hit>
-
-<md-title>MINE MAP INDEX</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2422545687">
-<md-title>MINE MAP INDEX</md-title></location>
-<relevance>0</relevance>
-<recid>content: title mine map index author medium book</recid>
+ <md-title>MINE MAP INDEX</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2422545687">
+  <md-title>MINE MAP INDEX</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title mine map index author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH CRIB FILE</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2248353398">
-<md-title>UTAH CRIB FILE</md-title></location>
-<relevance>0</relevance>
-<recid>content: title utah crib file author medium book</recid>
+ <md-title>UTAH CRIB FILE</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2248353398">
+  <md-title>UTAH CRIB FILE</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title utah crib file author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1725776531">
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title></location>
-<relevance>0</relevance>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1725776531">
+  <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title utah earthquake epicenters author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2596737976">
-<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title></location>
-<relevance>0</relevance>
-<recid>content: title utah geologic map bibliography author medium book</recid>
+ <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2596737976">
+  <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title utah geologic map bibliography author medium book</recid>
 </hit>
 <hit>
-
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1899968820">
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title></location>
-<relevance>0</relevance>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1899968820">
+  <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(8))/termoccur(0));
+the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index f0001db..6b0b192 100644 (file)
 <start>0</start>
 <num>5</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3659474317">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>31823</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3659474317">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>31823</relevance>
+ <relevance_info>
+the: field=title vecf[1] += mult(6) / length(5);
+the: field=description vecf[1] += mult(6) / length(11);
+idf[1] = log(((1 + total(5))/termoccur(5));
+the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.182322) (31823);
+score = relevance(31823);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="2962705161">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>27348</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="2962705161">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>27348</relevance>
+ <relevance_info>
+the: field=title vecf[1] += mult(6) / length(4);
+idf[1] = log(((1 + total(5))/termoccur(5));
+the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.182322) (27348);
+score = relevance(27348);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3136897450">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>22790</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3136897450">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>22790</relevance>
+ <relevance_info>
+the: field=title-remainder vecf[1] += mult(5) / length(4);
+idf[1] = log(((1 + total(5))/termoccur(5));
+the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.182322) (22790);
+score = relevance(22790);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3485282028">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>10939</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3485282028">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>10939</relevance>
+ <relevance_info>
+the: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(5))/termoccur(5));
+the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.182322) (10939);
+score = relevance(10939);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="marc" checksum="3311089739">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>6511</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="marc" checksum="3311089739">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>6511</relevance>
+ <relevance_info>
+the: field=title-remainder vecf[1] += mult(5) / length(14);
+idf[1] = log(((1 + total(5))/termoccur(5));
+the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.182322) (6511);
+score = relevance(6511);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 590ad27..3ae7d3e 100644 (file)
@@ -6,26 +6,33 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(1))/termoccur(0));
+louis: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index a0046a5..23d4c1d 100644 (file)
@@ -6,27 +6,36 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <relevance_info>
+greece: field=title vecf[1] += mult(6) / length(5);
+greece: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121);
+score = relevance(291121);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index f994402..3ad00a3 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(5);
+computer: field=title vecf[1] += mult(6) / length(5);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160);
+score = relevance(48160);
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>40134</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <relevance_info>
+computer: field=title-remainder vecf[1] += mult(5) / length(6);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722);
+score = relevance(16722);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>12040</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 590ad27..3ae7d3e 100644 (file)
@@ -6,26 +6,33 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(1))/termoccur(0));
+louis: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 5a33609..f2f5103 100644 (file)
@@ -1,28 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <record>
-<recid>content: title how to program a computer author jack collins medium book</recid>
-<nextrecid>content: title computer science technology author medium book</nextrecid>
-<activeclients>0</activeclients>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-lccn>11224466</md-lccn>
-<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-id>11224467</md-id>
-<md-lccn>11224467</md-lccn>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-id>11224466</md-id>
-<md-lccn>11224466</md-lccn>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
+ <nextrecid>content: title computer science technology author medium book</nextrecid>
+ <activeclients>0</activeclients>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <md-lccn>11224466</md-lccn>
+ <md-lccn>11224467</md-lccn>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-id>11224467</md-id>
+  <md-lccn>11224467</md-lccn>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-id>11224466</md-id>
+  <md-lccn>11224466</md-lccn>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
 </record>
\ No newline at end of file
index a0046a5..23d4c1d 100644 (file)
@@ -6,27 +6,36 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <relevance_info>
+greece: field=title vecf[1] += mult(6) / length(5);
+greece: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121);
+score = relevance(291121);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index a0046a5..23d4c1d 100644 (file)
@@ -6,27 +6,36 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <relevance_info>
+greece: field=title vecf[1] += mult(6) / length(5);
+greece: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121);
+score = relevance(291121);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index a0046a5..23d4c1d 100644 (file)
@@ -6,27 +6,36 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <relevance_info>
+greece: field=title vecf[1] += mult(6) / length(5);
+greece: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121);
+score = relevance(291121);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index a0046a5..23d4c1d 100644 (file)
@@ -6,27 +6,36 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <relevance_info>
+greece: field=title vecf[1] += mult(6) / length(5);
+greece: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[1](4.200000) * idf[1](0.693147) (291121);
+score = relevance(291121);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 9820ddf..41fdbea 100644 (file)
@@ -6,24 +6,32 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>59412</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>59412</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(1))/termoccur(1));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.693147) (59412);
+score = relevance(59412);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 59c4719..368584d 100644 (file)
 <start>0</start>
 <num>4</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>102165</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(4))/termoccur(3));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165);
+score = relevance(102165);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>102165</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(4))/termoccur(3));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.510826) (102165);
+score = relevance(102165);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>30649</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>30649</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(4))/termoccur(3));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.510826) (30649);
+score = relevance(30649);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(4))/termoccur(3));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.510826) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 0f44b56..3acd5ed 100644 (file)
@@ -6,49 +6,65 @@
 <start>0</start>
 <num>2</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>60819</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>60819</relevance>
+ <relevance_info>
+adam: field=author vecf[1] += mult(3) / length(2);
+idf[1] = log(((1 + total(2))/termoccur(2));
+adam: relevance += 100000 * vecf[1](1.500000) * idf[1](0.405465) (60819);
+score = relevance(60819);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 <hit>
-
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>Four psalms</md-title>
-<md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
-<md-date>1980</md-date>
-<md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-subject>Bible</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>40546</relevance>
-<recid>content: title four psalms author smith george adam medium book</recid>
+ <md-title>Four psalms</md-title>
+ <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+ <md-date>1980</md-date>
+ <md-author>Smith, George Adam</md-author>
+ <md-subject>Bible</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>Four psalms</md-title>
+  <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
+  <md-date>1980</md-date>
+  <md-author>Smith, George Adam</md-author>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>40546</relevance>
+ <relevance_info>
+adam: field=author vecf[1] += mult(3) / length(3);
+idf[1] = log(((1 + total(2))/termoccur(2));
+adam: relevance += 100000 * vecf[1](1.000000) * idf[1](0.405465) (40546);
+score = relevance(40546);
+ </relevance_info>
+ <recid>content: title four psalms author smith george adam medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 229adc5..4020735 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index ffaa7f0..abbdbbb 100644 (file)
@@ -6,27 +6,39 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-subject>Greek literature</md-subject>
-<md-subject>Philosophy, Ancient</md-subject>
-<md-subject>Greece</md-subject>
-<md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-description tag="504">Includes bibliographical references</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>374298</relevance>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-subject>Greek literature</md-subject>
+ <md-subject>Philosophy, Ancient</md-subject>
+ <md-subject>Greece</md-subject>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-subject>Greek literature</md-subject>
+  <md-subject>Philosophy, Ancient</md-subject>
+  <md-subject>Greece</md-subject>
+  <md-description tag="500">Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-description tag="504">Includes bibliographical references</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>374298</relevance>
+ <relevance_info>
+teachers: field=title vecf[1] += mult(6) / length(5);
+greece: field=title vecf[2] += mult(6) / length(5);
+greece: field=subject vecf[2] += mult(3) / length(1);
+idf[1] = log(((1 + total(1))/termoccur(1));
+teachers: relevance += 100000 * vecf[1](1.200000) * idf[1](0.693147) (83177);
+idf[2] = log(((1 + total(1))/termoccur(1));
+greece: relevance += 100000 * vecf[2](4.200000) * idf[2](0.693147) (291121);
+score = relevance(374298);
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 91d6218..3ffbc56 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-subject>Bible. O.T</md-subject>
-<md-subject>Bible</md-subject>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-subject>Bible. O.T</md-subject>
+ <md-subject>Bible</md-subject>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-subject>Bible. O.T</md-subject>
+  <md-subject>Bible</md-subject>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-subject>Radioisotope scanning</md-subject>
-<md-subject>Scintillation cameras</md-subject>
-<md-subject>Imaging systems in medicine</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-subject>Radioisotope scanning</md-subject>
+ <md-subject>Scintillation cameras</md-subject>
+ <md-subject>Imaging systems in medicine</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-subject>Radioisotope scanning</md-subject>
+  <md-subject>Scintillation cameras</md-subject>
+  <md-subject>Imaging systems in medicine</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Optical pattern recognition</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Optical pattern recognition</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-subject>Universities and colleges</md-subject>
-<md-subject>Community colleges</md-subject>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-subject>Universities and colleges</md-subject>
+ <md-subject>Community colleges</md-subject>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-subject>Universities and colleges</md-subject>
+  <md-subject>Community colleges</md-subject>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-subject>Cartography</md-subject>
-<md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-subject>Cartography</md-subject>
+ <md-subject>Puget Sound region (Wash.)</md-subject>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-subject>Cartography</md-subject>
+  <md-subject>Puget Sound region (Wash.)</md-subject>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-subject>Tomography</md-subject>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-subject>Tomography</md-subject>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-subject>Tomography</md-subject>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <md-subject>Computers</md-subject>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-subject>Computers</md-subject>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-subject>Railroads</md-subject>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-subject>Railroads</md-subject>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-subject>Railroads</md-subject>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d3d451e..85a1b1c 100644 (file)
@@ -46,6 +46,7 @@
 
     <service>
       <timeout session="30" z3950_operation="20" z3950_session="40"/>
+      <rank debug="yes"/>
       <metadata name="url" merge="unique"/>
       <metadata name="title" brief="yes" sortkey="skiparticle" merge="longest" rank="6"/>
       <metadata name="title-remainder" brief="yes" merge="longest" rank="5"/>
index 30e9aff..89bbf2d 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 821e962..a6a3dfb 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 608c8d7..a8a5f9f 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index e61d6ce..67eab02 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 2f16bf0..8182c24 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>72241</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>72241</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+computer: field=subject vecf[1] += mult(3) / length(1);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](3.600000) * idf[1](0.200671) (72241);
+score = relevance(72241);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(5);
+computer: field=title vecf[1] += mult(6) / length(5);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160);
+score = relevance(48160);
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>30100</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>30100</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(4);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](1.500000) * idf[1](0.200671) (30100);
+score = relevance(30100);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <relevance_info>
+computer: field=title-remainder vecf[1] += mult(5) / length(6);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722);
+score = relevance(16722);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
-<md-test-usersetting-2>test-usersetting-2 data: 
-        YYYYYYYYY</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+        YYYYYYYYY</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 0c2b760..a38115c 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
- name="ztest-db1" checksum="1300880726">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1300880726">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index 0c2b760..a38115c 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
- name="ztest-db1" checksum="1300880726">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1300880726">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index 0c2b760..a38115c 100644 (file)
@@ -6,18 +6,20 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
- name="ztest-db1" checksum="1300880726">
-<md-title>The religious teachers of Greece</md-title>
-<md-date>1972</md-date>
-<md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>291121</relevance>
-<recid>content: title the religious teachers of greece author adam james</recid>
+ <md-title>The religious teachers of Greece</md-title>
+ <md-date>1972</md-date>
+ <md-author>Adam, James</md-author>
+ <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1300880726">
+  <md-title>The religious teachers of Greece</md-title>
+  <md-date>1972</md-date>
+  <md-author>Adam, James</md-author>
+  <md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>291121</relevance>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index 69e0dfa..3542249 100644 (file)
@@ -6,20 +6,22 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
- name="ztest-db1" checksum="2981078110">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>59412</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2981078110">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>59412</relevance>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 </show>
\ No newline at end of file
index e69d6ea..a97fcf5 100644 (file)
@@ -6,56 +6,64 @@
 <start>0</start>
 <num>4</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="1487286940">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1487286940">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
- name="ztest-db1" checksum="3541567481">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3541567481">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1"
- name="ztest-db1" checksum="2234182525">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>30649</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2234182525">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>30649</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="740391355">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="740391355">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 2d2dd41..fe8fde5 100644 (file)
@@ -7,20 +7,22 @@
 <start>0</start>
 <num>1</num>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
- name="ztest-db1" checksum="2981078110">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>59412</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2981078110">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>59412</relevance>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 </show>
\ No newline at end of file
index fd0bdb2..a62fc41 100644 (file)
@@ -7,56 +7,64 @@
 <start>0</start>
 <num>4</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="1487286940">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1487286940">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
- name="ztest-db1" checksum="3541567481">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3541567481">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1"
- name="ztest-db1" checksum="2234182525">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>30649</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2234182525">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>30649</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="740391355">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="740391355">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index fd0bdb2..a62fc41 100644 (file)
@@ -7,56 +7,64 @@
 <start>0</start>
 <num>4</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="1487286940">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1487286940">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
- name="ztest-db1" checksum="3541567481">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3541567481">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1"
- name="ztest-db1" checksum="2234182525">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>30649</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2234182525">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>30649</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="740391355">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="740391355">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 3367e01..053919b 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="Target-1"
- name="ztest-db1" checksum="2047776311">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<location id="Target-1"
- name="ztest-db1" checksum="1300880726">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2047776311">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1300880726">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="1487286940">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>40134</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1487286940">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
- name="ztest-db1" checksum="3541567481">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3541567481">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="Target-1"
- name="ztest-db1" checksum="3727973695">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3727973695">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description>Cover title</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <recid>content: title a plan for community college computer development</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
- name="ztest-db1" checksum="2981078110">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2981078110">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="Target-1"
- name="ztest-db1" checksum="4288463066">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="4288463066">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description>Scale of maps ca. 1:1,000,000</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <recid>content: title the puget sound region author mairs john w</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="Target-1"
- name="ztest-db1" checksum="2794671896">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2794671896">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1"
- name="ztest-db1" checksum="2234182525">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>12040</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2234182525">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="740391355">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="740391355">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index fd0bdb2..a62fc41 100644 (file)
@@ -7,56 +7,64 @@
 <start>0</start>
 <num>4</num>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="1487286940">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title computer science technology</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="1487286940">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title computer science technology</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
- name="ztest-db1" checksum="3541567481">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Hebrew and Greek; introductions in English</md-description>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>102165</relevance>
-<recid>content: title the computer bible</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="Target-1"
+    name="ztest-db1" checksum="3541567481">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description>Hebrew and Greek; introductions in English</md-description>
+  <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>102165</relevance>
+ <recid>content: title the computer bible</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1"
- name="ztest-db1" checksum="2234182525">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>30649</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="Target-1"
+    name="ztest-db1" checksum="2234182525">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>30649</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1"
- name="ztest-db1" checksum="740391355">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="Target-1"
+    name="ztest-db1" checksum="740391355">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 05c0ac8..b848964 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Adobe Illustrator for the Mac</md-title>
-<md-title-remainder>fast &amp; easy</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="739120627">
-<md-title>Adobe Illustrator for the Mac</md-title>
-<md-title-remainder>fast &amp; easy</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author></location>
-<relevance>50734</relevance>
-<recid>content: title adobe illustrator for the mac author woodward c michael</recid>
+ <md-title>Adobe Illustrator for the Mac</md-title>
+ <md-title-remainder>fast &amp; easy</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Woodward, C. Michael</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="739120627">
+  <md-title>Adobe Illustrator for the Mac</md-title>
+  <md-title-remainder>fast &amp; easy</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Woodward, C. Michael</md-author>
+ </location>
+ <count>1</count>
+ <relevance>50734</relevance>
+ <recid>content: title adobe illustrator for the mac author woodward c michael</recid>
 </hit>
 <hit>
-
-<md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date><location id="Target-2"
- name="LOC-SOLR" checksum="3541567482">
-<md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date></location>
-<relevance>50734</relevance>
-<recid>content: title advanced computer performance modeling and simulation</recid>
+ <md-title>Advanced computer performance modeling and simulation</md-title>
+ <md-date>1998</md-date>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3541567482">
+  <md-title>Advanced computer performance modeling and simulation</md-title>
+  <md-date>1998</md-date>
+ </location>
+ <count>1</count>
+ <relevance>50734</relevance>
+ <recid>content: title advanced computer performance modeling and simulation</recid>
 </hit>
 <hit>
-
-<md-title>Cyberterrorism and computer crimes</md-title>
-<md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="4100786124">
-<md-title>Cyberterrorism and computer crimes</md-title>
-<md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description></location>
-<relevance>50734</relevance>
-<recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
+ <md-title>Cyberterrorism and computer crimes</md-title>
+ <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Aldrich, Richard W</md-author>
+ <md-description>&quot;April 2000.&quot;</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="4100786124">
+  <md-title>Cyberterrorism and computer crimes</md-title>
+  <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Aldrich, Richard W</md-author>
+  <md-description>&quot;April 2000.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>50734</relevance>
+ <recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
 </hit>
 <hit>
-
-<md-title>Software design and usability</md-title>
-<md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="552714413">
-<md-title>Software design and usability</md-title>
-<md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author></location>
-<relevance>46506</relevance>
-<recid>content: title software design and usability author kaasgaard klaus</recid>
+ <md-title>Software design and usability</md-title>
+ <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Kaasgaard, Klaus</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="552714413">
+  <md-title>Software design and usability</md-title>
+  <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Kaasgaard, Klaus</md-author>
+ </location>
+ <count>1</count>
+ <relevance>46506</relevance>
+ <recid>content: title software design and usability author kaasgaard klaus</recid>
 </hit>
 <hit>
-
-<md-title>Everything you need to know about the dangers of computer hacking</md-title>
-<md-date>2000</md-date>
-<md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="1672422426">
-<md-title>Everything you need to know about the dangers of computer hacking</md-title>
-<md-date>2000</md-date>
-<md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description></location>
-<relevance>44474</relevance>
-<recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
+ <md-title>Everything you need to know about the dangers of computer hacking</md-title>
+ <md-date>2000</md-date>
+ <md-author>Knittel, John</md-author>
+ <md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="1672422426">
+  <md-title>Everything you need to know about the dangers of computer hacking</md-title>
+  <md-date>2000</md-date>
+  <md-author>Knittel, John</md-author>
+  <md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description>
+ </location>
+ <count>1</count>
+ <relevance>44474</relevance>
+ <recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
 </hit>
 <hit>
-
-<md-title>Computer peripherals</md-title>
-<md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="550172955">
-<md-title>Computer peripherals</md-title>
-<md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author></location>
-<relevance>44392</relevance>
-<recid>content: title computer peripherals author cook barry m</recid>
+ <md-title>Computer peripherals</md-title>
+ <md-date>1995</md-date>
+ <md-author>Cook, Barry M</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="550172955">
+  <md-title>Computer peripherals</md-title>
+  <md-date>1995</md-date>
+  <md-author>Cook, Barry M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>44392</relevance>
+ <recid>content: title computer peripherals author cook barry m</recid>
 </hit>
 <hit>
-
-<md-title>Kids&apos; computer book</md-title>
-<md-date>1994</md-date>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="2419318011">
-<md-title>Kids&apos; computer book</md-title>
-<md-date>1994</md-date>
-<md-description>&quot;For kids and their parents&quot;--Cover</md-description>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description></location>
-<relevance>38990</relevance>
-<recid>content: title kids computer book</recid>
+ <md-title>Kids&apos; computer book</md-title>
+ <md-date>1994</md-date>
+ <md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="2419318011">
+  <md-title>Kids&apos; computer book</md-title>
+  <md-date>1994</md-date>
+  <md-description>&quot;For kids and their parents&quot;--Cover</md-description>
+  <md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38990</relevance>
+ <recid>content: title kids computer book</recid>
 </hit>
 <hit>
-
-<md-title>Computer friendly</md-title>
-<md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="3353890539">
-<md-title>Computer friendly</md-title>
-<md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author></location>
-<relevance>38050</relevance>
-<recid>content: title computer friendly author steinbacher raymond</recid>
+ <md-title>Computer friendly</md-title>
+ <md-date>1999</md-date>
+ <md-author>Steinbacher, Raymond</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3353890539">
+  <md-title>Computer friendly</md-title>
+  <md-date>1999</md-date>
+  <md-author>Steinbacher, Raymond</md-author>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title computer friendly author steinbacher raymond</recid>
 </hit>
 <hit>
-
-<md-title>Computer misuse</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="2234182526">
-<md-title>Computer misuse</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;May 1999.&quot;</md-description>
-<md-description>&quot;NZLC R54&quot;--T.p. verso</md-description>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description></location>
-<relevance>38050</relevance>
-<recid>content: title computer misuse</recid>
+ <md-title>Computer misuse</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="2234182526">
+  <md-title>Computer misuse</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;May 1999.&quot;</md-description>
+  <md-description>&quot;NZLC R54&quot;--T.p. verso</md-description>
+  <md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title computer misuse</recid>
 </hit>
 <hit>
-
-<md-title>Computer networking</md-title>
-<md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="1669880968">
-<md-title>Computer networking</md-title>
-<md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author></location>
-<relevance>38050</relevance>
-<recid>content: title computer networking author ross keith w</recid>
+ <md-title>Computer networking</md-title>
+ <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Ross, Keith W</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="1669880968">
+  <md-title>Computer networking</md-title>
+  <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Ross, Keith W</md-author>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title computer networking author ross keith w</recid>
 </hit>
 <hit>
-
-<md-title>CorelDRAW 8 for Windows</md-title>
-<md-date>1998</md-date>
-<md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="1297068540">
-<md-title>CorelDRAW 8 for Windows</md-title>
-<md-date>1998</md-date>
-<md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>38050</relevance>
-<recid>content: title coreldraw for windows author davis phyllis</recid>
+ <md-title>CorelDRAW 8 for Windows</md-title>
+ <md-date>1998</md-date>
+ <md-author>Davis, Phyllis</md-author>
+ <md-description>Includes index</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="1297068540">
+  <md-title>CorelDRAW 8 for Windows</md-title>
+  <md-date>1998</md-date>
+  <md-author>Davis, Phyllis</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title coreldraw for windows author davis phyllis</recid>
 </hit>
 <hit>
-
-<md-title>Quicken 2000 for the Mac</md-title>
-<md-title-remainder>the official guide</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Langer, Maria</md-author>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="2605724225">
-<md-title>Quicken 2000 for the Mac</md-title>
-<md-title-remainder>the official guide</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Langer, Maria</md-author>
-<md-description>Includes index</md-description>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description></location>
-<relevance>38050</relevance>
-<recid>content: title quicken for the mac author langer maria</recid>
+ <md-title>Quicken 2000 for the Mac</md-title>
+ <md-title-remainder>the official guide</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Langer, Maria</md-author>
+ <md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="2605724225">
+  <md-title>Quicken 2000 for the Mac</md-title>
+  <md-title-remainder>the official guide</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Langer, Maria</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title quicken for the mac author langer maria</recid>
 </hit>
 <hit>
-
-<md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date><location id="Target-2"
- name="LOC-SOLR" checksum="2604453496">
-<md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date></location>
-<relevance>38050</relevance>
-<recid>content: title sicherheit und schutz im netz</recid>
+ <md-title>Sicherheit und Schutz im Netz</md-title>
+ <md-date>1998</md-date>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="2604453496">
+  <md-title>Sicherheit und Schutz im Netz</md-title>
+  <md-date>1998</md-date>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title sicherheit und schutz im netz</recid>
 </hit>
 <hit>
-
-<md-title>Unix Secure Shell</md-title>
-<md-date>1999</md-date>
-<md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="3726702967">
-<md-title>Unix Secure Shell</md-title>
-<md-date>1999</md-date>
-<md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>38050</relevance>
-<recid>content: title unix secure shell author carasik anne h</recid>
+ <md-title>Unix Secure Shell</md-title>
+ <md-date>1999</md-date>
+ <md-author>Carasik, Anne H</md-author>
+ <md-description>Includes index</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3726702967">
+  <md-title>Unix Secure Shell</md-title>
+  <md-date>1999</md-date>
+  <md-author>Carasik, Anne H</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38050</relevance>
+ <recid>content: title unix secure shell author carasik anne h</recid>
 </hit>
 <hit>
-
-<md-title>Eight International Conference on Computer Communications and Networks</md-title>
-<md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="3166213596">
-<md-title>Eight International Conference on Computer Communications and Networks</md-title>
-<md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description></location>
-<relevance>35936</relevance>
-<recid>content: title eight international conference on computer communications and networks</recid>
+ <md-title>Eight International Conference on Computer Communications and Networks</md-title>
+ <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3166213596">
+  <md-title>Eight International Conference on Computer Communications and Networks</md-title>
+  <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description>
+ </location>
+ <count>1</count>
+ <relevance>35936</relevance>
+ <recid>content: title eight international conference on computer communications and networks</recid>
 </hit>
 <hit>
-
-<md-title>Building storage networks</md-title>
-<md-date>2000</md-date>
-<md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="3164942867">
-<md-title>Building storage networks</md-title>
-<md-date>2000</md-date>
-<md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>33822</relevance>
-<recid>content: title building storage networks author farley marc</recid>
+ <md-title>Building storage networks</md-title>
+ <md-date>2000</md-date>
+ <md-author>Farley, Marc</md-author>
+ <md-description>Includes index</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3164942867">
+  <md-title>Building storage networks</md-title>
+  <md-date>2000</md-date>
+  <md-author>Farley, Marc</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33822</relevance>
+ <recid>content: title building storage networks author farley marc</recid>
 </hit>
 <hit>
-
-<md-title>Complete CL</md-title>
-<md-title-remainder>the definitive control language programming guide</md-title-remainder>
-<md-date>1999</md-date>
-<md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="551443684">
-<md-title>Complete CL</md-title>
-<md-title-remainder>the definitive control language programming guide</md-title-remainder>
-<md-date>1999</md-date>
-<md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>33822</relevance>
-<recid>content: title complete cl author malaga ernie</recid>
+ <md-title>Complete CL</md-title>
+ <md-title-remainder>the definitive control language programming guide</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Malaga, Ernie</md-author>
+ <md-description>Includes index</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="551443684">
+  <md-title>Complete CL</md-title>
+  <md-title-remainder>the definitive control language programming guide</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Malaga, Ernie</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33822</relevance>
+ <recid>content: title complete cl author malaga ernie</recid>
 </hit>
 <hit>
-
-<md-title>3D games</md-title>
-<md-title-remainder>real-time rendering and software technology</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="4287192338">
-<md-title>3D games</md-title>
-<md-title-remainder>real-time rendering and software technology</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author></location>
-<relevance>33822</relevance>
-<recid>content: title d games author watt alan h</recid>
+ <md-title>3D games</md-title>
+ <md-title-remainder>real-time rendering and software technology</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Watt, Alan H</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="4287192338">
+  <md-title>3D games</md-title>
+  <md-title-remainder>real-time rendering and software technology</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Watt, Alan H</md-author>
+ </location>
+ <count>1</count>
+ <relevance>33822</relevance>
+ <recid>content: title d games author watt alan h</recid>
 </hit>
 <hit>
-
-<md-title>Java applications strategies for the AS/400</md-title>
-<md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author><location id="Target-2"
- name="LOC-SOLR" checksum="3351349081">
-<md-title>Java applications strategies for the AS/400</md-title>
-<md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author></location>
-<relevance>33822</relevance>
-<recid>content: title java applications strategies for the as author denoncourt don</recid>
+ <md-title>Java applications strategies for the AS/400</md-title>
+ <md-date>1999</md-date>
+ <md-author>Denoncourt, Don</md-author>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="3351349081">
+  <md-title>Java applications strategies for the AS/400</md-title>
+  <md-date>1999</md-date>
+  <md-author>Denoncourt, Don</md-author>
+ </location>
+ <count>1</count>
+ <relevance>33822</relevance>
+ <recid>content: title java applications strategies for the as author denoncourt don</recid>
 </hit>
 <hit>
-
-<md-title>Mastering algorithms with C</md-title>
-<md-date>1999</md-date>
-<md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="Target-2"
- name="LOC-SOLR" checksum="178631256">
-<md-title>Mastering algorithms with C</md-title>
-<md-date>1999</md-date>
-<md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
-<md-description>Includes index</md-description></location>
-<relevance>33822</relevance>
-<recid>content: title mastering algorithms with c author loudon kyle</recid>
+ <md-title>Mastering algorithms with C</md-title>
+ <md-date>1999</md-date>
+ <md-author>Loudon, Kyle</md-author>
+ <md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
+ <location id="Target-2"
+    name="LOC-SOLR" checksum="178631256">
+  <md-title>Mastering algorithms with C</md-title>
+  <md-date>1999</md-date>
+  <md-author>Loudon, Kyle</md-author>
+  <md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33822</relevance>
+ <recid>content: title mastering algorithms with c author loudon kyle</recid>
 </hit>
 </show>
\ No newline at end of file
index 1115b7d..af6f2b4 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(5);
+computer: field=title vecf[1] += mult(6) / length(5);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160);
+score = relevance(48160);
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>40134</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <relevance_info>
+computer: field=title-remainder vecf[1] += mult(5) / length(6);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722);
+score = relevance(16722);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author></location>
-<relevance>12040</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 1115b7d..af6f2b4 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2788512872">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2614320583">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2788512872">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2614320583">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(5);
+computer: field=title vecf[1] += mult(6) / length(5);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.200671) (48160);
+score = relevance(48160);
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3659474317">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>40134</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3659474317">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3136897450">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3136897450">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(3);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.200671) (40134);
+score = relevance(40134);
+ </relevance_info>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4182051184">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4182051184">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="4007858895">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="4007858895">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(7);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.200671) (17200);
+score = relevance(17200);
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3311089739">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3311089739">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <relevance_info>
+computer: field=title-remainder vecf[1] += mult(5) / length(6);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.200671) (16722);
+score = relevance(16722);
+ </relevance_info>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="2962705161">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="2962705161">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3833666606">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author></location>
-<relevance>12040</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3833666606">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <relevance_info>
+computer: field=title vecf[1] += mult(6) / length(10);
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.200671) (12040);
+score = relevance(12040);
+ </relevance_info>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
- name="Index Data MARC test server" checksum="3485282028">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="z3950.indexdata.com/marc"
+    name="Index Data MARC test server" checksum="3485282028">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(10))/termoccur(9));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.200671) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d8d07be..5eeb215 100644 (file)
@@ -6,27 +6,48 @@
 <start>0</start>
 <num>3</num>
 <hit>
-
-<md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="2074161109">
-<md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title></location>
-<relevance>0</relevance>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="2074161109">
+  <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(0));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1899968820">
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title></location>
-<relevance>0</relevance>
-<recid>content: title groundwater resource maps county series author medium book</recid>
+ <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1899968820">
+  <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(0));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title groundwater resource maps county series author medium book</recid>
 </hit>
 <hit>
-
-<md-title>OIL/GAS DRILLING</md-title><location id="z3950.indexdata.com/gils"
- name="Index Data GILS test server" checksum="1725776531">
-<md-title>OIL/GAS DRILLING</md-title></location>
-<relevance>0</relevance>
-<recid>content: title oil gas drilling author medium book</recid>
+ <md-title>OIL/GAS DRILLING</md-title>
+ <location id="z3950.indexdata.com/gils"
+    name="Index Data GILS test server" checksum="1725776531">
+  <md-title>OIL/GAS DRILLING</md-title>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <relevance_info>
+idf[1] = log(((1 + total(3))/termoccur(0));
+computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.000000) (0);
+score = relevance(0);
+ </relevance_info>
+ <recid>content: title oil gas drilling author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index c101e40..f44540c 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="488613273">
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium></location>
-<relevance>34675</relevance>
-<recid>content: title water author de villiers marq medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>1999</md-date>
+ <md-author>De Villiers, Marq</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Water</md-title>
+  <md-date>1999</md-date>
+  <md-author>De Villiers, Marq</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>34675</relevance>
+ <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
-
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>32306</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <md-title>Potable water and methods of detecting impurities</md-title>
+ <md-date>1899-1906</md-date>
+ <md-author>Baker, M. N</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1810338543">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1906</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1899</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>32306</relevance>
+ <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1037483384">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium></location>
-<relevance>30153</relevance>
-<recid>content: title water author majeed abdul medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Majeed, Abdul</md-author>
+ <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Majeed, Abdul</md-author>
+  <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>30153</relevance>
+ <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27613</relevance>
-<recid>content: title water author grant pamela medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Grant, Pamela</md-author>
+ <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Grant, Pamela</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27613</relevance>
+ <recid>content: title water author grant pamela medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2652095853">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27137</relevance>
-<recid>content: title water law author fisher d e medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-author>Fisher, D. E</md-author>
+ <md-description>Includes index</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-author>Fisher, D. E</md-author>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27137</relevance>
+ <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
-
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>26233</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+ <md-title>A Primer on fresh water</md-title>
+ <md-title-remainder>questions and answers</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>A Primer on fresh water</md-title>
+  <md-title-remainder>questions and answers</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>26233</relevance>
+ <recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="520611137">
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <md-title>Water and water supplies</md-title>
+ <md-date>1901</md-date>
+ <md-author>Thresh, John Clough</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Water and water supplies</md-title>
+  <md-date>1901</md-date>
+  <md-author>Thresh, John Clough</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999-2000</md-date>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1069481248">
-<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
-<md-date>2000</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;July 2000.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3749836075">
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>22614</relevance>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+ <md-date>1999-2000</md-date>
+ <md-description>&quot;September 1999.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+  <md-date>2000</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;July 2000.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+  <md-date>1999</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;September 1999.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>22614</relevance>
+ <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ <md-title>Water-supply</md-title>
+ <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+ <md-date>1896</md-date>
+ <md-author>Mason, William Pitt</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>Water-supply</md-title>
+  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+  <md-date>1896</md-date>
+  <md-author>Mason, William Pitt</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water supply author mason william pitt medium book</recid>
 </hit>
 <hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium></location>
-<relevance>21836</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <md-title>The law of waters and water rights</md-title>
+ <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Farnham, Henry P</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The law of waters and water rights</md-title>
+  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Farnham, Henry P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>21836</relevance>
+ <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20411</relevance>
-<recid>content: title water in press medium book</recid>
+ <md-title>Water, in press, 1998</md-title>
+ <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+ <md-date>1998-1999</md-date>
+ <md-description>With reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>Water, in press, 1998</md-title>
+  <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Water in press, 1997</md-title>
+  <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-description>Includes index</md-description>
+  <md-description>With reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20411</relevance>
+ <recid>content: title water in press medium book</recid>
 </hit>
 <hit>
-
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>20353</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+  <md-date>2000</md-date>
+  <md-description>&quot;May 2000.&quot;</md-description>
+  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
+  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>20353</relevance>
+ <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
 </hit>
 <hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19700</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ <md-title>A guide to Montana water quality regulation</md-title>
+ <md-date>1997</md-date>
+ <md-author>Bryan, Michelle</md-author>
+ <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="291719666">
+  <md-title>A guide to Montana water quality regulation</md-title>
+  <md-date>1997</md-date>
+  <md-author>Bryan, Michelle</md-author>
+  <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19700</relevance>
+ <recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19599</relevance>
-<recid>content: title water technology management medium book</recid>
+ <md-title>Water technology management</md-title>
+ <md-date>2001</md-date>
+ <md-description>Collection of articles with reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Water technology management</md-title>
+  <md-date>2001</md-date>
+  <md-description>Collection of articles with reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19599</relevance>
+ <recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
-
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19427</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ <md-date>1999</md-date>
+ <md-author>Bauer, Steve</md-author>
+ <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+  <md-date>1999</md-date>
+  <md-author>Bauer, Steve</md-author>
+  <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19427</relevance>
+ <recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
 </hit>
 <hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19297</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+ <md-date>1997</md-date>
+ <md-author>Saffran, Karen Anita</md-author>
+ <md-description>&quot;March 1997.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2908078765">
+  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+  <md-date>1997</md-date>
+  <md-author>Saffran, Karen Anita</md-author>
+  <md-description>&quot;March 1997.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19297</relevance>
+ <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
 </hit>
 <hit>
-
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium></location>
-<relevance>18845</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ <md-title>Surface water quality monitoring procedures manual</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;GI-252&quot;--Cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2780087309">
+  <md-title>Surface water quality monitoring procedures manual</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;June 1999.&quot;</md-description>
+  <md-description>&quot;GI-252&quot;--Cover</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18845</relevance>
+ <recid>content: title surface water quality monitoring procedures manual medium book</recid>
 </hit>
 <hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18393</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+ <md-title-remainder>proceedings</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+  <md-title-remainder>proceedings</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18393</relevance>
+ <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
 </hit>
 <hit>
-
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="4005818987">
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+ <md-date>1998</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4005818987">
+  <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+  <md-date>1998</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3296959556">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title water law medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3296959556">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index c8675c8..472432a 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="488613273">
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium></location>
-<relevance>34851</relevance>
-<recid>content: title water author de villiers marq medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>1999</md-date>
+ <md-author>De Villiers, Marq</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Water</md-title>
+  <md-date>1999</md-date>
+  <md-author>De Villiers, Marq</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>34851</relevance>
+ <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
-
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>32470</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <md-title>Potable water and methods of detecting impurities</md-title>
+ <md-date>1899-1906</md-date>
+ <md-author>Baker, M. N</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1810338543">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1906</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1899</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>32470</relevance>
+ <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1037483384">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium></location>
-<relevance>30305</relevance>
-<recid>content: title water author majeed abdul medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Majeed, Abdul</md-author>
+ <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Majeed, Abdul</md-author>
+  <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>30305</relevance>
+ <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27753</relevance>
-<recid>content: title water author grant pamela medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Grant, Pamela</md-author>
+ <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Grant, Pamela</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27753</relevance>
+ <recid>content: title water author grant pamela medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2652095853">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27274</relevance>
-<recid>content: title water law author fisher d e medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-author>Fisher, D. E</md-author>
+ <md-description>Includes index</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-author>Fisher, D. E</md-author>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27274</relevance>
+ <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
-
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>26365</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+ <md-title>A Primer on fresh water</md-title>
+ <md-title-remainder>questions and answers</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>A Primer on fresh water</md-title>
+  <md-title-remainder>questions and answers</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>26365</relevance>
+ <recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="520611137">
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22729</relevance>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <md-title>Water and water supplies</md-title>
+ <md-date>1901</md-date>
+ <md-author>Thresh, John Clough</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Water and water supplies</md-title>
+  <md-date>1901</md-date>
+  <md-author>Thresh, John Clough</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22729</relevance>
+ <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999-2000</md-date>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1069481248">
-<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
-<md-date>2000</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;July 2000.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3749836075">
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>22729</relevance>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+ <md-date>1999-2000</md-date>
+ <md-description>&quot;September 1999.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+  <md-date>2000</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;July 2000.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+  <md-date>1999</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;September 1999.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>22729</relevance>
+ <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22729</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ <md-title>Water-supply</md-title>
+ <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+ <md-date>1896</md-date>
+ <md-author>Mason, William Pitt</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>Water-supply</md-title>
+  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+  <md-date>1896</md-date>
+  <md-author>Mason, William Pitt</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22729</relevance>
+ <recid>content: title water supply author mason william pitt medium book</recid>
 </hit>
 <hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium></location>
-<relevance>21946</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <md-title>The law of waters and water rights</md-title>
+ <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Farnham, Henry P</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The law of waters and water rights</md-title>
+  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Farnham, Henry P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>21946</relevance>
+ <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water in press medium book</recid>
+ <md-title>Water, in press, 1998</md-title>
+ <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+ <md-date>1998-1999</md-date>
+ <md-description>With reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>Water, in press, 1998</md-title>
+  <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Water in press, 1997</md-title>
+  <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-description>Includes index</md-description>
+  <md-description>With reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20514</relevance>
+ <recid>content: title water in press medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1900-1901</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-description>Original imprint 1901, corrected to 1900</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2322304367">
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1901</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="707691898">
-<md-title>Water-power</md-title>
-<md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
-<md-date>1900</md-date>
-<md-author>Frizell, Joseph P</md-author>
-<md-description>Original imprint 1901, corrected to 1900</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water power author frizell joseph p medium book</recid>
+ <md-title>Water-power</md-title>
+ <md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
+ <md-date>1900-1901</md-date>
+ <md-author>Frizell, Joseph P</md-author>
+ <md-description>Original imprint 1901, corrected to 1900</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2322304367">
+  <md-title>Water-power</md-title>
+  <md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
+  <md-date>1901</md-date>
+  <md-author>Frizell, Joseph P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="707691898">
+  <md-title>Water-power</md-title>
+  <md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
+  <md-date>1900</md-date>
+  <md-author>Frizell, Joseph P</md-author>
+  <md-description>Original imprint 1901, corrected to 1900</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20514</relevance>
+ <recid>content: title water power author frizell joseph p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1903-1909</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3196059541">
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1909</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1000579097">
-<md-title>Water-supply engineering</md-title>
-<md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
-<md-date>1903</md-date>
-<md-author>Folwell, Amory Prescott</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20514</relevance>
-<recid>content: title water supply engineering author folwell amory prescott medium book</recid>
+ <md-title>Water-supply engineering</md-title>
+ <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
+ <md-date>1903-1909</md-date>
+ <md-author>Folwell, Amory Prescott</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3196059541">
+  <md-title>Water-supply engineering</md-title>
+  <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
+  <md-date>1909</md-date>
+  <md-author>Folwell, Amory Prescott</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1000579097">
+  <md-title>Water-supply engineering</md-title>
+  <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
+  <md-date>1903</md-date>
+  <md-author>Folwell, Amory Prescott</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20514</relevance>
+ <recid>content: title water supply engineering author folwell amory prescott medium book</recid>
 </hit>
 <hit>
-
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>20456</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+  <md-date>2000</md-date>
+  <md-description>&quot;May 2000.&quot;</md-description>
+  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
+  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>20456</relevance>
+ <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
 </hit>
 <hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19800</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ <md-title>A guide to Montana water quality regulation</md-title>
+ <md-date>1997</md-date>
+ <md-author>Bryan, Michelle</md-author>
+ <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="291719666">
+  <md-title>A guide to Montana water quality regulation</md-title>
+  <md-date>1997</md-date>
+  <md-author>Bryan, Michelle</md-author>
+  <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19800</relevance>
+ <recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19698</relevance>
-<recid>content: title water technology management medium book</recid>
+ <md-title>Water technology management</md-title>
+ <md-date>2001</md-date>
+ <md-description>Collection of articles with reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Water technology management</md-title>
+  <md-date>2001</md-date>
+  <md-description>Collection of articles with reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19698</relevance>
+ <recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
-
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19525</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ <md-date>1999</md-date>
+ <md-author>Bauer, Steve</md-author>
+ <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+  <md-date>1999</md-date>
+  <md-author>Bauer, Steve</md-author>
+  <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19525</relevance>
+ <recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
 </hit>
 <hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19395</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+ <md-date>1997</md-date>
+ <md-author>Saffran, Karen Anita</md-author>
+ <md-description>&quot;March 1997.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2908078765">
+  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+  <md-date>1997</md-date>
+  <md-author>Saffran, Karen Anita</md-author>
+  <md-description>&quot;March 1997.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19395</relevance>
+ <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
 </hit>
 <hit>
-
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium></location>
-<relevance>18940</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ <md-title>Surface water quality monitoring procedures manual</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;GI-252&quot;--Cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2780087309">
+  <md-title>Surface water quality monitoring procedures manual</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;June 1999.&quot;</md-description>
+  <md-description>&quot;GI-252&quot;--Cover</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18940</relevance>
+ <recid>content: title surface water quality monitoring procedures manual medium book</recid>
 </hit>
 <hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18486</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+ <md-title-remainder>proceedings</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+  <md-title-remainder>proceedings</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18486</relevance>
+ <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 8f79d6f..d225760 100644 (file)
@@ -6,31 +6,35 @@
 <start>0</start>
 <num>2</num>
 <hit>
-
-<md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3168968100">
-<md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
-<md-date>2000</md-date>
-<md-description>Title from cover</md-description>
-<md-description>&quot;January 2000.&quot;</md-description>
-<md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>121639</relevance>
-<recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
+ <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
+  <md-date>2000</md-date>
+  <md-description>Title from cover</md-description>
+  <md-description>&quot;January 2000.&quot;</md-description>
+  <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>121639</relevance>
+ <recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
 </hit>
 <hit>
-
-<md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
-<md-date>1872</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1554355631">
-<md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
-<md-date>1872</md-date>
-<md-medium>book</md-medium></location>
-<relevance>78196</relevance>
-<recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
+ <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
+ <md-date>1872</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
+  <md-date>1872</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>78196</relevance>
+ <recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index c101e40..f44540c 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="488613273">
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium></location>
-<relevance>34675</relevance>
-<recid>content: title water author de villiers marq medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>1999</md-date>
+ <md-author>De Villiers, Marq</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Water</md-title>
+  <md-date>1999</md-date>
+  <md-author>De Villiers, Marq</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>34675</relevance>
+ <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
-
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>32306</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <md-title>Potable water and methods of detecting impurities</md-title>
+ <md-date>1899-1906</md-date>
+ <md-author>Baker, M. N</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1810338543">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1906</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1899</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>32306</relevance>
+ <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1037483384">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium></location>
-<relevance>30153</relevance>
-<recid>content: title water author majeed abdul medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Majeed, Abdul</md-author>
+ <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Majeed, Abdul</md-author>
+  <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>30153</relevance>
+ <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27613</relevance>
-<recid>content: title water author grant pamela medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Grant, Pamela</md-author>
+ <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Grant, Pamela</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27613</relevance>
+ <recid>content: title water author grant pamela medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2652095853">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27137</relevance>
-<recid>content: title water law author fisher d e medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-author>Fisher, D. E</md-author>
+ <md-description>Includes index</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-author>Fisher, D. E</md-author>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27137</relevance>
+ <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
-
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>26233</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+ <md-title>A Primer on fresh water</md-title>
+ <md-title-remainder>questions and answers</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>A Primer on fresh water</md-title>
+  <md-title-remainder>questions and answers</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>26233</relevance>
+ <recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="520611137">
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <md-title>Water and water supplies</md-title>
+ <md-date>1901</md-date>
+ <md-author>Thresh, John Clough</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Water and water supplies</md-title>
+  <md-date>1901</md-date>
+  <md-author>Thresh, John Clough</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999-2000</md-date>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1069481248">
-<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
-<md-date>2000</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;July 2000.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3749836075">
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>22614</relevance>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+ <md-date>1999-2000</md-date>
+ <md-description>&quot;September 1999.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+  <md-date>2000</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;July 2000.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+  <md-date>1999</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;September 1999.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>22614</relevance>
+ <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ <md-title>Water-supply</md-title>
+ <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+ <md-date>1896</md-date>
+ <md-author>Mason, William Pitt</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>Water-supply</md-title>
+  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+  <md-date>1896</md-date>
+  <md-author>Mason, William Pitt</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water supply author mason william pitt medium book</recid>
 </hit>
 <hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium></location>
-<relevance>21836</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <md-title>The law of waters and water rights</md-title>
+ <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Farnham, Henry P</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The law of waters and water rights</md-title>
+  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Farnham, Henry P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>21836</relevance>
+ <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20411</relevance>
-<recid>content: title water in press medium book</recid>
+ <md-title>Water, in press, 1998</md-title>
+ <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+ <md-date>1998-1999</md-date>
+ <md-description>With reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>Water, in press, 1998</md-title>
+  <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Water in press, 1997</md-title>
+  <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-description>Includes index</md-description>
+  <md-description>With reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20411</relevance>
+ <recid>content: title water in press medium book</recid>
 </hit>
 <hit>
-
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>20353</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+  <md-date>2000</md-date>
+  <md-description>&quot;May 2000.&quot;</md-description>
+  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
+  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>20353</relevance>
+ <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
 </hit>
 <hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19700</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ <md-title>A guide to Montana water quality regulation</md-title>
+ <md-date>1997</md-date>
+ <md-author>Bryan, Michelle</md-author>
+ <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="291719666">
+  <md-title>A guide to Montana water quality regulation</md-title>
+  <md-date>1997</md-date>
+  <md-author>Bryan, Michelle</md-author>
+  <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19700</relevance>
+ <recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19599</relevance>
-<recid>content: title water technology management medium book</recid>
+ <md-title>Water technology management</md-title>
+ <md-date>2001</md-date>
+ <md-description>Collection of articles with reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Water technology management</md-title>
+  <md-date>2001</md-date>
+  <md-description>Collection of articles with reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19599</relevance>
+ <recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
-
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19427</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ <md-date>1999</md-date>
+ <md-author>Bauer, Steve</md-author>
+ <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+  <md-date>1999</md-date>
+  <md-author>Bauer, Steve</md-author>
+  <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19427</relevance>
+ <recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
 </hit>
 <hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19297</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+ <md-date>1997</md-date>
+ <md-author>Saffran, Karen Anita</md-author>
+ <md-description>&quot;March 1997.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2908078765">
+  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+  <md-date>1997</md-date>
+  <md-author>Saffran, Karen Anita</md-author>
+  <md-description>&quot;March 1997.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19297</relevance>
+ <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
 </hit>
 <hit>
-
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium></location>
-<relevance>18845</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ <md-title>Surface water quality monitoring procedures manual</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;GI-252&quot;--Cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2780087309">
+  <md-title>Surface water quality monitoring procedures manual</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;June 1999.&quot;</md-description>
+  <md-description>&quot;GI-252&quot;--Cover</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18845</relevance>
+ <recid>content: title surface water quality monitoring procedures manual medium book</recid>
 </hit>
 <hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18393</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+ <md-title-remainder>proceedings</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+  <md-title-remainder>proceedings</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18393</relevance>
+ <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
 </hit>
 <hit>
-
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="4005818987">
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+ <md-date>1998</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4005818987">
+  <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+  <md-date>1998</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3296959556">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title water law medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3296959556">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 8f79d6f..d225760 100644 (file)
@@ -6,31 +6,35 @@
 <start>0</start>
 <num>2</num>
 <hit>
-
-<md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3168968100">
-<md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
-<md-date>2000</md-date>
-<md-description>Title from cover</md-description>
-<md-description>&quot;January 2000.&quot;</md-description>
-<md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>121639</relevance>
-<recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
+ <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3168968100">
+  <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
+  <md-date>2000</md-date>
+  <md-description>Title from cover</md-description>
+  <md-description>&quot;January 2000.&quot;</md-description>
+  <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>121639</relevance>
+ <recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
 </hit>
 <hit>
-
-<md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
-<md-date>1872</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1554355631">
-<md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
-<md-date>1872</md-date>
-<md-medium>book</md-medium></location>
-<relevance>78196</relevance>
-<recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
+ <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
+ <md-date>1872</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1554355631">
+  <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
+  <md-date>1872</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>78196</relevance>
+ <recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index c101e40..f44540c 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="488613273">
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium></location>
-<relevance>34675</relevance>
-<recid>content: title water author de villiers marq medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>1999</md-date>
+ <md-author>De Villiers, Marq</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Water</md-title>
+  <md-date>1999</md-date>
+  <md-author>De Villiers, Marq</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>34675</relevance>
+ <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
-
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>32306</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <md-title>Potable water and methods of detecting impurities</md-title>
+ <md-date>1899-1906</md-date>
+ <md-author>Baker, M. N</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1810338543">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1906</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1899</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>32306</relevance>
+ <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1037483384">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium></location>
-<relevance>30153</relevance>
-<recid>content: title water author majeed abdul medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Majeed, Abdul</md-author>
+ <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Majeed, Abdul</md-author>
+  <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>30153</relevance>
+ <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27613</relevance>
-<recid>content: title water author grant pamela medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Grant, Pamela</md-author>
+ <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Grant, Pamela</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27613</relevance>
+ <recid>content: title water author grant pamela medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2652095853">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27137</relevance>
-<recid>content: title water law author fisher d e medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-author>Fisher, D. E</md-author>
+ <md-description>Includes index</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-author>Fisher, D. E</md-author>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27137</relevance>
+ <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
-
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>26233</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+ <md-title>A Primer on fresh water</md-title>
+ <md-title-remainder>questions and answers</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>A Primer on fresh water</md-title>
+  <md-title-remainder>questions and answers</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>26233</relevance>
+ <recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="520611137">
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <md-title>Water and water supplies</md-title>
+ <md-date>1901</md-date>
+ <md-author>Thresh, John Clough</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Water and water supplies</md-title>
+  <md-date>1901</md-date>
+  <md-author>Thresh, John Clough</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999-2000</md-date>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1069481248">
-<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
-<md-date>2000</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;July 2000.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3749836075">
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>22614</relevance>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+ <md-date>1999-2000</md-date>
+ <md-description>&quot;September 1999.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+  <md-date>2000</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;July 2000.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+  <md-date>1999</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;September 1999.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>22614</relevance>
+ <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ <md-title>Water-supply</md-title>
+ <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+ <md-date>1896</md-date>
+ <md-author>Mason, William Pitt</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>Water-supply</md-title>
+  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+  <md-date>1896</md-date>
+  <md-author>Mason, William Pitt</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water supply author mason william pitt medium book</recid>
 </hit>
 <hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium></location>
-<relevance>21836</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <md-title>The law of waters and water rights</md-title>
+ <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Farnham, Henry P</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The law of waters and water rights</md-title>
+  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Farnham, Henry P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>21836</relevance>
+ <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20411</relevance>
-<recid>content: title water in press medium book</recid>
+ <md-title>Water, in press, 1998</md-title>
+ <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+ <md-date>1998-1999</md-date>
+ <md-description>With reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>Water, in press, 1998</md-title>
+  <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Water in press, 1997</md-title>
+  <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-description>Includes index</md-description>
+  <md-description>With reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20411</relevance>
+ <recid>content: title water in press medium book</recid>
 </hit>
 <hit>
-
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>20353</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+  <md-date>2000</md-date>
+  <md-description>&quot;May 2000.&quot;</md-description>
+  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
+  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>20353</relevance>
+ <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
 </hit>
 <hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19700</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ <md-title>A guide to Montana water quality regulation</md-title>
+ <md-date>1997</md-date>
+ <md-author>Bryan, Michelle</md-author>
+ <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="291719666">
+  <md-title>A guide to Montana water quality regulation</md-title>
+  <md-date>1997</md-date>
+  <md-author>Bryan, Michelle</md-author>
+  <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19700</relevance>
+ <recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19599</relevance>
-<recid>content: title water technology management medium book</recid>
+ <md-title>Water technology management</md-title>
+ <md-date>2001</md-date>
+ <md-description>Collection of articles with reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Water technology management</md-title>
+  <md-date>2001</md-date>
+  <md-description>Collection of articles with reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19599</relevance>
+ <recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
-
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19427</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ <md-date>1999</md-date>
+ <md-author>Bauer, Steve</md-author>
+ <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+  <md-date>1999</md-date>
+  <md-author>Bauer, Steve</md-author>
+  <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19427</relevance>
+ <recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
 </hit>
 <hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19297</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+ <md-date>1997</md-date>
+ <md-author>Saffran, Karen Anita</md-author>
+ <md-description>&quot;March 1997.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2908078765">
+  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+  <md-date>1997</md-date>
+  <md-author>Saffran, Karen Anita</md-author>
+  <md-description>&quot;March 1997.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19297</relevance>
+ <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
 </hit>
 <hit>
-
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium></location>
-<relevance>18845</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ <md-title>Surface water quality monitoring procedures manual</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;GI-252&quot;--Cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2780087309">
+  <md-title>Surface water quality monitoring procedures manual</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;June 1999.&quot;</md-description>
+  <md-description>&quot;GI-252&quot;--Cover</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18845</relevance>
+ <recid>content: title surface water quality monitoring procedures manual medium book</recid>
 </hit>
 <hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18393</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+ <md-title-remainder>proceedings</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+  <md-title-remainder>proceedings</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18393</relevance>
+ <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
 </hit>
 <hit>
-
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="4005818987">
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+ <md-date>1998</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4005818987">
+  <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+  <md-date>1998</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3296959556">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title water law medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3296959556">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index c101e40..f44540c 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="488613273">
-<md-title>Water</md-title>
-<md-date>1999</md-date>
-<md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium></location>
-<relevance>34675</relevance>
-<recid>content: title water author de villiers marq medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>1999</md-date>
+ <md-author>De Villiers, Marq</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="488613273">
+  <md-title>Water</md-title>
+  <md-date>1999</md-date>
+  <md-author>De Villiers, Marq</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>34675</relevance>
+ <recid>content: title water author de villiers marq medium book</recid>
 </hit>
 <hit>
-
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899-1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1810338543">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1906</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1261468432">
-<md-title>Potable water and methods of detecting impurities</md-title>
-<md-date>1899</md-date>
-<md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>32306</relevance>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ <md-title>Potable water and methods of detecting impurities</md-title>
+ <md-date>1899-1906</md-date>
+ <md-author>Baker, M. N</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1810338543">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1906</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1261468432">
+  <md-title>Potable water and methods of detecting impurities</md-title>
+  <md-date>1899</md-date>
+  <md-author>Baker, M. N</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>32306</relevance>
+ <recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1037483384">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Majeed, Abdul</md-author>
-<md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium></location>
-<relevance>30153</relevance>
-<recid>content: title water author majeed abdul medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Majeed, Abdul</md-author>
+ <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1037483384">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Majeed, Abdul</md-author>
+  <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>30153</relevance>
+ <recid>content: title water author majeed abdul medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="648602593">
-<md-title>Water</md-title>
-<md-date>2000</md-date>
-<md-author>Grant, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27613</relevance>
-<recid>content: title water author grant pamela medium book</recid>
+ <md-title>Water</md-title>
+ <md-date>2000</md-date>
+ <md-author>Grant, Pamela</md-author>
+ <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="648602593">
+  <md-title>Water</md-title>
+  <md-date>2000</md-date>
+  <md-author>Grant, Pamela</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27613</relevance>
+ <recid>content: title water author grant pamela medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2652095853">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-author>Fisher, D. E</md-author>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>27137</relevance>
-<recid>content: title water law author fisher d e medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-author>Fisher, D. E</md-author>
+ <md-description>Includes index</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2652095853">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-author>Fisher, D. E</md-author>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>27137</relevance>
+ <recid>content: title water law author fisher d e medium book</recid>
 </hit>
 <hit>
-
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2684093717">
-<md-title>A Primer on fresh water</md-title>
-<md-title-remainder>questions and answers</md-title-remainder>
-<md-date>2000</md-date>
-<md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<relevance>26233</relevance>
-<recid>content: title a primer on fresh water medium book</recid>
+ <md-title>A Primer on fresh water</md-title>
+ <md-title-remainder>questions and answers</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2684093717">
+  <md-title>A Primer on fresh water</md-title>
+  <md-title-remainder>questions and answers</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>26233</relevance>
+ <recid>content: title a primer on fresh water medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="520611137">
-<md-title>Water and water supplies</md-title>
-<md-date>1901</md-date>
-<md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ <md-title>Water and water supplies</md-title>
+ <md-date>1901</md-date>
+ <md-author>Thresh, John Clough</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="520611137">
+  <md-title>Water and water supplies</md-title>
+  <md-date>1901</md-date>
+  <md-author>Thresh, John Clough</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water and water supplies author thresh john clough medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999-2000</md-date>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1069481248">
-<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
-<md-date>2000</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;July 2000.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3749836075">
-<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
-<md-date>1999</md-date>
-<md-description>Cover title</md-description>
-<md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>22614</relevance>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+ <md-date>1999-2000</md-date>
+ <md-description>&quot;September 1999.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1069481248">
+  <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+  <md-date>2000</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;July 2000.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3749836075">
+  <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+  <md-date>1999</md-date>
+  <md-description>Cover title</md-description>
+  <md-description>&quot;September 1999.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>22614</relevance>
+ <recid>content: title water quality assessment of the state water project medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2359208654">
-<md-title>Water-supply</md-title>
-<md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
-<md-date>1896</md-date>
-<md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium></location>
-<relevance>22614</relevance>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ <md-title>Water-supply</md-title>
+ <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+ <md-date>1896</md-date>
+ <md-author>Mason, William Pitt</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2359208654">
+  <md-title>Water-supply</md-title>
+  <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
+  <md-date>1896</md-date>
+  <md-author>Mason, William Pitt</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>22614</relevance>
+ <recid>content: title water supply author mason william pitt medium book</recid>
 </hit>
 <hit>
-
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1682347087">
-<md-title>The law of waters and water rights</md-title>
-<md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
-<md-date>1904</md-date>
-<md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium></location>
-<relevance>21836</relevance>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ <md-title>The law of waters and water rights</md-title>
+ <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+ <md-date>1904</md-date>
+ <md-author>Farnham, Henry P</md-author>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1682347087">
+  <md-title>The law of waters and water rights</md-title>
+  <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
+  <md-date>1904</md-date>
+  <md-author>Farnham, Henry P</md-author>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>21836</relevance>
+ <recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998-1999</md-date>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="1325464160">
-<md-title>Water, in press, 1998</md-title>
-<md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Includes index</md-description>
-<md-medium>book</md-medium></location>
-<location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2167221470">
-<md-title>Water in press, 1997</md-title>
-<md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
-<md-date>1998</md-date>
-<md-description>Includes index</md-description>
-<md-description>With reference to India</md-description>
-<md-medium>book</md-medium></location>
-<count>2</count>
-<relevance>20411</relevance>
-<recid>content: title water in press medium book</recid>
+ <md-title>Water, in press, 1998</md-title>
+ <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+ <md-date>1998-1999</md-date>
+ <md-description>With reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="1325464160">
+  <md-title>Water, in press, 1998</md-title>
+  <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>Includes index</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2167221470">
+  <md-title>Water in press, 1997</md-title>
+  <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
+  <md-date>1998</md-date>
+  <md-description>Includes index</md-description>
+  <md-description>With reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>2</count>
+ <relevance>20411</relevance>
+ <recid>content: title water in press medium book</recid>
 </hit>
 <hit>
-
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="99732482">
-<md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
-<md-date>2000</md-date>
-<md-description>&quot;May 2000.&quot;</md-description>
-<md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
-<md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>20353</relevance>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+ <md-date>2000</md-date>
+ <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="99732482">
+  <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
+  <md-date>2000</md-date>
+  <md-description>&quot;May 2000.&quot;</md-description>
+  <md-description>&quot;EPA/600/R-00/025.&quot;</md-description>
+  <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>20353</relevance>
+ <recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
 </hit>
 <hit>
-
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="291719666">
-<md-title>A guide to Montana water quality regulation</md-title>
-<md-date>1997</md-date>
-<md-author>Bryan, Michelle</md-author>
-<md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19700</relevance>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ <md-title>A guide to Montana water quality regulation</md-title>
+ <md-date>1997</md-date>
+ <md-author>Bryan, Michelle</md-author>
+ <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="291719666">
+  <md-title>A guide to Montana water quality regulation</md-title>
+  <md-date>1997</md-date>
+  <md-author>Bryan, Michelle</md-author>
+  <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19700</relevance>
+ <recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3200965964">
-<md-title>Water technology management</md-title>
-<md-date>2001</md-date>
-<md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19599</relevance>
-<recid>content: title water technology management medium book</recid>
+ <md-title>Water technology management</md-title>
+ <md-date>2001</md-date>
+ <md-description>Collection of articles with reference to India</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3200965964">
+  <md-title>Water technology management</md-title>
+  <md-date>2001</md-date>
+  <md-description>Collection of articles with reference to India</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19599</relevance>
+ <recid>content: title water technology management medium book</recid>
 </hit>
 <hit>
-
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="67734618">
-<md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
-<md-date>1999</md-date>
-<md-author>Bauer, Steve</md-author>
-<md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19427</relevance>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+ <md-date>1999</md-date>
+ <md-author>Bauer, Steve</md-author>
+ <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="67734618">
+  <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
+  <md-date>1999</md-date>
+  <md-author>Bauer, Steve</md-author>
+  <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19427</relevance>
+ <recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
 </hit>
 <hit>
-
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2908078765">
-<md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
-<md-date>1997</md-date>
-<md-author>Saffran, Karen Anita</md-author>
-<md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium></location>
-<relevance>19297</relevance>
-<recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
+ <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+ <md-date>1997</md-date>
+ <md-author>Saffran, Karen Anita</md-author>
+ <md-description>&quot;March 1997.&quot;</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2908078765">
+  <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
+  <md-date>1997</md-date>
+  <md-author>Saffran, Karen Anita</md-author>
+  <md-description>&quot;March 1997.&quot;</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>19297</relevance>
+ <recid>content: title an empirical analysis of water temperature and dissolved oxygen conditions in the red deer river author saffran karen anita medium book</recid>
 </hit>
 <hit>
-
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2780087309">
-<md-title>Surface water quality monitoring procedures manual</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;June 1999.&quot;</md-description>
-<md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium></location>
-<relevance>18845</relevance>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ <md-title>Surface water quality monitoring procedures manual</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;GI-252&quot;--Cover</md-description>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2780087309">
+  <md-title>Surface water quality monitoring procedures manual</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;June 1999.&quot;</md-description>
+  <md-description>&quot;GI-252&quot;--Cover</md-description>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18845</relevance>
+ <recid>content: title surface water quality monitoring procedures manual medium book</recid>
 </hit>
 <hit>
-
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="2748089445">
-<md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
-<md-title-remainder>proceedings</md-title-remainder>
-<md-date>1997</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18393</relevance>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+ <md-title-remainder>proceedings</md-title-remainder>
+ <md-date>1997</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="2748089445">
+  <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
+  <md-title-remainder>proceedings</md-title-remainder>
+  <md-date>1997</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18393</relevance>
+ <recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
 </hit>
 <hit>
-
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="4005818987">
-<md-title>Mercados e instituciones de aguas en Bolivia</md-title>
-<md-date>1998</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+ <md-date>1998</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="4005818987">
+  <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
+  <md-date>1998</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
 </hit>
 <hit>
-
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test"
- name="LOC Solr Test" checksum="3296959556">
-<md-title>Water law</md-title>
-<md-date>2000</md-date>
-<md-medium>book</md-medium></location>
-<relevance>18091</relevance>
-<recid>content: title water law medium book</recid>
+ <md-title>Water law</md-title>
+ <md-date>2000</md-date>
+ <md-medium>book</md-medium>
+ <location id="LOC Solr Test"
+    name="LOC Solr Test" checksum="3296959556">
+  <md-title>Water law</md-title>
+  <md-date>2000</md-date>
+  <md-medium>book</md-medium>
+ </location>
+ <count>1</count>
+ <relevance>18091</relevance>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index e2a4318..56b0b3a 100644 (file)
 <start>0</start>
 <num>20</num>
 <hit>
-
-<md-title>Adobe Illustrator for the Mac</md-title>
-<md-title-remainder>fast &amp; easy</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="1471384697">
-<md-title>Adobe Illustrator for the Mac</md-title>
-<md-title-remainder>fast &amp; easy</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author></location>
-<relevance>49512</relevance>
-<recid>content: title adobe illustrator for the mac author woodward c michael</recid>
+ <md-title>Adobe Illustrator for the Mac</md-title>
+ <md-title-remainder>fast &amp; easy</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Woodward, C. Michael</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="1471384697">
+  <md-title>Adobe Illustrator for the Mac</md-title>
+  <md-title-remainder>fast &amp; easy</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Woodward, C. Michael</md-author>
+ </location>
+ <count>1</count>
+ <relevance>49512</relevance>
+ <recid>content: title adobe illustrator for the mac author woodward c michael</recid>
 </hit>
 <hit>
-
-<md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date><location id="id_solr"
- name="LOC (SOLR)" checksum="3924860916">
-<md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date></location>
-<relevance>49512</relevance>
-<recid>content: title advanced computer performance modeling and simulation</recid>
+ <md-title>Advanced computer performance modeling and simulation</md-title>
+ <md-date>1998</md-date>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3924860916">
+  <md-title>Advanced computer performance modeling and simulation</md-title>
+  <md-date>1998</md-date>
+ </location>
+ <count>1</count>
+ <relevance>49512</relevance>
+ <recid>content: title advanced computer performance modeling and simulation</recid>
 </hit>
 <hit>
-
-<md-title>Cyberterrorism and computer crimes</md-title>
-<md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="2501955422">
-<md-title>Cyberterrorism and computer crimes</md-title>
-<md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description></location>
-<relevance>49512</relevance>
-<recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
+ <md-title>Cyberterrorism and computer crimes</md-title>
+ <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Aldrich, Richard W</md-author>
+ <md-description>&quot;April 2000.&quot;</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="2501955422">
+  <md-title>Cyberterrorism and computer crimes</md-title>
+  <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Aldrich, Richard W</md-author>
+  <md-description>&quot;April 2000.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>49512</relevance>
+ <recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
 </hit>
 <hit>
-
-<md-title>Software design and usability</md-title>
-<md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="514030763">
-<md-title>Software design and usability</md-title>
-<md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author></location>
-<relevance>45386</relevance>
-<recid>content: title software design and usability author kaasgaard klaus</recid>
+ <md-title>Software design and usability</md-title>
+ <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Kaasgaard, Klaus</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="514030763">
+  <md-title>Software design and usability</md-title>
+  <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Kaasgaard, Klaus</md-author>
+ </location>
+ <count>1</count>
+ <relevance>45386</relevance>
+ <recid>content: title software design and usability author kaasgaard klaus</recid>
 </hit>
 <hit>
-
-<md-title>Everything you need to know about the dangers of computer hacking</md-title>
-<md-date>2000</md-date>
-<md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="440813972">
-<md-title>Everything you need to know about the dangers of computer hacking</md-title>
-<md-date>2000</md-date>
-<md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description></location>
-<relevance>43403</relevance>
-<recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
+ <md-title>Everything you need to know about the dangers of computer hacking</md-title>
+ <md-date>2000</md-date>
+ <md-author>Knittel, John</md-author>
+ <md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="440813972">
+  <md-title>Everything you need to know about the dangers of computer hacking</md-title>
+  <md-date>2000</md-date>
+  <md-author>Knittel, John</md-author>
+  <md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description>
+ </location>
+ <count>1</count>
+ <relevance>43403</relevance>
+ <recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
 </hit>
 <hit>
-
-<md-title>Computer peripherals</md-title>
-<md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="3558776961">
-<md-title>Computer peripherals</md-title>
-<md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author></location>
-<relevance>43323</relevance>
-<recid>content: title computer peripherals author cook barry m</recid>
+ <md-title>Computer peripherals</md-title>
+ <md-date>1995</md-date>
+ <md-author>Cook, Barry M</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3558776961">
+  <md-title>Computer peripherals</md-title>
+  <md-date>1995</md-date>
+  <md-author>Cook, Barry M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>43323</relevance>
+ <recid>content: title computer peripherals author cook barry m</recid>
 </hit>
 <hit>
-
-<md-title>Kids&apos; computer book</md-title>
-<md-date>1994</md-date>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="2747856609">
-<md-title>Kids&apos; computer book</md-title>
-<md-date>1994</md-date>
-<md-description>&quot;For kids and their parents&quot;--Cover</md-description>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description></location>
-<relevance>38051</relevance>
-<recid>content: title kids computer book</recid>
+ <md-title>Kids&apos; computer book</md-title>
+ <md-date>1994</md-date>
+ <md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="2747856609">
+  <md-title>Kids&apos; computer book</md-title>
+  <md-date>1994</md-date>
+  <md-description>&quot;For kids and their parents&quot;--Cover</md-description>
+  <md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description>
+ </location>
+ <count>1</count>
+ <relevance>38051</relevance>
+ <recid>content: title kids computer book</recid>
 </hit>
 <hit>
-
-<md-title>Computer friendly</md-title>
-<md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="194912785">
-<md-title>Computer friendly</md-title>
-<md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author></location>
-<relevance>37134</relevance>
-<recid>content: title computer friendly author steinbacher raymond</recid>
+ <md-title>Computer friendly</md-title>
+ <md-date>1999</md-date>
+ <md-author>Steinbacher, Raymond</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="194912785">
+  <md-title>Computer friendly</md-title>
+  <md-date>1999</md-date>
+  <md-author>Steinbacher, Raymond</md-author>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title computer friendly author steinbacher raymond</recid>
 </hit>
 <hit>
-
-<md-title>Computer misuse</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="268129576">
-<md-title>Computer misuse</md-title>
-<md-date>1999</md-date>
-<md-description>&quot;May 1999.&quot;</md-description>
-<md-description>&quot;NZLC R54&quot;--T.p. verso</md-description>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description></location>
-<relevance>37134</relevance>
-<recid>content: title computer misuse</recid>
+ <md-title>Computer misuse</md-title>
+ <md-date>1999</md-date>
+ <md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="268129576">
+  <md-title>Computer misuse</md-title>
+  <md-date>1999</md-date>
+  <md-description>&quot;May 1999.&quot;</md-description>
+  <md-description>&quot;NZLC R54&quot;--T.p. verso</md-description>
+  <md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title computer misuse</recid>
 </hit>
 <hit>
-
-<md-title>Computer networking</md-title>
-<md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="3485560170">
-<md-title>Computer networking</md-title>
-<md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author></location>
-<relevance>37134</relevance>
-<recid>content: title computer networking author ross keith w</recid>
+ <md-title>Computer networking</md-title>
+ <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Ross, Keith W</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3485560170">
+  <md-title>Computer networking</md-title>
+  <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Ross, Keith W</md-author>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title computer networking author ross keith w</recid>
 </hit>
 <hit>
-
-<md-title>CorelDRAW 8 for Windows</md-title>
-<md-date>1998</md-date>
-<md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="1570852302">
-<md-title>CorelDRAW 8 for Windows</md-title>
-<md-date>1998</md-date>
-<md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>37134</relevance>
-<recid>content: title coreldraw for windows author davis phyllis</recid>
+ <md-title>CorelDRAW 8 for Windows</md-title>
+ <md-date>1998</md-date>
+ <md-author>Davis, Phyllis</md-author>
+ <md-description>Includes index</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="1570852302">
+  <md-title>CorelDRAW 8 for Windows</md-title>
+  <md-date>1998</md-date>
+  <md-author>Davis, Phyllis</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title coreldraw for windows author davis phyllis</recid>
 </hit>
 <hit>
-
-<md-title>Quicken 2000 for the Mac</md-title>
-<md-title-remainder>the official guide</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Langer, Maria</md-author>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="3705210543">
-<md-title>Quicken 2000 for the Mac</md-title>
-<md-title-remainder>the official guide</md-title-remainder>
-<md-date>2000</md-date>
-<md-author>Langer, Maria</md-author>
-<md-description>Includes index</md-description>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description></location>
-<relevance>37134</relevance>
-<recid>content: title quicken for the mac author langer maria</recid>
+ <md-title>Quicken 2000 for the Mac</md-title>
+ <md-title-remainder>the official guide</md-title-remainder>
+ <md-date>2000</md-date>
+ <md-author>Langer, Maria</md-author>
+ <md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3705210543">
+  <md-title>Quicken 2000 for the Mac</md-title>
+  <md-title-remainder>the official guide</md-title-remainder>
+  <md-date>2000</md-date>
+  <md-author>Langer, Maria</md-author>
+  <md-description>Includes index</md-description>
+  <md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title quicken for the mac author langer maria</recid>
 </hit>
 <hit>
-
-<md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date><location id="id_solr"
- name="LOC (SOLR)" checksum="932616346">
-<md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date></location>
-<relevance>37134</relevance>
-<recid>content: title sicherheit und schutz im netz</recid>
+ <md-title>Sicherheit und Schutz im Netz</md-title>
+ <md-date>1998</md-date>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="932616346">
+  <md-title>Sicherheit und Schutz im Netz</md-title>
+  <md-date>1998</md-date>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title sicherheit und schutz im netz</recid>
 </hit>
 <hit>
-
-<md-title>Unix Secure Shell</md-title>
-<md-date>1999</md-date>
-<md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="2109620653">
-<md-title>Unix Secure Shell</md-title>
-<md-date>1999</md-date>
-<md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>37134</relevance>
-<recid>content: title unix secure shell author carasik anne h</recid>
+ <md-title>Unix Secure Shell</md-title>
+ <md-date>1999</md-date>
+ <md-author>Carasik, Anne H</md-author>
+ <md-description>Includes index</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="2109620653">
+  <md-title>Unix Secure Shell</md-title>
+  <md-date>1999</md-date>
+  <md-author>Carasik, Anne H</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>37134</relevance>
+ <recid>content: title unix secure shell author carasik anne h</recid>
 </hit>
 <hit>
-
-<md-title>Eight International Conference on Computer Communications and Networks</md-title>
-<md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="759931950">
-<md-title>Eight International Conference on Computer Communications and Networks</md-title>
-<md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description></location>
-<relevance>35071</relevance>
-<recid>content: title eight international conference on computer communications and networks</recid>
+ <md-title>Eight International Conference on Computer Communications and Networks</md-title>
+ <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="759931950">
+  <md-title>Eight International Conference on Computer Communications and Networks</md-title>
+  <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description>
+ </location>
+ <count>1</count>
+ <relevance>35071</relevance>
+ <recid>content: title eight international conference on computer communications and networks</recid>
 </hit>
 <hit>
-
-<md-title>Building storage networks</md-title>
-<md-date>2000</md-date>
-<md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="2282305049">
-<md-title>Building storage networks</md-title>
-<md-date>2000</md-date>
-<md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>33008</relevance>
-<recid>content: title building storage networks author farley marc</recid>
+ <md-title>Building storage networks</md-title>
+ <md-date>2000</md-date>
+ <md-author>Farley, Marc</md-author>
+ <md-description>Includes index</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="2282305049">
+  <md-title>Building storage networks</md-title>
+  <md-date>2000</md-date>
+  <md-author>Farley, Marc</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33008</relevance>
+ <recid>content: title building storage networks author farley marc</recid>
 </hit>
 <hit>
-
-<md-title>Complete CL</md-title>
-<md-title-remainder>the definitive control language programming guide</md-title-remainder>
-<md-date>1999</md-date>
-<md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="2036403862">
-<md-title>Complete CL</md-title>
-<md-title-remainder>the definitive control language programming guide</md-title-remainder>
-<md-date>1999</md-date>
-<md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>33008</relevance>
-<recid>content: title complete cl author malaga ernie</recid>
+ <md-title>Complete CL</md-title>
+ <md-title-remainder>the definitive control language programming guide</md-title-remainder>
+ <md-date>1999</md-date>
+ <md-author>Malaga, Ernie</md-author>
+ <md-description>Includes index</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="2036403862">
+  <md-title>Complete CL</md-title>
+  <md-title-remainder>the definitive control language programming guide</md-title-remainder>
+  <md-date>1999</md-date>
+  <md-author>Malaga, Ernie</md-author>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33008</relevance>
+ <recid>content: title complete cl author malaga ernie</recid>
 </hit>
 <hit>
-
-<md-title>3D games</md-title>
-<md-title-remainder>real-time rendering and software technology</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="3459309356">
-<md-title>3D games</md-title>
-<md-title-remainder>real-time rendering and software technology</md-title-remainder>
-<md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author></location>
-<relevance>33008</relevance>
-<recid>content: title d games author watt alan h</recid>
+ <md-title>3D games</md-title>
+ <md-title-remainder>real-time rendering and software technology</md-title-remainder>
+ <md-date>2001</md-date>
+ <md-author>Watt, Alan H</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3459309356">
+  <md-title>3D games</md-title>
+  <md-title-remainder>real-time rendering and software technology</md-title-remainder>
+  <md-date>2001</md-date>
+  <md-author>Watt, Alan H</md-author>
+ </location>
+ <count>1</count>
+ <relevance>33008</relevance>
+ <recid>content: title d games author watt alan h</recid>
 </hit>
 <hit>
-
-<md-title>Java applications strategies for the AS/400</md-title>
-<md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author><location id="id_solr"
- name="LOC (SOLR)" checksum="3239658983">
-<md-title>Java applications strategies for the AS/400</md-title>
-<md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author></location>
-<relevance>33008</relevance>
-<recid>content: title java applications strategies for the as author denoncourt don</recid>
+ <md-title>Java applications strategies for the AS/400</md-title>
+ <md-date>1999</md-date>
+ <md-author>Denoncourt, Don</md-author>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="3239658983">
+  <md-title>Java applications strategies for the AS/400</md-title>
+  <md-date>1999</md-date>
+  <md-author>Denoncourt, Don</md-author>
+ </location>
+ <count>1</count>
+ <relevance>33008</relevance>
+ <recid>content: title java applications strategies for the as author denoncourt don</recid>
 </hit>
 <hit>
-
-<md-title>Mastering algorithms with C</md-title>
-<md-date>1999</md-date>
-<md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="id_solr"
- name="LOC (SOLR)" checksum="121695994">
-<md-title>Mastering algorithms with C</md-title>
-<md-date>1999</md-date>
-<md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
-<md-description>Includes index</md-description></location>
-<relevance>33008</relevance>
-<recid>content: title mastering algorithms with c author loudon kyle</recid>
+ <md-title>Mastering algorithms with C</md-title>
+ <md-date>1999</md-date>
+ <md-author>Loudon, Kyle</md-author>
+ <md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
+ <location id="id_solr"
+    name="LOC (SOLR)" checksum="121695994">
+  <md-title>Mastering algorithms with C</md-title>
+  <md-date>1999</md-date>
+  <md-author>Loudon, Kyle</md-author>
+  <md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description>
+  <md-description>Includes index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>33008</relevance>
+ <recid>content: title mastering algorithms with c author loudon kyle</recid>
 </hit>
 </show>
\ No newline at end of file
index cbf7a34..674964c 100644 (file)
@@ -6,58 +6,64 @@
 <start>0</start>
 <num>3</num>
 <hit>
-
-<md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows 
+ <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="z3950.indexdata.com/gils"
- name="gils" checksum="2074161109">
-<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 
+under development to replace the printed Bibliography of Marine Geology</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="2074161109">
+  <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>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>11882</relevance>
-<recid>content: title bibliography of maine geology author medium book</recid>
+  <md-description tag="513">1692-PRESENT</md-description>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>11882</relevance>
+ <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
+ <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
 bedrock for a large number of bedrock wells inventoried by the Maine Geological 
 Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also 
 show bedrock topography and potentiometric surface.  Geographic coverage is 
-restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1899968820">
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
+restricted to Southern Maine</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1899968820">
+  <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+  <md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
 bedrock for a large number of bedrock wells inventoried by the Maine Geological 
 Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also 
 show bedrock topography and potentiometric surface.  Geographic coverage is 
 restricted to Southern Maine</md-description>
-<md-description tag="513">1972-1978</md-description>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title groundwater resource maps county series author medium book</recid>
+  <md-description tag="513">1972-1978</md-description>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title groundwater resource maps county series author medium book</recid>
 </hit>
 <hit>
-
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, 
+ <md-title>OIL/GAS DRILLING</md-title>
+ <md-description>This database contains information on oil and gas drilling such as well name, 
 operator, driller, location, depth, copies of logs run, permits, samples 
-(cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1725776531">
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description tag="520">This database contains information on oil and gas drilling such as well name, 
+(cuttings, core), completion records</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1725776531">
+  <md-title>OIL/GAS DRILLING</md-title>
+  <md-description tag="520">This database contains information on oil and gas drilling such as well name, 
 operator, driller, location, depth, copies of logs run, permits, samples 
 (cuttings, core), completion records</md-description>
-<md-description tag="513">1907-PRESENT</md-description>
-<md-test-usersetting-2>test-usersetting-2 data: 
-</md-test-usersetting-2></location>
-<relevance>0</relevance>
-<recid>content: title oil gas drilling author medium book</recid>
+  <md-description tag="513">1907-PRESENT</md-description>
+  <md-test-usersetting-2>test-usersetting-2 data: 
+</md-test-usersetting-2>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title oil gas drilling author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 5268bf3..1a40e7f 100644 (file)
@@ -6,33 +6,39 @@
 <start>0</start>
 <num>3</num>
 <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="z3950.indexdata.com/gils"
- name="gils" checksum="2074161109">
-<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>
-<relevance>11882</relevance>
-<recid>content: title bibliography of maine geology</recid>
+ <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="z3950.indexdata.com/gils"
+    name="gils" checksum="2074161109">
+  <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>
+ <count>1</count>
+ <relevance>11882</relevance>
+ <recid>content: title bibliography of maine geology</recid>
 </hit>
 <hit>
-
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1899968820">
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description></location>
-<relevance>0</relevance>
-<recid>content: title groundwater resource maps county series</recid>
+ <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+ <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1899968820">
+  <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
+  <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title groundwater resource maps county series</recid>
 </hit>
 <hit>
-
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
- name="gils" checksum="1725776531">
-<md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description></location>
-<relevance>0</relevance>
-<recid>content: title oil gas drilling</recid>
+ <md-title>OIL/GAS DRILLING</md-title>
+ <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+ <location id="z3950.indexdata.com/gils"
+    name="gils" checksum="1725776531">
+  <md-title>OIL/GAS DRILLING</md-title>
+  <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title oil gas drilling</recid>
 </hit>
 </show>
\ No newline at end of file
index 78d7789..697a3a8 100644 (file)
@@ -6,73 +6,87 @@
 <start>0</start>
 <num>7</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><location id="my"
- name="marcserver" checksum="3602387">
-<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>
-<recid>content: title water well data author medium book</recid>
+ <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="3602387">
+  <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 GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my"
- name="marcserver" checksum="4291493253">
-<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
-<md-description tag="513">-PRESENT</md-description></location>
-<recid>content: title utah geologic map bibliography author medium book</recid>
+ <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+ <md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
+ <location id="my"
+    name="marcserver" checksum="4291493253">
+  <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+  <md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
+  <md-description tag="513">-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title utah geologic map bibliography 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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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>
 <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>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <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>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <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>
-<recid>content: title automated flood warning network author medium book</recid>
+ <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>
-<recid>content: title applied geology file author medium book</recid>
+ <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 d3ed0e2..b6cede8 100644 (file)
 <start>0</start>
 <num>10</num>
 <hit>
-
-<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="3602387">
-<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></location>
-<recid>content: title coal sample bank author medium book</recid>
+ <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="3602387">
+  <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>
+ </location>
+ <count>1</count>
+ <recid>content: title coal sample bank author medium book</recid>
 </hit>
 <hit>
-
-<md-title>DAM INVENTORY</md-title>
-<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my"
- name="marcserver" checksum="64172">
-<md-title>DAM INVENTORY</md-title>
-<md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
-<md-description tag="513">-PRESENT</md-description></location>
-<recid>content: title dam inventory author medium book</recid>
+ <md-title>DAM INVENTORY</md-title>
+ <md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
+ <location id="my"
+    name="marcserver" checksum="64172">
+  <md-title>DAM INVENTORY</md-title>
+  <md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
+  <md-description tag="513">-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title dam inventory author medium book</recid>
 </hit>
 <hit>
-
-<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="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>
-<recid>content: title fresh water wetlands maps author medium book</recid>
+ <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="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>
+ <count>1</count>
+ <recid>content: title fresh water wetlands maps 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"
- name="marcserver" checksum="4287955038">
-<md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
-<md-description tag="520">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>
-<md-description tag="513">1972-PRESENT</md-description></location>
-<recid>content: title inland wetlands of connecticut author medium book</recid>
+ <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"
+    name="marcserver" checksum="4287955038">
+  <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
+  <md-description tag="520">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>
+  <md-description tag="513">1972-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title inland wetlands of connecticut author medium book</recid>
 </hit>
 <hit>
-
-<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="4284416823">
-<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></location>
-<recid>content: title maine geological survey bedrock water well inventory author medium book</recid>
+ <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="4284416823">
+  <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>
+ </location>
+ <count>1</count>
+ <recid>content: title maine geological survey bedrock water well inventory 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>
-<recid>content: title statewide planning author medium book</recid>
+ <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>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my"
- name="marcserver" checksum="4277340393">
-<md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description></location>
-<recid>content: title stream channel encroachment line studies author medium book</recid>
+ <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
+ <md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description>
+ <location id="my"
+    name="marcserver" checksum="4277340393">
+  <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
+  <md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title stream channel encroachment line studies author medium book</recid>
 </hit>
 <hit>
-
-<md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my"
- name="marcserver" checksum="4273802178">
-<md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
-<md-description tag="513">1972-PRESENT</md-description></location>
-<recid>content: title tidal coastal wetland of connecticut author medium book</recid>
+ <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
+ <md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
+ <location id="my"
+    name="marcserver" checksum="4273802178">
+  <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
+  <md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
+  <md-description tag="513">1972-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title tidal coastal wetland of connecticut 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="4270263963">
-<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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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="4270263963">
+  <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>
 <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="4266725748">
-<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>
-<recid>content: title water well data author medium book</recid>
+ <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="4266725748">
+  <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>
 </show>
\ No newline at end of file
index 45ddc45..9af6f33 100644 (file)
 <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>
-<recid>content: title statewide planning author medium book</recid>
+ <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>
-<recid>content: title water well data author medium book</recid>
+ <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">
-<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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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">
+  <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>
 <hit>
-
-<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">
-<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></location>
-<recid>content: title coal sample bank author medium book</recid>
+ <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">
+  <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>
+ </location>
+ <count>1</count>
+ <recid>content: title coal sample bank author medium book</recid>
 </hit>
 <hit>
-
-<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">
-<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>
-<recid>content: title fresh water wetlands maps author medium book</recid>
+ <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">
+  <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>
+ <count>1</count>
+ <recid>content: title fresh water wetlands maps author medium book</recid>
 </hit>
 <hit>
-
-<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">
-<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></location>
-<recid>content: title maine geological survey bedrock water well inventory author medium book</recid>
+ <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">
+  <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>
+ </location>
+ <count>1</count>
+ <recid>content: title maine geological survey bedrock water well inventory 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"
- name="marcserver" checksum="4277340393">
-<md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
-<md-description tag="520">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>
-<md-description tag="513">1972-PRESENT</md-description></location>
-<recid>content: title inland wetlands of connecticut author medium book</recid>
+ <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"
+    name="marcserver" checksum="4277340393">
+  <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
+  <md-description tag="520">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>
+  <md-description tag="513">1972-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title inland wetlands of connecticut author medium book</recid>
 </hit>
 <hit>
-
-<md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my"
- name="marcserver" checksum="4273802178">
-<md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description></location>
-<recid>content: title stream channel encroachment line studies author medium book</recid>
+ <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
+ <md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description>
+ <location id="my"
+    name="marcserver" checksum="4273802178">
+  <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
+  <md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title stream channel encroachment line studies author medium book</recid>
 </hit>
 <hit>
-
-<md-title>DAM INVENTORY</md-title>
-<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my"
- name="marcserver" checksum="4270263963">
-<md-title>DAM INVENTORY</md-title>
-<md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
-<md-description tag="513">-PRESENT</md-description></location>
-<recid>content: title dam inventory author medium book</recid>
+ <md-title>DAM INVENTORY</md-title>
+ <md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
+ <location id="my"
+    name="marcserver" checksum="4270263963">
+  <md-title>DAM INVENTORY</md-title>
+  <md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
+  <md-description tag="513">-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title dam inventory author medium book</recid>
 </hit>
 <hit>
-
-<md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my"
- name="marcserver" checksum="4266725748">
-<md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
-<md-description tag="513">1972-PRESENT</md-description></location>
-<recid>content: title tidal coastal wetland of connecticut author medium book</recid>
+ <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
+ <md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
+ <location id="my"
+    name="marcserver" checksum="4266725748">
+  <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
+  <md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
+  <md-description tag="513">1972-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title tidal coastal wetland of connecticut author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 6a73ea2..6dbbbe2 100644 (file)
 <start>0</start>
 <num>9</num>
 <hit>
-
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="my"
- name="marcserver" checksum="64172">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<location id="my"
- name="marcserver" checksum="3602387">
-<md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author></location>
-<count>2</count>
-<relevance>48160</relevance>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ <md-title>How to program a computer</md-title>
+ <md-author>Jack Collins</md-author>
+ <location id="my"
+    name="marcserver" checksum="64172">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <location id="my"
+    name="marcserver" checksum="3602387">
+  <md-title>How to program a computer</md-title>
+  <md-author>Jack Collins</md-author>
+ </location>
+ <count>2</count>
+ <relevance>48160</relevance>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="my"
- name="marcserver" checksum="4287955038">
-<md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date>
-<md-description tag="500">Hebrew and Greek; introductions in English</md-description>
-<md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description></location>
-<relevance>40134</relevance>
-<recid>content: title the computer bible author medium book</recid>
+ <md-title>The Computer Bible</md-title>
+ <md-date>1973-1980</md-date>
+ <md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ <location id="my"
+    name="marcserver" checksum="4287955038">
+  <md-title>The Computer Bible</md-title>
+  <md-date>1973-1980</md-date>
+  <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
+  <md-description tag="500">Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description>
+ </location>
+ <count>1</count>
+ <relevance>40134</relevance>
+ <recid>content: title the computer bible author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="my"
- name="marcserver" checksum="4277340393">
-<md-title>Computer science &amp; technology</md-title>
-<md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date></location>
-<relevance>30100</relevance>
-<recid>content: title computer science technology author medium book</recid>
+ <md-title>Computer science &amp; technology</md-title>
+ <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+ <md-date>1977</md-date>
+ <location id="my"
+    name="marcserver" checksum="4277340393">
+  <md-title>Computer science &amp; technology</md-title>
+  <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
+  <md-date>1977</md-date>
+ </location>
+ <count>1</count>
+ <relevance>30100</relevance>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 <hit>
-
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="my"
- name="marcserver" checksum="4266725748">
-<md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date>
-<md-description tag="500">Cover title</md-description></location>
-<relevance>17200</relevance>
-<recid>content: title a plan for community college computer development author medium book</recid>
+ <md-title>A plan for community college computer development</md-title>
+ <md-date>1971</md-date>
+ <md-description>Cover title</md-description>
+ <location id="my"
+    name="marcserver" checksum="4266725748">
+  <md-title>A plan for community college computer development</md-title>
+  <md-date>1971</md-date>
+  <md-description tag="500">Cover title</md-description>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <recid>content: title a plan for community college computer development author medium book</recid>
 </hit>
 <hit>
-
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="my"
- name="marcserver" checksum="4270263963">
-<md-title>Washington metropolitan area rail computer feasibility study;</md-title>
-<md-title-remainder>final report</md-title-remainder>
-<md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author>
-<md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description></location>
-<relevance>17200</relevance>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
+ <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+ <md-title-remainder>final report</md-title-remainder>
+ <md-date>1971</md-date>
+ <md-author>Englund, Carl R</md-author>
+ <md-description>&quot;Contract DOT-UT-10003.&quot;</md-description>
+ <location id="my"
+    name="marcserver" checksum="4270263963">
+  <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
+  <md-title-remainder>final report</md-title-remainder>
+  <md-date>1971</md-date>
+  <md-author>Englund, Carl R</md-author>
+  <md-description tag="500">&quot;Contract DOT-UT-10003.&quot;</md-description>
+ </location>
+ <count>1</count>
+ <relevance>17200</relevance>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r medium book</recid>
 </hit>
 <hit>
-
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="my"
- name="marcserver" checksum="4284416823">
-<md-title>The Puget Sound Region</md-title>
-<md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
-<md-date>1974</md-date>
-<md-author>Mairs, John W</md-author>
-<md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
-<md-description tag="504">Bibliography: p. 4</md-description></location>
-<relevance>16722</relevance>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ <md-title>The Puget Sound Region</md-title>
+ <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-author>Mairs, John W</md-author>
+ <md-description>Scale of maps ca. 1:1,000,000</md-description>
+ <location id="my"
+    name="marcserver" checksum="4284416823">
+  <md-title>The Puget Sound Region</md-title>
+  <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-author>Mairs, John W</md-author>
+  <md-description tag="500">Scale of maps ca. 1:1,000,000</md-description>
+  <md-description tag="504">Bibliography: p. 4</md-description>
+ </location>
+ <count>1</count>
+ <relevance>16722</relevance>
+ <recid>content: title the puget sound region author mairs john w medium book</recid>
 </hit>
 <hit>
-
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="my"
- name="marcserver" checksum="4291493253">
-<md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
-<md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>12040</relevance>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+ <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+ <md-date>1974</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="my"
+    name="marcserver" checksum="4291493253">
+  <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
+  <md-title-remainder>the proceedings of a workshop</md-title-remainder>
+  <md-date>1974</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
 </hit>
 <hit>
-
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="my"
- name="marcserver" checksum="4273802178">
-<md-title>The use of passwords for controlled access to computer resources</md-title>
-<md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author></location>
-<relevance>12040</relevance>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ <md-title>The use of passwords for controlled access to computer resources</md-title>
+ <md-date>1977</md-date>
+ <md-author>Wood, Helen M</md-author>
+ <location id="my"
+    name="marcserver" checksum="4273802178">
+  <md-title>The use of passwords for controlled access to computer resources</md-title>
+  <md-date>1977</md-date>
+  <md-author>Wood, Helen M</md-author>
+ </location>
+ <count>1</count>
+ <relevance>12040</relevance>
+ <recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
 </hit>
 <hit>
-
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="my"
- name="marcserver" checksum="4280878608">
-<md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
-<md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date>
-<md-description tag="504">Includes bibliographical references and index</md-description></location>
-<relevance>0</relevance>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+ <md-title-remainder>proceedings of the workshop</md-title-remainder>
+ <md-date>1977</md-date>
+ <md-description>Includes bibliographical references and index</md-description>
+ <location id="my"
+    name="marcserver" checksum="4280878608">
+  <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
+  <md-title-remainder>proceedings of the workshop</md-title-remainder>
+  <md-date>1977</md-date>
+  <md-description tag="504">Includes bibliographical references and index</md-description>
+ </location>
+ <count>1</count>
+ <relevance>0</relevance>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index e072116..3f9a44b 100644 (file)
@@ -6,36 +6,42 @@
 <start>0</start>
 <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">
-<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>
-<relevance>6707</relevance>
-<recid>content: title applied geology file author medium book</recid>
+ <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>
+ <relevance>6707</relevance>
+ <recid>content: title applied geology file 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>
-<relevance>4951</relevance>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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>
+ <relevance>4951</relevance>
+ <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>
-<relevance>0</relevance>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <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>
+ <relevance>0</relevance>
+ <recid>content: title utah earthquake epicenters author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 8aa180e..d0057f9 100644 (file)
@@ -6,53 +6,63 @@
 <start>0</start>
 <num>5</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">
-<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>
-<recid>content: title applied geology file author medium book</recid>
+ <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>
 <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>
-<recid>content: title automated flood warning network author medium book</recid>
+ <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>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>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <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>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>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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 8aa180e..d0057f9 100644 (file)
@@ -6,53 +6,63 @@
 <start>0</start>
 <num>5</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">
-<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>
-<recid>content: title applied geology file author medium book</recid>
+ <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>
 <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>
-<recid>content: title automated flood warning network author medium book</recid>
+ <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>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>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <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>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>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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 78d7789..697a3a8 100644 (file)
@@ -6,73 +6,87 @@
 <start>0</start>
 <num>7</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><location id="my"
- name="marcserver" checksum="3602387">
-<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>
-<recid>content: title water well data author medium book</recid>
+ <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="3602387">
+  <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 GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my"
- name="marcserver" checksum="4291493253">
-<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
-<md-description tag="513">-PRESENT</md-description></location>
-<recid>content: title utah geologic map bibliography author medium book</recid>
+ <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+ <md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
+ <location id="my"
+    name="marcserver" checksum="4291493253">
+  <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
+  <md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
+  <md-description tag="513">-PRESENT</md-description>
+ </location>
+ <count>1</count>
+ <recid>content: title utah geologic map bibliography 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>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ <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>
 <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>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ <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>
-<recid>content: title bibliography of maine geology author medium book</recid>
+ <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>
-<recid>content: title automated flood warning network author medium book</recid>
+ <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>
-<recid>content: title applied geology file author medium book</recid>
+ <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