Indent record info a little for show/record responses
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 21 Sep 2012 12:10:11 +0000 (14:10 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 21 Sep 2012 12:10:11 +0000 (14:10 +0200)
73 files changed:
src/http_command.c
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_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_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

index 1cb1ae8..2aca50e 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,21 +1134,20 @@ 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_printf(c->wrbuf, "<relevance_info>\n");
+            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_printf(c->wrbuf, " </relevance_info>\n");
         }
-        wrbuf_puts(c->wrbuf, "<recid>");
+        wrbuf_puts(c->wrbuf, " <recid>");
         wrbuf_xmlputs(c->wrbuf, rec->recid);
         wrbuf_puts(c->wrbuf, "</recid>\n");
         wrbuf_puts(c->wrbuf, "</hit>\n");
index a913096..86782cf 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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(2))/termoccur(2));
 computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311);
 score = relevance(97311);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins</recid>
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index a6107fb..0736579 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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(2))/termoccur(2));
 computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311);
 score = relevance(97311);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins</recid>
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index 06a75c5..8ff935d 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>
-<relevance_info>
+ <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>
+ <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(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.223144) (53554);
 score = relevance(53554);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.223144) (44628);
 score = relevance(44628);
-</relevance_info>
-<recid>content: title computer science technology</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.223144) (44628);
 score = relevance(44628);
-</relevance_info>
-<recid>content: title the computer bible</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](0.857143) * idf[1](0.223144) (19126);
 score = relevance(19126);
-</relevance_info>
-<recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title-remainder vecf[1] += mult(5) / length(6);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.223144) (18595);
 score = relevance(18595);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.223144) (13388);
 score = relevance(13388);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.223144) (13388);
 score = relevance(13388);
-</relevance_info>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(9))/termoccur(8));
 computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.223144) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index ccff2df..099cb79 100644 (file)
 <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>
-<relevance_info>
+ <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>
+ <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(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.287682) (69043);
 score = relevance(69043);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536);
 score = relevance(57536);
-</relevance_info>
-<recid>content: title computer science technology</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](2.000000) * idf[1](0.287682) (57536);
 score = relevance(57536);
-</relevance_info>
-<recid>content: title the computer bible</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title-remainder vecf[1] += mult(5) / length(6);
 idf[1] = log(((1 + total(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](0.833333) * idf[1](0.287682) (23973);
 score = relevance(23973);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](0.600000) * idf[1](0.287682) (17260);
 score = relevance(17260);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(7))/termoccur(6));
 computer: relevance += 100000 * vecf[1](0.000000) * idf[1](0.287682) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 35ea9f9..3006355 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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(2))/termoccur(2));
 computer: relevance += 100000 * vecf[1](2.400000) * idf[1](0.405465) (97311);
 score = relevance(97311);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins</recid>
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins</recid>
 </hit>
 </show>
\ No newline at end of file
index b39072b..dfb7f93 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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 the: field=title-remainder vecf[1] += mult(10) / length(9);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](3.111111) * idf[1](0.167054) (51972);
 score = relevance(51972);
-</relevance_info>
-<recid>content: title the late shift author carter bill medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.167054) (33410);
 score = relevance(33410);
-</relevance_info>
-<recid>content: title the computer bible author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.167054) (29158);
 score = relevance(29158);
-</relevance_info>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.167054) (25058);
 score = relevance(25058);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(4);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.167054) (20881);
 score = relevance(20881);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(5);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.167054) (16705);
 score = relevance(16705);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(6);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.833333) * idf[1](0.167054) (13921);
 score = relevance(13921);
-</relevance_info>
-<recid>content: title dealing with dropouts author paulu nancy medium</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.800000) * idf[1](0.167054) (13364);
 score = relevance(13364);
-</relevance_info>
-<recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.167054) (10023);
 score = relevance(10023);
-</relevance_info>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(14);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.167054) (5966);
 score = relevance(5966);
-</relevance_info>
-<recid>content: title computer science technology author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=description vecf[1] += mult(6) / length(30);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.200000) * idf[1](0.167054) (3341);
 score = relevance(3341);
-</relevance_info>
-<recid>content: title technology programs that work author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.167054) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title check this out author seager andrew j medium book</recid>
+ </relevance_info>
+ <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 5868483..d105c2d 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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 the: field=title-remainder vecf[1] += mult(10) / length(9);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](3.111111) * idf[1](0.167054) (51972);
 score = relevance(51972);
-</relevance_info>
-<recid>content: title the late shift author carter bill medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.167054) (33410);
 score = relevance(33410);
-</relevance_info>
-<recid>content: title the computer bible author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.745455) * idf[1](0.167054) (29158);
 score = relevance(29158);
-</relevance_info>
-<recid>content: title the religious teachers of greece author adam james medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.167054) (25058);
 score = relevance(25058);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(4);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.167054) (20881);
 score = relevance(20881);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(5);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.167054) (16705);
 score = relevance(16705);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(6);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.833333) * idf[1](0.167054) (13921);
 score = relevance(13921);
-</relevance_info>
-<recid>content: title dealing with dropouts author paulu nancy medium</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.800000) * idf[1](0.167054) (13364);
 score = relevance(13364);
-</relevance_info>
-<recid>content: title national dissemination model for the i m special program of physical education for the handicapped author medium</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.600000) * idf[1](0.167054) (10023);
 score = relevance(10023);
-</relevance_info>
-<recid>content: title the use of passwords for controlled access to computer resources author wood helen m medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(14);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.167054) (5966);
 score = relevance(5966);
-</relevance_info>
-<recid>content: title computer science technology author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=description vecf[1] += mult(6) / length(30);
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.200000) * idf[1](0.167054) (3341);
 score = relevance(3341);
-</relevance_info>
-<recid>content: title technology programs that work author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(12))/termoccur(11));
 the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.167054) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title check this out author seager andrew j medium book</recid>
+ </relevance_info>
+ <recid>content: title check this out author seager andrew j medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 2de0a16..4f2fae9 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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.470004) (94000);
 score = relevance(94000);
-</relevance_info>
-<recid>content: title the computer bible author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.470004) (70500);
 score = relevance(70500);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(4);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.470004) (58750);
 score = relevance(58750);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(5);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.470004) (47000);
 score = relevance(47000);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(14);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.470004) (16785);
 score = relevance(16785);
-</relevance_info>
-<recid>content: title computer science technology author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.470004) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 2de0a16..4f2fae9 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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](2.000000) * idf[1](0.470004) (94000);
 score = relevance(94000);
-</relevance_info>
-<recid>content: title the computer bible author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.500000) * idf[1](0.470004) (70500);
 score = relevance(70500);
-</relevance_info>
-<recid>content: title the puget sound region author mairs john w medium book</recid>
+ </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="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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(4);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.250000) * idf[1](0.470004) (58750);
 score = relevance(58750);
-</relevance_info>
-<recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(5);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](1.000000) * idf[1](0.470004) (47000);
 score = relevance(47000);
-</relevance_info>
-<recid>content: title computer processing of dynamic images from an anger scintillation camera author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=title-remainder vecf[1] += mult(5) / length(14);
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](0.357143) * idf[1](0.470004) (16785);
 score = relevance(16785);
-</relevance_info>
-<recid>content: title computer science technology author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(7))/termoccur(5));
 the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.470004) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title how to program a computer author jack collins medium book</recid>
+ </relevance_info>
+ <recid>content: title how to program a computer author jack collins medium book</recid>
 </hit>
 </show>
\ No newline at end of file
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 a4cb46e..56bd95d 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 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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 4d93455..1eb6dfd 100644 (file)
@@ -6,45 +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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d8ce812..b8939f0 100644 (file)
@@ -6,49 +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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <recid>content: title oil gas drilling</recid>
 </hit>
 </show>
\ No newline at end of file
index 4275ecc..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 97953a4..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <recid>content: title utah geological and mineral survey publications author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 4e1e409..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <recid>content: title computer science technology author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 1239939..3ae7d3e 100644 (file)
@@ -6,31 +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>
-<relevance_info>
+ <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>
+ </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 32d5a8a..23d4c1d 100644 (file)
@@ -6,34 +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>
-<relevance_info>
+ <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>
+ </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 8adc900..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 1239939..3ae7d3e 100644 (file)
@@ -6,31 +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>
-<relevance_info>
+ <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>
+ </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 32d5a8a..23d4c1d 100644 (file)
@@ -6,34 +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>
-<relevance_info>
+ <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>
+ </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 32d5a8a..23d4c1d 100644 (file)
@@ -6,34 +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>
-<relevance_info>
+ <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>
+ </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 32d5a8a..23d4c1d 100644 (file)
@@ -6,34 +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>
-<relevance_info>
+ <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>
+ </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 32d5a8a..23d4c1d 100644 (file)
@@ -6,34 +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>
-<relevance_info>
+ <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>
+ </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 64bda48..41fdbea 100644 (file)
@@ -6,30 +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>
-<relevance_info>
+ <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>
+ </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 154ce24..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 60ab8a7..3acd5ed 100644 (file)
@@ -6,61 +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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 8d50bf8..abbdbbb 100644 (file)
@@ -6,28 +6,30 @@
 <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>
-<relevance_info>
+ <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);
@@ -36,7 +38,7 @@ 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>
+ </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 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 409dc0f..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 c36ef7a..d048c37 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index c36ef7a..d048c37 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index c36ef7a..d048c37 100644 (file)
@@ -6,25 +6,27 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title the religious teachers of greece author adam james</recid>
 </hit>
 </show>
\ No newline at end of file
index 1ca64b1..23651d5 100644 (file)
@@ -6,26 +6,28 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 </show>
\ No newline at end of file
index 70dbd80..4a3e3ce 100644 (file)
@@ -6,79 +6,87 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 1a12e85..c85fa42 100644 (file)
@@ -7,26 +7,28 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title washington metropolitan area rail computer feasibility study author englund carl r</recid>
 </hit>
 </show>
\ No newline at end of file
index 4604b8b..1a093fc 100644 (file)
@@ -7,79 +7,87 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 4604b8b..1a093fc 100644 (file)
@@ -7,79 +7,87 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 1735d94..8ea99ae 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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index 4604b8b..1a093fc 100644 (file)
@@ -7,79 +7,87 @@
 <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <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</recid>
+ </relevance_info>
+ <recid>content: title reconstruction tomography in diagnostic radiology and nuclear medicine</recid>
 </hit>
 </show>
\ No newline at end of file
index aae7890..daca1d6 100644 (file)
@@ -6,36 +6,40 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734);
 score = relevance(50734);
-</relevance_info>
-<recid>content: title adobe illustrator for the mac author woodward c michael</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -44,24 +48,26 @@ computer: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734);
 score = relevance(50734);
-</relevance_info>
-<recid>content: title advanced computer performance modeling and simulation</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
@@ -69,22 +75,24 @@ computer: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.084557) (50734);
 score = relevance(50734);
-</relevance_info>
-<recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -92,22 +100,24 @@ computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](5.500000) * idf[1](0.084557) (46506);
 score = relevance(46506);
-</relevance_info>
-<recid>content: title software design and usability author kaasgaard klaus</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=description vecf[1] += mult(3) / length(14);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
@@ -116,41 +126,45 @@ computer: field=title vecf[1] += mult(6) / length(11);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](5.259740) * idf[1](0.084557) (44474);
 score = relevance(44474);
-</relevance_info>
-<recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(4);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](5.250000) * idf[1](0.084557) (44392);
 score = relevance(44392);
-</relevance_info>
-<recid>content: title computer peripherals author cook barry m</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=description vecf[1] += mult(3) / length(27);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -158,169 +172,185 @@ computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.611111) * idf[1](0.084557) (38990);
 score = relevance(38990);
-</relevance_info>
-<recid>content: title kids computer book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title computer friendly author steinbacher raymond</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title computer misuse</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title computer networking author ross keith w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title coreldraw for windows author davis phyllis</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title quicken for the mac author langer maria</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title sicherheit und schutz im netz</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.084557) (38050);
 score = relevance(38050);
-</relevance_info>
-<recid>content: title unix secure shell author carasik anne h</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -328,116 +358,126 @@ computer: field=title vecf[1] += mult(6) / length(8);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.250000) * idf[1](0.084557) (35936);
 score = relevance(35936);
-</relevance_info>
-<recid>content: title eight international conference on computer communications and networks</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822);
 score = relevance(33822);
-</relevance_info>
-<recid>content: title building storage networks author farley marc</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(1);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822);
 score = relevance(33822);
-</relevance_info>
-<recid>content: title complete cl author malaga ernie</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822);
 score = relevance(33822);
-</relevance_info>
-<recid>content: title d games author watt alan h</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822);
 score = relevance(33822);
-</relevance_info>
-<recid>content: title java applications strategies for the as author denoncourt don</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(110))/termoccur(102));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.084557) (33822);
 score = relevance(33822);
-</relevance_info>
-<recid>content: title mastering algorithms with c author loudon kyle</recid>
+ </relevance_info>
+ <recid>content: title mastering algorithms with c author loudon kyle</recid>
 </hit>
 </show>
\ No newline at end of file
index 2def561..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 2def561..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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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 a6cb644..5eeb215 100644 (file)
@@ -6,42 +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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <recid>content: title oil gas drilling author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 44a0bc6..6749c16 100644 (file)
@@ -6,18 +6,20 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675);
 score = relevance(34675);
-</relevance_info>
-<recid>content: title water author de villiers marq medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(7);
@@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306);
 score = relevance(32306);
-</relevance_info>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153);
 score = relevance(30153);
-</relevance_info>
-<recid>content: title water author majeed abdul medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(19);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613);
 score = relevance(27613);
-</relevance_info>
-<recid>content: title water author grant pamela medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137);
 score = relevance(27137);
-</relevance_info>
-<recid>content: title water law author fisher d e medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233);
 score = relevance(26233);
-</relevance_info>
-<recid>content: title a primer on fresh water medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(4);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(8);
@@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836);
 score = relevance(21836);
-</relevance_info>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411);
 score = relevance(20411);
-</relevance_info>
-<recid>content: title water in press medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353);
 score = relevance(20353);
-</relevance_info>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(17);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700);
 score = relevance(19700);
-</relevance_info>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599);
 score = relevance(19599);
-</relevance_info>
-<recid>content: title water technology management medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(21);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427);
 score = relevance(19427);
-</relevance_info>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297);
 score = relevance(19297);
-</relevance_info>
-<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>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
@@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845);
 score = relevance(18845);
-</relevance_info>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393);
 score = relevance(18393);
-</relevance_info>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title water law medium book</recid>
+ </relevance_info>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index bff62f2..2c6aec3 100644 (file)
@@ -6,18 +6,20 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030305) (34851);
 score = relevance(34851);
-</relevance_info>
-<recid>content: title water author de villiers marq medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(7);
@@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030305) (32470);
 score = relevance(32470);
-</relevance_info>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030305) (30305);
 score = relevance(30305);
-</relevance_info>
-<recid>content: title water author majeed abdul medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(19);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030305) (27753);
 score = relevance(27753);
-</relevance_info>
-<recid>content: title water author grant pamela medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030305) (27274);
 score = relevance(27274);
-</relevance_info>
-<recid>content: title water law author fisher d e medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030305) (26365);
 score = relevance(26365);
-</relevance_info>
-<recid>content: title a primer on fresh water medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(4);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729);
 score = relevance(22729);
-</relevance_info>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(8);
@@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729);
 score = relevance(22729);
-</relevance_info>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030305) (22729);
 score = relevance(22729);
-</relevance_info>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030305) (21946);
 score = relevance(21946);
-</relevance_info>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -301,34 +323,36 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514);
 score = relevance(20514);
-</relevance_info>
-<recid>content: title water in press medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=title vecf[1] += mult(6) / length(2);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
 water: field=title vecf[1] += mult(6) / length(2);
@@ -336,32 +360,34 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514);
 score = relevance(20514);
-</relevance_info>
-<recid>content: title water power author frizell joseph p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -371,24 +397,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030305) (20514);
 score = relevance(20514);
-</relevance_info>
-<recid>content: title water supply engineering author folwell amory prescott medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -397,24 +425,26 @@ water: field=title vecf[1] += mult(6) / length(12);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030305) (20456);
 score = relevance(20456);
-</relevance_info>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(17);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -423,22 +453,24 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030305) (19800);
 score = relevance(19800);
-</relevance_info>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -446,24 +478,26 @@ water: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030305) (19698);
 score = relevance(19698);
-</relevance_info>
-<recid>content: title water technology management medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(21);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -472,24 +506,26 @@ water: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030305) (19525);
 score = relevance(19525);
-</relevance_info>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -497,23 +533,25 @@ water: field=title vecf[1] += mult(6) / length(15);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030305) (19395);
 score = relevance(19395);
-</relevance_info>
-<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>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
@@ -521,22 +559,24 @@ water: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030305) (18940);
 score = relevance(18940);
-</relevance_info>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -545,7 +585,7 @@ water: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(200))/termoccur(195));
 water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030305) (18486);
 score = relevance(18486);
-</relevance_info>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ </relevance_info>
+ <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 d62cbdc..50639e8 100644 (file)
@@ -6,44 +6,48 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(2))/termoccur(2));
 water: relevance += 100000 * vecf[1](3.000000) * idf[1](0.405465) (121639);
 score = relevance(121639);
-</relevance_info>
-<recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(6) / length(14);
 idf[1] = log(((1 + total(2))/termoccur(2));
 water: relevance += 100000 * vecf[1](1.928571) * idf[1](0.405465) (78196);
 score = relevance(78196);
-</relevance_info>
-<recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
+ </relevance_info>
+ <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 44a0bc6..6749c16 100644 (file)
@@ -6,18 +6,20 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675);
 score = relevance(34675);
-</relevance_info>
-<recid>content: title water author de villiers marq medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(7);
@@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306);
 score = relevance(32306);
-</relevance_info>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153);
 score = relevance(30153);
-</relevance_info>
-<recid>content: title water author majeed abdul medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(19);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613);
 score = relevance(27613);
-</relevance_info>
-<recid>content: title water author grant pamela medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137);
 score = relevance(27137);
-</relevance_info>
-<recid>content: title water law author fisher d e medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233);
 score = relevance(26233);
-</relevance_info>
-<recid>content: title a primer on fresh water medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(4);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(8);
@@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836);
 score = relevance(21836);
-</relevance_info>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411);
 score = relevance(20411);
-</relevance_info>
-<recid>content: title water in press medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353);
 score = relevance(20353);
-</relevance_info>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(17);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700);
 score = relevance(19700);
-</relevance_info>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599);
 score = relevance(19599);
-</relevance_info>
-<recid>content: title water technology management medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(21);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427);
 score = relevance(19427);
-</relevance_info>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297);
 score = relevance(19297);
-</relevance_info>
-<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>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
@@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845);
 score = relevance(18845);
-</relevance_info>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393);
 score = relevance(18393);
-</relevance_info>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title water law medium book</recid>
+ </relevance_info>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d62cbdc..50639e8 100644 (file)
@@ -6,44 +6,48 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(2))/termoccur(2));
 water: relevance += 100000 * vecf[1](3.000000) * idf[1](0.405465) (121639);
 score = relevance(121639);
-</relevance_info>
-<recid>content: title the nitrogen permitting and trading plan for long island sound medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(6) / length(14);
 idf[1] = log(((1 + total(2))/termoccur(2));
 water: relevance += 100000 * vecf[1](1.928571) * idf[1](0.405465) (78196);
 score = relevance(78196);
-</relevance_info>
-<recid>content: title report of the water commissioners to the common council of the city of albany medium book</recid>
+ </relevance_info>
+ <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 44a0bc6..6749c16 100644 (file)
@@ -6,18 +6,20 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675);
 score = relevance(34675);
-</relevance_info>
-<recid>content: title water author de villiers marq medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(7);
@@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306);
 score = relevance(32306);
-</relevance_info>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153);
 score = relevance(30153);
-</relevance_info>
-<recid>content: title water author majeed abdul medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(19);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613);
 score = relevance(27613);
-</relevance_info>
-<recid>content: title water author grant pamela medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137);
 score = relevance(27137);
-</relevance_info>
-<recid>content: title water law author fisher d e medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233);
 score = relevance(26233);
-</relevance_info>
-<recid>content: title a primer on fresh water medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(4);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(8);
@@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836);
 score = relevance(21836);
-</relevance_info>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411);
 score = relevance(20411);
-</relevance_info>
-<recid>content: title water in press medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353);
 score = relevance(20353);
-</relevance_info>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(17);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700);
 score = relevance(19700);
-</relevance_info>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599);
 score = relevance(19599);
-</relevance_info>
-<recid>content: title water technology management medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(21);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427);
 score = relevance(19427);
-</relevance_info>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297);
 score = relevance(19297);
-</relevance_info>
-<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>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
@@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845);
 score = relevance(18845);
-</relevance_info>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393);
 score = relevance(18393);
-</relevance_info>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title water law medium book</recid>
+ </relevance_info>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index 44a0bc6..6749c16 100644 (file)
@@ -6,18 +6,20 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -25,29 +27,31 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](11.500000) * idf[1](0.030153) (34675);
 score = relevance(34675);
-</relevance_info>
-<recid>content: title water author de villiers marq medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(7);
@@ -57,24 +61,26 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.714286) * idf[1](0.030153) (32306);
 score = relevance(32306);
-</relevance_info>
-<recid>content: title potable water and methods of detecting impurities author baker m n medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -82,49 +88,53 @@ water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](10.000000) * idf[1](0.030153) (30153);
 score = relevance(30153);
-</relevance_info>
-<recid>content: title water author majeed abdul medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(19);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.157894) * idf[1](0.030153) (27613);
 score = relevance(27613);
-</relevance_info>
-<recid>content: title water author grant pamela medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -132,25 +142,27 @@ water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](9.000000) * idf[1](0.030153) (27137);
 score = relevance(27137);
-</relevance_info>
-<recid>content: title water law author fisher d e medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -159,53 +171,57 @@ water: field=title vecf[1] += mult(6) / length(5);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](8.700000) * idf[1](0.030153) (26233);
 score = relevance(26233);
-</relevance_info>
-<recid>content: title a primer on fresh water medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(4);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water and water supplies author thresh john clough medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=title vecf[1] += mult(12) / length(8);
@@ -215,48 +231,52 @@ water: field=title vecf[1] += mult(12) / length(8);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water quality assessment of the state water project medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.500000) * idf[1](0.030153) (22614);
 score = relevance(22614);
-</relevance_info>
-<recid>content: title water supply author mason william pitt medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -265,33 +285,35 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](7.241758) * idf[1](0.030153) (21836);
 score = relevance(21836);
-</relevance_info>
-<recid>content: title the law of waters and water rights author farnham henry p medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=title vecf[1] += mult(6) / length(3);
 water: field=title-remainder vecf[1] += mult(5) / length(13);
@@ -301,24 +323,26 @@ water: field=title-remainder vecf[1] += mult(5) / length(13);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.769231) * idf[1](0.030153) (20411);
 score = relevance(20411);
-</relevance_info>
-<recid>content: title water in press medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -327,24 +351,26 @@ water: field=title vecf[1] += mult(6) / length(12);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.750000) * idf[1](0.030153) (20353);
 score = relevance(20353);
-</relevance_info>
-<recid>content: title regulations on the disposal of arsenic residuals from drinking water treatment plants medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(17);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(3);
@@ -353,22 +379,24 @@ water: field=title vecf[1] += mult(6) / length(7);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.533614) * idf[1](0.030153) (19700);
 score = relevance(19700);
-</relevance_info>
-<recid>content: title a guide to montana water quality regulation author bryan michelle medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -376,24 +404,26 @@ water: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.500000) * idf[1](0.030153) (19599);
 score = relevance(19599);
-</relevance_info>
-<recid>content: title water technology management medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=description vecf[1] += mult(3) / length(21);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -402,24 +432,26 @@ water: field=title vecf[1] += mult(12) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.442857) * idf[1](0.030153) (19427);
 score = relevance(19427);
-</relevance_info>
-<recid>content: title aquatic habitat indicators and their application to water quality objectives within the clean water act author bauer steve medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -427,23 +459,25 @@ water: field=title vecf[1] += mult(6) / length(15);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.400000) * idf[1](0.030153) (19297);
 score = relevance(19297);
-</relevance_info>
-<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>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=subject vecf[1] += mult(3) / length(4);
@@ -451,22 +485,24 @@ water: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.250000) * idf[1](0.030153) (18845);
 score = relevance(18845);
-</relevance_info>
-<recid>content: title surface water quality monitoring procedures manual medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(3);
 water: field=subject vecf[1] += mult(3) / length(2);
@@ -475,46 +511,50 @@ water: field=title vecf[1] += mult(6) / length(10);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.100000) * idf[1](0.030153) (18393);
 score = relevance(18393);
-</relevance_info>
-<recid>content: title international conference on management of drinking water resources chennai december medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(2);
 water: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title mercados e instituciones de aguas en bolivia medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 water: field=subject vecf[1] += mult(3) / length(1);
 water: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(98));
 water: relevance += 100000 * vecf[1](6.000000) * idf[1](0.030153) (18091);
 score = relevance(18091);
-</relevance_info>
-<recid>content: title water law medium book</recid>
+ </relevance_info>
+ <recid>content: title water law medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index cbe4f17..be9c7de 100644 (file)
@@ -6,36 +6,40 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512);
 score = relevance(49512);
-</relevance_info>
-<recid>content: title adobe illustrator for the mac author woodward c michael</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -44,24 +48,26 @@ computer: field=title vecf[1] += mult(6) / length(6);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512);
 score = relevance(49512);
-</relevance_info>
-<recid>content: title advanced computer performance modeling and simulation</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
@@ -69,22 +75,24 @@ computer: field=title vecf[1] += mult(6) / length(4);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](6.000000) * idf[1](0.082521) (49512);
 score = relevance(49512);
-</relevance_info>
-<recid>content: title cyberterrorism and computer crimes author aldrich richard w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -92,22 +100,24 @@ computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](5.500000) * idf[1](0.082521) (45386);
 score = relevance(45386);
-</relevance_info>
-<recid>content: title software design and usability author kaasgaard klaus</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=description vecf[1] += mult(3) / length(14);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
@@ -116,41 +126,45 @@ computer: field=title vecf[1] += mult(6) / length(11);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](5.259740) * idf[1](0.082521) (43403);
 score = relevance(43403);
-</relevance_info>
-<recid>content: title everything you need to know about the dangers of computer hacking author knittel john</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(4);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](5.250000) * idf[1](0.082521) (43323);
 score = relevance(43323);
-</relevance_info>
-<recid>content: title computer peripherals author cook barry m</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=description vecf[1] += mult(3) / length(27);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -158,169 +172,185 @@ computer: field=title vecf[1] += mult(6) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.611111) * idf[1](0.082521) (38051);
 score = relevance(38051);
-</relevance_info>
-<recid>content: title kids computer book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title computer friendly author steinbacher raymond</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title computer misuse</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=title vecf[1] += mult(6) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title computer networking author ross keith w</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title coreldraw for windows author davis phyllis</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title quicken for the mac author langer maria</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title sicherheit und schutz im netz</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.500000) * idf[1](0.082521) (37134);
 score = relevance(37134);
-</relevance_info>
-<recid>content: title unix secure shell author carasik anne h</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(3);
@@ -328,116 +358,126 @@ computer: field=title vecf[1] += mult(6) / length(8);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.250000) * idf[1](0.082521) (35071);
 score = relevance(35071);
-</relevance_info>
-<recid>content: title eight international conference on computer communications and networks</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008);
 score = relevance(33008);
-</relevance_info>
-<recid>content: title building storage networks author farley marc</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(1);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008);
 score = relevance(33008);
-</relevance_info>
-<recid>content: title complete cl author malaga ernie</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(3);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008);
 score = relevance(33008);
-</relevance_info>
-<recid>content: title d games author watt alan h</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(1);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008);
 score = relevance(33008);
-</relevance_info>
-<recid>content: title java applications strategies for the as author denoncourt don</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 computer: field=subject vecf[1] += mult(3) / length(3);
 computer: field=subject vecf[1] += mult(3) / length(2);
 computer: field=subject vecf[1] += mult(3) / length(2);
 idf[1] = log(((1 + total(100))/termoccur(93));
 computer: relevance += 100000 * vecf[1](4.000000) * idf[1](0.082521) (33008);
 score = relevance(33008);
-</relevance_info>
-<recid>content: title mastering algorithms with c author loudon kyle</recid>
+ </relevance_info>
+ <recid>content: title mastering algorithms with c author loudon kyle</recid>
 </hit>
 </show>
\ No newline at end of file
index 3ef3ad2..78171fa 100644 (file)
@@ -6,74 +6,80 @@
 <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>
-<relevance_info>
+  <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>
+ </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 
+ <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>
-<relevance_info>
+  <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>
+ </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, 
+ <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>
-<relevance_info>
+  <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>
+ </relevance_info>
+ <recid>content: title oil gas drilling author medium book</recid>
 </hit>
 </show>
\ No newline at end of file
index d8ce812..b8939f0 100644 (file)
@@ -6,49 +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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </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>
-<relevance_info>
+ <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>
+ </relevance_info>
+ <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 5be1e22..d46448f 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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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="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>
-<relevance_info>
+ <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>
+ <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>
+ </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-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>
-<relevance_info>
+ <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>
+ <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>
+ </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 9d2c38c..1d54553 100644 (file)
@@ -6,53 +6,59 @@
 <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=description vecf[1] += mult(3) / length(31);
 idf[1] = log(((1 + total(3))/termoccur(2));
 the: relevance += 100000 * vecf[1](0.096774) * idf[1](0.693147) (6707);
 score = relevance(6707);
-</relevance_info>
-<recid>content: title applied geology file author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 the: field=description vecf[1] += mult(3) / length(42);
 idf[1] = log(((1 + total(3))/termoccur(2));
 the: relevance += 100000 * vecf[1](0.071429) * idf[1](0.693147) (4951);
 score = relevance(4951);
-</relevance_info>
-<recid>content: title utah geological and mineral survey publications author medium book</recid>
+ </relevance_info>
+ <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>
-<relevance_info>
+ <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>
+ <relevance_info>
 idf[1] = log(((1 + total(3))/termoccur(2));
 the: relevance += 100000 * vecf[1](0.000000) * idf[1](0.693147) (0);
 score = relevance(0);
-</relevance_info>
-<recid>content: title utah earthquake epicenters author medium book</recid>
+ </relevance_info>
+ <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