From b026a4535c9ce5e0d371f23f19f9a337963bc908 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 26 Jun 2012 16:37:09 +0200 Subject: [PATCH] record parameter checksum which is an alternative to offset (which might change between re-searches). The checksum is returned in the per-record part in attribute checksum. --- src/http_command.c | 27 ++++++++++---- src/record.c | 8 +++++ src/record.h | 4 ++- test/test_facets_13.res | 6 ++-- test/test_facets_16.res | 6 ++-- test/test_facets_24.res | 27 +++++++++----- test/test_facets_4.res | 21 +++++++---- test/test_facets_9.res | 6 ++-- test/test_filter_12.res | 36 ++++++++++++------- test/test_filter_16.res | 60 ++++++++++++++++++++----------- test/test_filter_17.res | 63 +++++++++++++++++++++----------- test/test_filter_3.res | 36 ++++++++++++------- test/test_filter_6.res | 21 +++++++---- test/test_filter_9.res | 21 +++++++---- test/test_http.urls | 2 +- test/test_http_10.res | 30 ++++++++++------ test/test_http_11.res | 30 ++++++++++------ test/test_http_18.res | 9 +++-- test/test_http_23.res | 6 ++-- test/test_http_28.res | 9 +++-- test/test_http_32.res | 9 +++-- test/test_http_36.res | 24 ++++++++----- test/test_http_41.res | 24 ++++++++----- test/test_http_42.res | 15 +++++--- test/test_http_45.res | 3 +- test/test_http_49.res | 3 +- test/test_http_5.res | 30 ++++++++++------ test/test_http_50.res | 3 +- test/test_http_6.res | 6 ++-- test/test_http_60.res | 3 +- test/test_http_63.res | 3 +- test/test_http_66.res | 3 +- test/test_http_72.res | 3 +- test/test_http_74.res | 3 +- test/test_http_76.res | 12 ++++--- test/test_http_79.res | 6 ++-- test/test_http_8.res | 30 ++++++++++------ test/test_http_81.res | 3 +- test/test_http_9.res | 30 ++++++++++------ test/test_icu_4.res | 30 ++++++++++------ test/test_icu_5.res | 30 ++++++++++------ test/test_icu_6.res | 30 ++++++++++------ test/test_icu_7.res | 30 ++++++++++------ test/test_icu_9.res | 30 ++++++++++------ test/test_limit_limitmap_15.res | 3 +- test/test_limit_limitmap_18.res | 3 +- test/test_limit_limitmap_21.res | 3 +- test/test_limit_limitmap_24.res | 3 +- test/test_limit_limitmap_26.res | 12 ++++--- test/test_limit_limitmap_28.res | 3 +- test/test_limit_limitmap_30.res | 12 ++++--- test/test_limit_limitmap_4.res | 30 ++++++++++------ test/test_limit_limitmap_9.res | 60 ++++++++++++++++++++----------- test/test_post_10.res | 30 ++++++++++------ test/test_post_8.res | 30 ++++++++++------ test/test_post_9.res | 9 +++-- test/test_solr_13.res | 69 +++++++++++++++++++++++------------ test/test_solr_18.res | 75 ++++++++++++++++++++++++++------------- test/test_solr_22.res | 6 ++-- test/test_solr_25.res | 69 +++++++++++++++++++++++------------ test/test_solr_29.res | 6 ++-- test/test_solr_4.res | 69 +++++++++++++++++++++++------------ test/test_solr_9.res | 69 +++++++++++++++++++++++------------ test/test_termlist_block_9.res | 60 ++++++++++++++++++++----------- test/test_turbomarcxml_4.res | 9 +++-- test/test_turbomarcxml_7.res | 9 +++-- test/test_url_10.res | 21 +++++++---- test/test_url_17.res | 30 ++++++++++------ test/test_url_18.res | 30 ++++++++++------ test/test_url_3.res | 30 ++++++++++------ test/test_url_6.res | 9 +++-- test/test_url_7.res | 15 +++++--- test/test_url_8.res | 15 +++++--- test/test_url_9.res | 21 +++++++---- 74 files changed, 1073 insertions(+), 528 deletions(-) diff --git a/src/http_command.c b/src/http_command.c index c92c7c3..122bef5 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -875,10 +875,14 @@ static void write_subrecord(struct record *r, WRBUF w, wrbuf_puts(w, "client)); - wrbuf_puts(w, "\" "); + 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, "\">"); write_metadata(w, service, r->metadata, show_details); @@ -944,6 +948,7 @@ static void show_record(struct http_channel *c, struct http_session *s) const char *idstr = http_argbyname(rq, "id"); const char *offsetstr = http_argbyname(rq, "offset"); const char *binarystr = http_argbyname(rq, "binary"); + const char *checksumstr = http_argbyname(rq, "checksum"); if (!s) return; @@ -967,9 +972,8 @@ static void show_record(struct http_channel *c, struct http_session *s) } return; } - if (offsetstr) + if (offsetstr || checksumstr) { - int offset = atoi(offsetstr); const char *syntax = http_argbyname(rq, "syntax"); const char *esn = http_argbyname(rq, "esn"); int i; @@ -980,8 +984,19 @@ static void show_record(struct http_channel *c, struct http_session *s) if (binarystr && *binarystr != '0') binary = 1; - for (i = 0; i < offset && r; r = r->next, i++) - ; + if (checksumstr) + { + long v = atol(checksumstr); + for (i = 0; r; r = r->next) + if (v == r->checksum) + break; + } + else + { + int offset = atoi(offsetstr); + for (i = 0; i < offset && r; r = r->next, i++) + ; + } if (!r) { error(rs, PAZPAR2_RECORD_FAIL, "no record at offset given"); diff --git a/src/record.c b/src/record.c index a052a32..7db84e3 100644 --- a/src/record.c +++ b/src/record.c @@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #endif #include "pazpar2_config.h" +#include "client.h" #include "record.h" union data_types * data_types_assign(NMEM nmem, @@ -55,6 +56,8 @@ struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys, { struct record * record = 0; int i = 0; + const char *name = client_get_id(client); + unsigned h = position; // assert(nmem); @@ -76,6 +79,11 @@ struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys, record->sortkeys[i] = 0; record->position = position; + + for (i = 0; name[i]; i++) + h = h * 65509 + ((unsigned char *) name)[i]; + + record->checksum = h; return record; } diff --git a/src/record.h b/src/record.h index 2b2075f..66df1af 100644 --- a/src/record.h +++ b/src/record.h @@ -57,13 +57,15 @@ union data_types * data_types_assign(NMEM nmem, struct record { struct client *client; // Array mirrors list of metadata fields in config - struct record_metadata **metadata; + struct record_metadata **metadata; // Array mirrors list of sortkey fields in config union data_types **sortkeys; // Next in cluster of merged records struct record *next; // client result set position; int position; + // checksum + unsigned checksum; }; diff --git a/test/test_facets_13.res b/test/test_facets_13.res index a399233..81bb1ea 100644 --- a/test/test_facets_13.res +++ b/test/test_facets_13.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 diff --git a/test/test_facets_16.res b/test/test_facets_16.res index a6464e4..b42b13e 100644 --- a/test/test_facets_16.res +++ b/test/test_facets_16.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 diff --git a/test/test_facets_24.res b/test/test_facets_24.res index 15d66ce..2048b77 100644 --- a/test/test_facets_24.res +++ b/test/test_facets_24.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -22,7 +24,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -33,7 +36,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -47,7 +51,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -62,7 +67,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -75,7 +81,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop -1974 +1974 Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -86,7 +93,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -97,7 +105,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_facets_4.res b/test/test_facets_4.res index dbe5c12..0e88890 100644 --- a/test/test_facets_4.res +++ b/test/test_facets_4.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -22,7 +24,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -33,7 +36,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -47,7 +51,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -60,7 +65,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop -1974 +1974 Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -71,7 +77,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_facets_9.res b/test/test_facets_9.res index 6bbd0d6..4724806 100644 --- a/test/test_facets_9.res +++ b/test/test_facets_9.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 diff --git a/test/test_filter_12.res b/test/test_filter_12.res index 63f3e42..0f10df7 100644 --- a/test/test_filter_12.res +++ b/test/test_filter_12.res @@ -15,7 +15,8 @@ Letterman, David Leno, Jay Talk shows -Includes index +Includes index The late shift Letterman, Leno, and the network battle for the night 1993 @@ -34,7 +35,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -52,7 +54,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -72,7 +75,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -90,7 +94,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -107,7 +112,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -125,7 +131,8 @@ 1987 Paulu, Nancy Dropouts -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Dealing with dropouts the urban superintendents' call to action 1987 @@ -143,7 +150,8 @@ 1986 Physical education Handicapped children -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 final report, I'M SPECIAL network 1986 @@ -159,7 +167,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -172,7 +181,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -187,7 +197,8 @@ United States Educational technology Federal aid to education -"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"--T.p. verso +"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"--T.p. verso Technology programs that work 1984 United States @@ -212,7 +223,8 @@ School libraries Instructional materials centers Public libraries -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Check this out library program models 1987 diff --git a/test/test_filter_16.res b/test/test_filter_16.res index 1ad5c64..1617afe 100644 --- a/test/test_filter_16.res +++ b/test/test_filter_16.res @@ -12,7 +12,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -26,7 +27,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -40,7 +42,8 @@ United States Educational technology Federal aid to education -"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"--T.p. verso +"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"--T.p. verso Technology programs that work 1984 United States @@ -61,7 +64,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -78,7 +82,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -94,7 +99,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -111,7 +117,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -129,7 +136,8 @@ Letterman, David Leno, Jay Talk shows -Includes index +Includes index The late shift Letterman, Leno, and the network battle for the night 1993 @@ -150,7 +158,8 @@ Information networks Computer Systems Online Systems -Title from caption +Title from caption Internet world 1992 Internet (Computer network) @@ -168,7 +177,8 @@ 1993 Internet (Computer network) Mailing lists -Includes index +Includes index Internet mailing lists 1993 @@ -181,7 +191,8 @@ Info Canada 1991 -Includes: Network world Canada, Sept. 1991-Jan. 1992 +Includes: Network world Canada, Sept. 1991-Jan. 1992 Info Canada 1991 Title from caption @@ -191,10 +202,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -206,7 +219,8 @@ XXIII, XXXVI, LII, CXXI 1980 Smith, George Adam -Bible +Bible Four psalms XXIII, XXXVI, LII, CXXI 1980 @@ -223,7 +237,8 @@ FEDLINK (Network) Library information networks Libraries, Governmental, administrative, etc -Description based on: 1990 +Description based on: 1990 FEDLINK services directory for fiscal year FEDLINK (Network) Library information networks @@ -237,7 +252,8 @@ 1968 Oberst, Bruce Bible. O.T. Deuteronomy -Bibliography: p. 449-452 +Bibliography: p. 449-452 Deuteronomy 1968 Oberst, Bruce @@ -250,7 +266,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -265,7 +282,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -281,7 +299,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -301,7 +320,8 @@ School libraries Instructional materials centers Public libraries -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Check this out library program models 1987 diff --git a/test/test_filter_17.res b/test/test_filter_17.res index 677fc5e..0cf01fa 100644 --- a/test/test_filter_17.res +++ b/test/test_filter_17.res @@ -12,7 +12,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -26,7 +27,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -40,7 +42,8 @@ United States Educational technology Federal aid to education -"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"--T.p. verso +"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"--T.p. verso Technology programs that work 1984 United States @@ -61,7 +64,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -78,7 +82,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -94,7 +99,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -111,7 +117,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -126,7 +133,8 @@ 1986 Physical education Handicapped children -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 final report, I'M SPECIAL network 1986 @@ -146,7 +154,8 @@ Letterman, David Leno, Jay Talk shows -Includes index +Includes index The late shift Letterman, Leno, and the network battle for the night 1993 @@ -167,7 +176,8 @@ Information networks Computer Systems Online Systems -Title from caption +Title from caption Internet world 1992 Internet (Computer network) @@ -185,7 +195,8 @@ 1993 Internet (Computer network) Mailing lists -Includes index +Includes index Internet mailing lists 1993 @@ -198,7 +209,8 @@ Info Canada 1991 -Includes: Network world Canada, Sept. 1991-Jan. 1992 +Includes: Network world Canada, Sept. 1991-Jan. 1992 Info Canada 1991 Title from caption @@ -208,10 +220,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -223,7 +237,8 @@ XXIII, XXXVI, LII, CXXI 1980 Smith, George Adam -Bible +Bible Four psalms XXIII, XXXVI, LII, CXXI 1980 @@ -240,7 +255,8 @@ FEDLINK (Network) Library information networks Libraries, Governmental, administrative, etc -Description based on: 1990 +Description based on: 1990 FEDLINK services directory for fiscal year FEDLINK (Network) Library information networks @@ -254,7 +270,8 @@ 1968 Oberst, Bruce Bible. O.T. Deuteronomy -Bibliography: p. 449-452 +Bibliography: p. 449-452 Deuteronomy 1968 Oberst, Bruce @@ -269,7 +286,8 @@ 1987 Paulu, Nancy Dropouts -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Dealing with dropouts the urban superintendents' call to action 1987 @@ -284,7 +302,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -299,7 +318,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -315,7 +335,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T diff --git a/test/test_filter_3.res b/test/test_filter_3.res index 8d84ad9..832dc9c 100644 --- a/test/test_filter_3.res +++ b/test/test_filter_3.res @@ -15,7 +15,8 @@ Letterman, David Leno, Jay Talk shows -Includes index +Includes index The late shift Letterman, Leno, and the network battle for the night 1993 @@ -34,7 +35,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -52,7 +54,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -72,7 +75,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -90,7 +94,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -107,7 +112,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -125,7 +131,8 @@ 1987 Paulu, Nancy Dropouts -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Dealing with dropouts the urban superintendents' call to action 1987 @@ -143,7 +150,8 @@ 1986 Physical education Handicapped children -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 final report, I'M SPECIAL network 1986 @@ -159,7 +167,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -172,7 +181,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -187,7 +197,8 @@ United States Educational technology Federal aid to education -"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"--T.p. verso +"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"--T.p. verso Technology programs that work 1984 United States @@ -212,7 +223,8 @@ School libraries Instructional materials centers Public libraries -Distributed to depository libraries in microfiche +Distributed to depository libraries in microfiche Check this out library program models 1987 diff --git a/test/test_filter_6.res b/test/test_filter_6.res index 51c8923..07bccc8 100644 --- a/test/test_filter_6.res +++ b/test/test_filter_6.res @@ -11,7 +11,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -29,7 +30,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -47,7 +49,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -64,7 +67,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -80,7 +84,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -91,10 +96,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 diff --git a/test/test_filter_9.res b/test/test_filter_9.res index 51c8923..07bccc8 100644 --- a/test/test_filter_9.res +++ b/test/test_filter_9.res @@ -11,7 +11,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -29,7 +30,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -47,7 +49,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -64,7 +67,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -80,7 +84,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -91,10 +96,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 diff --git a/test/test_http.urls b/test/test_http.urls index c83b70d..7d9a1fd 100644 --- a/test/test_http.urls +++ b/test/test_http.urls @@ -48,7 +48,7 @@ http://localhost:9763/search.pz2?command=init&pz:elements%5Bz3950.indexdata.com% http://localhost:9763/search.pz2?session=7&command=search&query=greece 1 http://localhost:9763/search.pz2?session=7&command=show&block=1 1 http://localhost:9763/search.pz2?session=6&command=show&block=1 -http://localhost:9763/search.pz2?session=6&command=record&id=content%3A+title+computer+processing+of+dynamic+images+from+an+anger+scintillation+camera+author+medium+book&offset=0 +http://localhost:9763/search.pz2?session=6&command=record&id=content%3A+title+computer+processing+of+dynamic+images+from+an+anger+scintillation+camera+author+medium+book&checksum=2614320583 http://localhost:9763/search.pz2?command=init http://localhost:9763/search.pz2?session=8&command=settings&pz:name%5Bz3950.indexdata.com%2Fmarc%5D=marc&pz:requestsyntax%5Bz3950.indexdata.com%2Fmarc%5D=usmarc&pz:nativesyntax%5Bz3950.indexdata.com%2Fmarc%5D=iso2709&pz:xslt%5Bz3950.indexdata.com%2Fmarc%5D=marc21%5Ftest.xsl&pz:recordfilter%5Bz3950.indexdata.com%2Fmarc%5D=date http://localhost:9763/search.pz2?session=8&command=search&query=xyzzyz diff --git a/test/test_http_10.res b/test/test_http_10.res index 2678940..0c5a8f4 100644 --- a/test/test_http_10.res +++ b/test/test_http_10.res @@ -11,7 +11,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -28,7 +29,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -44,7 +46,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -60,7 +63,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -78,7 +82,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -99,7 +104,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -119,7 +125,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -137,7 +144,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -152,13 +160,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX diff --git a/test/test_http_11.res b/test/test_http_11.res index 8cfa59f..6da323e 100644 --- a/test/test_http_11.res +++ b/test/test_http_11.res @@ -11,7 +11,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -29,7 +30,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -47,7 +49,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -67,7 +70,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -88,7 +92,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -107,7 +112,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -123,7 +129,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -139,7 +146,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -152,13 +160,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX diff --git a/test/test_http_18.res b/test/test_http_18.res index 0a48c50..1179ede 100644 --- a/test/test_http_18.res +++ b/test/test_http_18.res @@ -8,7 +8,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 1692-PRESENT @@ -20,7 +21,8 @@ GROUNDWATER RESOURCE MAPS - COUNTY SERIES -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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine +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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine GROUNDWATER RESOURCE MAPS - COUNTY SERIES 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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine 1972-1978 @@ -32,7 +34,8 @@ OIL/GAS DRILLING -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 +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 OIL/GAS DRILLING 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 1907-PRESENT diff --git a/test/test_http_23.res b/test/test_http_23.res index 8845b1a..116b479 100644 --- a/test/test_http_23.res +++ b/test/test_http_23.res @@ -7,7 +7,8 @@ How to program a computer Jack Collins 11224466 -11224467 +11224467 How to program a computer Jack Collins 11224467 @@ -15,7 +16,8 @@ XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins 11224466 diff --git a/test/test_http_28.res b/test/test_http_28.res index bca8ca8..848119e 100644 --- a/test/test_http_28.res +++ b/test/test_http_28.res @@ -7,21 +7,24 @@ 3 -UTAH GEOCHROMOMETRY +UTAH GEOCHROMOMETRY UTAH GEOCHROMOMETRY 300000 content: title utah geochromometry author medium book -UTAH EARTHQUAKE EPICENTERS +UTAH EARTHQUAKE EPICENTERS UTAH EARTHQUAKE EPICENTERS 200000 content: title utah earthquake epicenters author medium book -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS +UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 100000 content: title utah geological and mineral survey publications author medium book diff --git a/test/test_http_32.res b/test/test_http_32.res index d1e8a82..1a1a40b 100644 --- a/test/test_http_32.res +++ b/test/test_http_32.res @@ -8,7 +8,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 9416 @@ -17,7 +18,8 @@ GROUNDWATER RESOURCE MAPS - COUNTY SERIES -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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine +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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine GROUNDWATER RESOURCE MAPS - COUNTY SERIES 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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine 0 @@ -26,7 +28,8 @@ OIL/GAS DRILLING -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 +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 OIL/GAS DRILLING 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 0 diff --git a/test/test_http_36.res b/test/test_http_36.res index 77a1857..476a4e6 100644 --- a/test/test_http_36.res +++ b/test/test_http_36.res @@ -10,7 +10,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -27,7 +28,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -46,7 +48,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -65,7 +68,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -86,7 +90,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -109,7 +114,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -128,7 +134,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -145,7 +152,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_http_41.res b/test/test_http_41.res index cc72d29..ae79c68 100644 --- a/test/test_http_41.res +++ b/test/test_http_41.res @@ -7,56 +7,64 @@ 8 -APPLIED GEOLOGY FILE +APPLIED GEOLOGY FILE APPLIED GEOLOGY FILE 0 content: title applied geology file author medium book -ELECTRIC LOG LIBRARY +ELECTRIC LOG LIBRARY ELECTRIC LOG LIBRARY 0 content: title electric log library author medium book -ISOTOPIC DATES OF ROCKS AND MINERALS +ISOTOPIC DATES OF ROCKS AND MINERALS ISOTOPIC DATES OF ROCKS AND MINERALS 0 content: title isotopic dates of rocks and minerals author medium book -MINE MAP INDEX +MINE MAP INDEX MINE MAP INDEX 0 content: title mine map index author medium book -UTAH CRIB FILE +UTAH CRIB FILE UTAH CRIB FILE 0 content: title utah crib file author medium book -UTAH EARTHQUAKE EPICENTERS +UTAH EARTHQUAKE EPICENTERS UTAH EARTHQUAKE EPICENTERS 0 content: title utah earthquake epicenters author medium book -UTAH GEOLOGIC MAP BIBLIOGRAPHY +UTAH GEOLOGIC MAP BIBLIOGRAPHY UTAH GEOLOGIC MAP BIBLIOGRAPHY 0 content: title utah geologic map bibliography author medium book -UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS +UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 0 content: title utah geological and mineral survey publications author medium book diff --git a/test/test_http_42.res b/test/test_http_42.res index 49f526b..9ff86ef 100644 --- a/test/test_http_42.res +++ b/test/test_http_42.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -36,7 +37,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -57,7 +59,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -74,7 +77,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -90,7 +94,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 diff --git a/test/test_http_45.res b/test/test_http_45.res index ce9623a..590ad27 100644 --- a/test/test_http_45.res +++ b/test/test_http_45.res @@ -13,7 +13,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 diff --git a/test/test_http_49.res b/test/test_http_49.res index 70b1451..348baf0 100644 --- a/test/test_http_49.res +++ b/test/test_http_49.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_5.res b/test/test_http_5.res index c045cc2..23ee21f 100644 --- a/test/test_http_5.res +++ b/test/test_http_5.res @@ -8,13 +8,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -29,7 +31,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -46,7 +49,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -65,7 +69,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -84,7 +89,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -105,7 +111,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -128,7 +135,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -147,7 +155,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -164,7 +173,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_http_50.res b/test/test_http_50.res index ce9623a..590ad27 100644 --- a/test/test_http_50.res +++ b/test/test_http_50.res @@ -13,7 +13,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 diff --git a/test/test_http_6.res b/test/test_http_6.res index f2a707c..5a33609 100644 --- a/test/test_http_6.res +++ b/test/test_http_6.res @@ -7,7 +7,8 @@ How to program a computer Jack Collins 11224466 -11224467 +11224467 How to program a computer Jack Collins 11224467 @@ -15,7 +16,8 @@ XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins 11224466 diff --git a/test/test_http_60.res b/test/test_http_60.res index f9283fd..f836377 100644 --- a/test/test_http_60.res +++ b/test/test_http_60.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_63.res b/test/test_http_63.res index 70b1451..348baf0 100644 --- a/test/test_http_63.res +++ b/test/test_http_63.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_66.res b/test/test_http_66.res index 70b1451..348baf0 100644 --- a/test/test_http_66.res +++ b/test/test_http_66.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_72.res b/test/test_http_72.res index 70b1451..348baf0 100644 --- a/test/test_http_72.res +++ b/test/test_http_72.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_74.res b/test/test_http_74.res index 64e8673..95379fe 100644 --- a/test/test_http_74.res +++ b/test/test_http_74.res @@ -12,7 +12,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 diff --git a/test/test_http_76.res b/test/test_http_76.res index ba0f848..57983c5 100644 --- a/test/test_http_76.res +++ b/test/test_http_76.res @@ -10,7 +10,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -27,7 +28,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -45,7 +47,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -62,7 +65,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_http_79.res b/test/test_http_79.res index c4aa933..dda0a5b 100644 --- a/test/test_http_79.res +++ b/test/test_http_79.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James @@ -34,7 +35,8 @@ XXIII, XXXVI, LII, CXXI 1980 Smith, George Adam -Bible +Bible Four psalms XXIII, XXXVI, LII, CXXI 1980 diff --git a/test/test_http_8.res b/test/test_http_8.res index d39c96f..229adc5 100644 --- a/test/test_http_8.res +++ b/test/test_http_8.res @@ -12,7 +12,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -29,7 +30,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -45,7 +47,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -64,7 +67,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -84,7 +88,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -98,13 +103,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -118,7 +125,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -136,7 +144,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -155,7 +164,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T diff --git a/test/test_http_81.res b/test/test_http_81.res index 33d874f..cfa7ec5 100644 --- a/test/test_http_81.res +++ b/test/test_http_81.res @@ -13,7 +13,8 @@ Greek literature Philosophy, Ancient Greece -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_http_9.res b/test/test_http_9.res index 41a8c73..91d6218 100644 --- a/test/test_http_9.res +++ b/test/test_http_9.res @@ -11,7 +11,8 @@ 1973-1980 Bible. O.T Bible -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Bible. O.T @@ -31,7 +32,8 @@ Radioisotope scanning Scintillation cameras Imaging systems in medicine -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -49,7 +51,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 -Optical pattern recognition +Optical pattern recognition Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -62,13 +65,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -83,7 +88,8 @@ 1971 Universities and colleges Community colleges -Cover title +Cover title A plan for community college computer development 1971 Universities and colleges @@ -102,7 +108,8 @@ Mairs, John W Cartography Puget Sound region (Wash.) -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -122,7 +129,8 @@ proceedings of the workshop 1977 Tomography -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -138,7 +146,8 @@ The use of passwords for controlled access to computer resources 1977 Wood, Helen M -Computers +Computers The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -155,7 +164,8 @@ 1971 Englund, Carl R Railroads -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 diff --git a/test/test_icu_4.res b/test/test_icu_4.res index 5375925..30e9aff 100644 --- a/test/test_icu_4.res +++ b/test/test_icu_4.res @@ -11,7 +11,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -26,7 +27,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -40,7 +42,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -56,7 +59,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -72,7 +76,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -84,13 +89,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -103,7 +110,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -117,7 +125,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -131,7 +140,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English diff --git a/test/test_icu_5.res b/test/test_icu_5.res index fcefa9b..821e962 100644 --- a/test/test_icu_5.res +++ b/test/test_icu_5.res @@ -9,7 +9,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -24,7 +25,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -38,7 +40,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -50,13 +53,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -69,7 +74,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -84,7 +90,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -101,7 +108,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -115,7 +123,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -130,7 +139,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 diff --git a/test/test_icu_6.res b/test/test_icu_6.res index 7d0e680..608c8d7 100644 --- a/test/test_icu_6.res +++ b/test/test_icu_6.res @@ -9,7 +9,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -23,7 +24,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -37,7 +39,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -51,7 +54,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -65,7 +69,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -81,7 +86,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -97,7 +103,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -112,7 +119,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -126,13 +134,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX diff --git a/test/test_icu_7.res b/test/test_icu_7.res index 50799ac..e61d6ce 100644 --- a/test/test_icu_7.res +++ b/test/test_icu_7.res @@ -9,7 +9,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -24,7 +25,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -39,7 +41,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -54,7 +57,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -70,7 +74,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -86,7 +91,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -100,7 +106,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 @@ -114,7 +121,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -126,13 +134,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX diff --git a/test/test_icu_9.res b/test/test_icu_9.res index f03fbd3..778509c 100644 --- a/test/test_icu_9.res +++ b/test/test_icu_9.res @@ -9,7 +9,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -22,13 +23,15 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX test-usersetting-2 data: YYYYYYYYY - + How to program a computer Jack Collins XXXXXXXXXX @@ -42,7 +45,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -57,7 +61,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -71,7 +76,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -87,7 +93,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -105,7 +112,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -123,7 +131,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -139,7 +148,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_limit_limitmap_15.res b/test/test_limit_limitmap_15.res index 4060ffb..df0075e 100644 --- a/test/test_limit_limitmap_15.res +++ b/test/test_limit_limitmap_15.res @@ -10,7 +10,8 @@ The religious teachers of Greece 1972 Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_limit_limitmap_18.res b/test/test_limit_limitmap_18.res index 101bb60..8879b7f 100644 --- a/test/test_limit_limitmap_18.res +++ b/test/test_limit_limitmap_18.res @@ -10,7 +10,8 @@ The religious teachers of Greece 1972 Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_limit_limitmap_21.res b/test/test_limit_limitmap_21.res index 101bb60..8879b7f 100644 --- a/test/test_limit_limitmap_21.res +++ b/test/test_limit_limitmap_21.res @@ -10,7 +10,8 @@ The religious teachers of Greece 1972 Adam, James -Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures The religious teachers of Greece 1972 Adam, James diff --git a/test/test_limit_limitmap_24.res b/test/test_limit_limitmap_24.res index 42042ab..12b9255 100644 --- a/test/test_limit_limitmap_24.res +++ b/test/test_limit_limitmap_24.res @@ -11,7 +11,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 diff --git a/test/test_limit_limitmap_26.res b/test/test_limit_limitmap_26.res index 40370c0..4035d89 100644 --- a/test/test_limit_limitmap_26.res +++ b/test/test_limit_limitmap_26.res @@ -9,7 +9,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -21,7 +22,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -34,7 +36,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -46,7 +49,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_limit_limitmap_28.res b/test/test_limit_limitmap_28.res index 60b3c70..df0bf86 100644 --- a/test/test_limit_limitmap_28.res +++ b/test/test_limit_limitmap_28.res @@ -12,7 +12,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 diff --git a/test/test_limit_limitmap_30.res b/test/test_limit_limitmap_30.res index b568275..8e739c7 100644 --- a/test/test_limit_limitmap_30.res +++ b/test/test_limit_limitmap_30.res @@ -10,7 +10,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -22,7 +23,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -35,7 +37,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -47,7 +50,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_limit_limitmap_4.res b/test/test_limit_limitmap_4.res index 59095d8..b50618a 100644 --- a/test/test_limit_limitmap_4.res +++ b/test/test_limit_limitmap_4.res @@ -8,11 +8,13 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins XXXXXXXXXX - + How to program a computer Jack Collins XXXXXXXXXX @@ -24,7 +26,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -36,7 +39,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -49,7 +53,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -63,7 +68,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -79,7 +85,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -93,7 +100,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop -1974 +1974 Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -105,7 +113,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -117,7 +126,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_limit_limitmap_9.res b/test/test_limit_limitmap_9.res index 64ca61c..7eed3b1 100644 --- a/test/test_limit_limitmap_9.res +++ b/test/test_limit_limitmap_9.res @@ -10,7 +10,8 @@ Adobe Illustrator for the Mac fast & easy 2001 -Woodward, C. Michael +Woodward, C. Michael Adobe Illustrator for the Mac fast & easy 2001 @@ -21,7 +22,8 @@ Advanced computer performance modeling and simulation -1998 +1998 Advanced computer performance modeling and simulation 1998 45304 @@ -33,7 +35,8 @@ issues surrounding the establishment of an international regime 2000 Aldrich, Richard W -"April 2000." +"April 2000." Cyberterrorism and computer crimes issues surrounding the establishment of an international regime 2000 @@ -47,7 +50,8 @@ Software design and usability talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum 2000 -Kaasgaard, Klaus +Kaasgaard, Klaus Software design and usability talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum 2000 @@ -60,7 +64,8 @@ Everything you need to know about the dangers of computer hacking 2000 Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be +Explains what computer hacking is, who does it, and how dangerous it can be Everything you need to know about the dangers of computer hacking 2000 Knittel, John @@ -72,7 +77,8 @@ Computer peripherals 1995 -Cook, Barry M +Cook, Barry M Computer peripherals 1995 Cook, Barry M @@ -83,7 +89,8 @@ Kids' computer book 1994 -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 +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 Kids' computer book 1994 "For kids and their parents"--Cover @@ -95,7 +102,8 @@ Computer friendly 1999 -Steinbacher, Raymond +Steinbacher, Raymond Computer friendly 1999 Steinbacher, Raymond @@ -106,7 +114,8 @@ Computer misuse 1999 -"Also published as Parliamentary Paper E 31AO"--T.p. verso +"Also published as Parliamentary Paper E 31AO"--T.p. verso Computer misuse 1999 "May 1999." @@ -120,7 +129,8 @@ Computer networking a top-down approach featuring the Internet 2001 -Ross, Keith W +Ross, Keith W Computer networking a top-down approach featuring the Internet 2001 @@ -133,7 +143,8 @@ CorelDRAW 8 for Windows 1998 Davis, Phyllis -Includes index +Includes index CorelDRAW 8 for Windows 1998 Davis, Phyllis @@ -147,7 +158,8 @@ the official guide 2000 Langer, Maria -"Covers Quicken deluxe 2000 for the Mac"--Cover +"Covers Quicken deluxe 2000 for the Mac"--Cover Quicken 2000 for the Mac the official guide 2000 @@ -160,7 +172,8 @@ Sicherheit und Schutz im Netz -1998 +1998 Sicherheit und Schutz im Netz 1998 33978 @@ -171,7 +184,8 @@ Unix Secure Shell 1999 Carasik, Anne H -Includes index +Includes index Unix Secure Shell 1999 Carasik, Anne H @@ -184,7 +198,8 @@ Eight International Conference on Computer Communications and Networks proceedings, 11-13 October 1999, Boston, Massachusetts 1999 -"IEEE catalog number 99EX370"--T.p. verso +"IEEE catalog number 99EX370"--T.p. verso Eight International Conference on Computer Communications and Networks proceedings, 11-13 October 1999, Boston, Massachusetts 1999 @@ -197,7 +212,8 @@ Building storage networks 2000 Farley, Marc -Includes index +Includes index Building storage networks 2000 Farley, Marc @@ -211,7 +227,8 @@ the definitive control language programming guide 1999 Malaga, Ernie -Includes index +Includes index Complete CL the definitive control language programming guide 1999 @@ -225,7 +242,8 @@ 3D games real-time rendering and software technology 2001 -Watt, Alan H +Watt, Alan H 3D games real-time rendering and software technology 2001 @@ -237,7 +255,8 @@ Java applications strategies for the AS/400 1999 -Denoncourt, Don +Denoncourt, Don Java applications strategies for the AS/400 1999 Denoncourt, Don @@ -249,7 +268,8 @@ Mastering algorithms with C 1999 Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover +"Useful techniques from sorting to encryption"--Cover Mastering algorithms with C 1999 Loudon, Kyle diff --git a/test/test_post_10.res b/test/test_post_10.res index 9caed57..a7d4186 100644 --- a/test/test_post_10.res +++ b/test/test_post_10.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -22,7 +24,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -32,7 +35,8 @@ The Computer Bible -1973-1980 +1973-1980 The Computer Bible 1973-1980 21072 @@ -41,7 +45,8 @@ A plan for community college computer development -1971 +1971 A plan for community college computer development 1971 9030 @@ -52,7 +57,8 @@ Washington metropolitan area rail computer feasibility study; final report 1971 -Englund, Carl R +Englund, Carl R Washington metropolitan area rail computer feasibility study; final report 1971 @@ -65,7 +71,8 @@ The Puget Sound Region a portfolio of thematic computer maps 1974 -Mairs, John W +Mairs, John W The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -77,7 +84,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop -1974 +1974 Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -88,7 +96,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -99,7 +108,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_post_8.res b/test/test_post_8.res index 9caed57..a7d4186 100644 --- a/test/test_post_8.res +++ b/test/test_post_8.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -22,7 +24,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -32,7 +35,8 @@ The Computer Bible -1973-1980 +1973-1980 The Computer Bible 1973-1980 21072 @@ -41,7 +45,8 @@ A plan for community college computer development -1971 +1971 A plan for community college computer development 1971 9030 @@ -52,7 +57,8 @@ Washington metropolitan area rail computer feasibility study; final report 1971 -Englund, Carl R +Englund, Carl R Washington metropolitan area rail computer feasibility study; final report 1971 @@ -65,7 +71,8 @@ The Puget Sound Region a portfolio of thematic computer maps 1974 -Mairs, John W +Mairs, John W The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -77,7 +84,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop -1974 +1974 Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -88,7 +96,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -99,7 +108,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop -1977 +1977 Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_post_9.res b/test/test_post_9.res index 8b8d4ac..d8d07be 100644 --- a/test/test_post_9.res +++ b/test/test_post_9.res @@ -7,21 +7,24 @@ 3 -BIBLIOGRAPHY OF MAINE GEOLOGY +BIBLIOGRAPHY OF MAINE GEOLOGY BIBLIOGRAPHY OF MAINE GEOLOGY 0 content: title bibliography of maine geology author medium book -GROUNDWATER RESOURCE MAPS - COUNTY SERIES +GROUNDWATER RESOURCE MAPS - COUNTY SERIES GROUNDWATER RESOURCE MAPS - COUNTY SERIES 0 content: title groundwater resource maps county series author medium book -OIL/GAS DRILLING +OIL/GAS DRILLING OIL/GAS DRILLING 0 content: title oil gas drilling author medium book diff --git a/test/test_solr_13.res b/test/test_solr_13.res index 83670b4..419fce4 100644 --- a/test/test_solr_13.res +++ b/test/test_solr_13.res @@ -10,7 +10,8 @@ Water 1999 De Villiers, Marq -book +book Water 1999 De Villiers, Marq @@ -23,12 +24,14 @@ Potable water and methods of detecting impurities 1899-1906 Baker, M. N -book +book Potable water and methods of detecting impurities 1906 Baker, M. N book - + Potable water and methods of detecting impurities 1899 Baker, M. N @@ -43,7 +46,8 @@ 2000 Majeed, Abdul "Balochistan conservation strategy background paper"--T.p -book +book Water 2000 Majeed, Abdul @@ -58,7 +62,8 @@ 2000 Grant, Pamela Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book +book Water 2000 Grant, Pamela @@ -74,7 +79,8 @@ 2000 Fisher, D. E Includes index -book +book Water law 2000 Fisher, D. E @@ -89,7 +95,8 @@ questions and answers 2000 Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book +book A Primer on fresh water questions and answers 2000 @@ -104,7 +111,8 @@ Water and water supplies 1901 Thresh, John Clough -book +book Water and water supplies 1901 Thresh, John Clough @@ -117,13 +125,15 @@ Water quality assessment of the State Water Project, 1996-97 1999-2000 "September 1999." -book +book Water quality assessment of the State Water Project, 1998-99 2000 Cover title "July 2000." book - + Water quality assessment of the State Water Project, 1996-97 1999 Cover title @@ -139,7 +149,8 @@ (Considered principally from a sanitary standpoint.) 1896 Mason, William Pitt -book +book Water-supply (Considered principally from a sanitary standpoint.) 1896 @@ -154,7 +165,8 @@ international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 Farnham, Henry P -book +book The law of waters and water rights international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 @@ -169,13 +181,15 @@ an index of news items on water resources selected from leading news papers 1998-1999 With reference to India -book +book Water, in press, 1998 an index to news items on water resources selected from leading news papers 1999 Includes index book - + Water in press, 1997 an index of news items on water resources selected from leading news papers 1998 @@ -191,7 +205,8 @@ Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "EPA Contract 68-C7-0011, work assignment 0-38." -book +book Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "May 2000." @@ -207,7 +222,8 @@ 1997 Bryan, Michelle "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book +book A guide to Montana water quality regulation 1997 Bryan, Michelle @@ -221,7 +237,8 @@ Water technology management 2001 Collection of articles with reference to India -book +book Water technology management 2001 Collection of articles with reference to India @@ -235,7 +252,8 @@ 1999 Bauer, Steve "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book +book Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act 1999 Bauer, Steve @@ -250,7 +268,8 @@ 1997 Saffran, Karen Anita "March 1997." -book +book An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River 1997 Saffran, Karen Anita @@ -264,7 +283,8 @@ Surface water quality monitoring procedures manual 1999 "GI-252"--Cover -book +book Surface water quality monitoring procedures manual 1999 "June 1999." @@ -278,7 +298,8 @@ International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 -book +book International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 @@ -290,7 +311,8 @@ Mercados e instituciones de aguas en Bolivia 1998 -book +book Mercados e instituciones de aguas en Bolivia 1998 book @@ -301,7 +323,8 @@ Water law 2000 -book +book Water law 2000 book diff --git a/test/test_solr_18.res b/test/test_solr_18.res index 79896b2..7964d8b 100644 --- a/test/test_solr_18.res +++ b/test/test_solr_18.res @@ -10,7 +10,8 @@ Water 1999 De Villiers, Marq -book +book Water 1999 De Villiers, Marq @@ -23,12 +24,14 @@ Potable water and methods of detecting impurities 1899-1906 Baker, M. N -book +book Potable water and methods of detecting impurities 1906 Baker, M. N book - + Potable water and methods of detecting impurities 1899 Baker, M. N @@ -43,7 +46,8 @@ 2000 Majeed, Abdul "Balochistan conservation strategy background paper"--T.p -book +book Water 2000 Majeed, Abdul @@ -58,7 +62,8 @@ 2000 Grant, Pamela Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book +book Water 2000 Grant, Pamela @@ -74,7 +79,8 @@ 2000 Fisher, D. E Includes index -book +book Water law 2000 Fisher, D. E @@ -89,7 +95,8 @@ questions and answers 2000 Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book +book A Primer on fresh water questions and answers 2000 @@ -104,7 +111,8 @@ Water and water supplies 1901 Thresh, John Clough -book +book Water and water supplies 1901 Thresh, John Clough @@ -117,13 +125,15 @@ Water quality assessment of the State Water Project, 1996-97 1999-2000 "September 1999." -book +book Water quality assessment of the State Water Project, 1998-99 2000 Cover title "July 2000." book - + Water quality assessment of the State Water Project, 1996-97 1999 Cover title @@ -139,7 +149,8 @@ (Considered principally from a sanitary standpoint.) 1896 Mason, William Pitt -book +book Water-supply (Considered principally from a sanitary standpoint.) 1896 @@ -154,7 +165,8 @@ international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 Farnham, Henry P -book +book The law of waters and water rights international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 @@ -169,13 +181,15 @@ an index of news items on water resources selected from leading news papers 1998-1999 With reference to India -book +book Water, in press, 1998 an index to news items on water resources selected from leading news papers 1999 Includes index book - + Water in press, 1997 an index of news items on water resources selected from leading news papers 1998 @@ -193,13 +207,15 @@ 1900-1901 Frizell, Joseph P Original imprint 1901, corrected to 1900 -book +book Water-power an outline of the development and application of the energy of flowing water 1901 Frizell, Joseph P book - + Water-power an outline of the development and application of the energy of flowing water 1900 @@ -216,13 +232,15 @@ The designing, construction, and maintenance of water-supply systems, both city and irrigation 1903-1909 Folwell, Amory Prescott -book +book Water-supply engineering The designing, construction, and maintenance of water-supply systems, both city and irrigation 1909 Folwell, Amory Prescott book - + Water-supply engineering The designing, construction, and maintenance of water-supply systems, both city and irrigation 1903 @@ -237,7 +255,8 @@ Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "EPA Contract 68-C7-0011, work assignment 0-38." -book +book Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "May 2000." @@ -253,7 +272,8 @@ 1997 Bryan, Michelle "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book +book A guide to Montana water quality regulation 1997 Bryan, Michelle @@ -267,7 +287,8 @@ Water technology management 2001 Collection of articles with reference to India -book +book Water technology management 2001 Collection of articles with reference to India @@ -281,7 +302,8 @@ 1999 Bauer, Steve "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book +book Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act 1999 Bauer, Steve @@ -296,7 +318,8 @@ 1997 Saffran, Karen Anita "March 1997." -book +book An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River 1997 Saffran, Karen Anita @@ -310,7 +333,8 @@ Surface water quality monitoring procedures manual 1999 "GI-252"--Cover -book +book Surface water quality monitoring procedures manual 1999 "June 1999." @@ -324,7 +348,8 @@ International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 -book +book International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 diff --git a/test/test_solr_22.res b/test/test_solr_22.res index 00b1fd7..1d39bd2 100644 --- a/test/test_solr_22.res +++ b/test/test_solr_22.res @@ -10,7 +10,8 @@ The nitrogen permitting and trading plan for Long Island Sound 2000 "In response to Special Act No. 99-6." -book +book The nitrogen permitting and trading plan for Long Island Sound 2000 Title from cover @@ -24,7 +25,8 @@ Report of the Water commissioners to the Common council of the city of Albany; 1872 -book +book Report of the Water commissioners to the Common council of the city of Albany; 1872 book diff --git a/test/test_solr_25.res b/test/test_solr_25.res index 83670b4..419fce4 100644 --- a/test/test_solr_25.res +++ b/test/test_solr_25.res @@ -10,7 +10,8 @@ Water 1999 De Villiers, Marq -book +book Water 1999 De Villiers, Marq @@ -23,12 +24,14 @@ Potable water and methods of detecting impurities 1899-1906 Baker, M. N -book +book Potable water and methods of detecting impurities 1906 Baker, M. N book - + Potable water and methods of detecting impurities 1899 Baker, M. N @@ -43,7 +46,8 @@ 2000 Majeed, Abdul "Balochistan conservation strategy background paper"--T.p -book +book Water 2000 Majeed, Abdul @@ -58,7 +62,8 @@ 2000 Grant, Pamela Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book +book Water 2000 Grant, Pamela @@ -74,7 +79,8 @@ 2000 Fisher, D. E Includes index -book +book Water law 2000 Fisher, D. E @@ -89,7 +95,8 @@ questions and answers 2000 Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book +book A Primer on fresh water questions and answers 2000 @@ -104,7 +111,8 @@ Water and water supplies 1901 Thresh, John Clough -book +book Water and water supplies 1901 Thresh, John Clough @@ -117,13 +125,15 @@ Water quality assessment of the State Water Project, 1996-97 1999-2000 "September 1999." -book +book Water quality assessment of the State Water Project, 1998-99 2000 Cover title "July 2000." book - + Water quality assessment of the State Water Project, 1996-97 1999 Cover title @@ -139,7 +149,8 @@ (Considered principally from a sanitary standpoint.) 1896 Mason, William Pitt -book +book Water-supply (Considered principally from a sanitary standpoint.) 1896 @@ -154,7 +165,8 @@ international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 Farnham, Henry P -book +book The law of waters and water rights international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 @@ -169,13 +181,15 @@ an index of news items on water resources selected from leading news papers 1998-1999 With reference to India -book +book Water, in press, 1998 an index to news items on water resources selected from leading news papers 1999 Includes index book - + Water in press, 1997 an index of news items on water resources selected from leading news papers 1998 @@ -191,7 +205,8 @@ Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "EPA Contract 68-C7-0011, work assignment 0-38." -book +book Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "May 2000." @@ -207,7 +222,8 @@ 1997 Bryan, Michelle "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book +book A guide to Montana water quality regulation 1997 Bryan, Michelle @@ -221,7 +237,8 @@ Water technology management 2001 Collection of articles with reference to India -book +book Water technology management 2001 Collection of articles with reference to India @@ -235,7 +252,8 @@ 1999 Bauer, Steve "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book +book Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act 1999 Bauer, Steve @@ -250,7 +268,8 @@ 1997 Saffran, Karen Anita "March 1997." -book +book An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River 1997 Saffran, Karen Anita @@ -264,7 +283,8 @@ Surface water quality monitoring procedures manual 1999 "GI-252"--Cover -book +book Surface water quality monitoring procedures manual 1999 "June 1999." @@ -278,7 +298,8 @@ International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 -book +book International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 @@ -290,7 +311,8 @@ Mercados e instituciones de aguas en Bolivia 1998 -book +book Mercados e instituciones de aguas en Bolivia 1998 book @@ -301,7 +323,8 @@ Water law 2000 -book +book Water law 2000 book diff --git a/test/test_solr_29.res b/test/test_solr_29.res index 00b1fd7..1d39bd2 100644 --- a/test/test_solr_29.res +++ b/test/test_solr_29.res @@ -10,7 +10,8 @@ The nitrogen permitting and trading plan for Long Island Sound 2000 "In response to Special Act No. 99-6." -book +book The nitrogen permitting and trading plan for Long Island Sound 2000 Title from cover @@ -24,7 +25,8 @@ Report of the Water commissioners to the Common council of the city of Albany; 1872 -book +book Report of the Water commissioners to the Common council of the city of Albany; 1872 book diff --git a/test/test_solr_4.res b/test/test_solr_4.res index 83670b4..419fce4 100644 --- a/test/test_solr_4.res +++ b/test/test_solr_4.res @@ -10,7 +10,8 @@ Water 1999 De Villiers, Marq -book +book Water 1999 De Villiers, Marq @@ -23,12 +24,14 @@ Potable water and methods of detecting impurities 1899-1906 Baker, M. N -book +book Potable water and methods of detecting impurities 1906 Baker, M. N book - + Potable water and methods of detecting impurities 1899 Baker, M. N @@ -43,7 +46,8 @@ 2000 Majeed, Abdul "Balochistan conservation strategy background paper"--T.p -book +book Water 2000 Majeed, Abdul @@ -58,7 +62,8 @@ 2000 Grant, Pamela Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book +book Water 2000 Grant, Pamela @@ -74,7 +79,8 @@ 2000 Fisher, D. E Includes index -book +book Water law 2000 Fisher, D. E @@ -89,7 +95,8 @@ questions and answers 2000 Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book +book A Primer on fresh water questions and answers 2000 @@ -104,7 +111,8 @@ Water and water supplies 1901 Thresh, John Clough -book +book Water and water supplies 1901 Thresh, John Clough @@ -117,13 +125,15 @@ Water quality assessment of the State Water Project, 1996-97 1999-2000 "September 1999." -book +book Water quality assessment of the State Water Project, 1998-99 2000 Cover title "July 2000." book - + Water quality assessment of the State Water Project, 1996-97 1999 Cover title @@ -139,7 +149,8 @@ (Considered principally from a sanitary standpoint.) 1896 Mason, William Pitt -book +book Water-supply (Considered principally from a sanitary standpoint.) 1896 @@ -154,7 +165,8 @@ international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 Farnham, Henry P -book +book The law of waters and water rights international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 @@ -169,13 +181,15 @@ an index of news items on water resources selected from leading news papers 1998-1999 With reference to India -book +book Water, in press, 1998 an index to news items on water resources selected from leading news papers 1999 Includes index book - + Water in press, 1997 an index of news items on water resources selected from leading news papers 1998 @@ -191,7 +205,8 @@ Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "EPA Contract 68-C7-0011, work assignment 0-38." -book +book Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "May 2000." @@ -207,7 +222,8 @@ 1997 Bryan, Michelle "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book +book A guide to Montana water quality regulation 1997 Bryan, Michelle @@ -221,7 +237,8 @@ Water technology management 2001 Collection of articles with reference to India -book +book Water technology management 2001 Collection of articles with reference to India @@ -235,7 +252,8 @@ 1999 Bauer, Steve "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book +book Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act 1999 Bauer, Steve @@ -250,7 +268,8 @@ 1997 Saffran, Karen Anita "March 1997." -book +book An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River 1997 Saffran, Karen Anita @@ -264,7 +283,8 @@ Surface water quality monitoring procedures manual 1999 "GI-252"--Cover -book +book Surface water quality monitoring procedures manual 1999 "June 1999." @@ -278,7 +298,8 @@ International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 -book +book International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 @@ -290,7 +311,8 @@ Mercados e instituciones de aguas en Bolivia 1998 -book +book Mercados e instituciones de aguas en Bolivia 1998 book @@ -301,7 +323,8 @@ Water law 2000 -book +book Water law 2000 book diff --git a/test/test_solr_9.res b/test/test_solr_9.res index 83670b4..419fce4 100644 --- a/test/test_solr_9.res +++ b/test/test_solr_9.res @@ -10,7 +10,8 @@ Water 1999 De Villiers, Marq -book +book Water 1999 De Villiers, Marq @@ -23,12 +24,14 @@ Potable water and methods of detecting impurities 1899-1906 Baker, M. N -book +book Potable water and methods of detecting impurities 1906 Baker, M. N book - + Potable water and methods of detecting impurities 1899 Baker, M. N @@ -43,7 +46,8 @@ 2000 Majeed, Abdul "Balochistan conservation strategy background paper"--T.p -book +book Water 2000 Majeed, Abdul @@ -58,7 +62,8 @@ 2000 Grant, Pamela Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information -book +book Water 2000 Grant, Pamela @@ -74,7 +79,8 @@ 2000 Fisher, D. E Includes index -book +book Water law 2000 Fisher, D. E @@ -89,7 +95,8 @@ questions and answers 2000 Issued also in French under title: Notions élémentaires sur l'eau douce : questions et réponses -book +book A Primer on fresh water questions and answers 2000 @@ -104,7 +111,8 @@ Water and water supplies 1901 Thresh, John Clough -book +book Water and water supplies 1901 Thresh, John Clough @@ -117,13 +125,15 @@ Water quality assessment of the State Water Project, 1996-97 1999-2000 "September 1999." -book +book Water quality assessment of the State Water Project, 1998-99 2000 Cover title "July 2000." book - + Water quality assessment of the State Water Project, 1996-97 1999 Cover title @@ -139,7 +149,8 @@ (Considered principally from a sanitary standpoint.) 1896 Mason, William Pitt -book +book Water-supply (Considered principally from a sanitary standpoint.) 1896 @@ -154,7 +165,8 @@ international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 Farnham, Henry P -book +book The law of waters and water rights international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply 1904 @@ -169,13 +181,15 @@ an index of news items on water resources selected from leading news papers 1998-1999 With reference to India -book +book Water, in press, 1998 an index to news items on water resources selected from leading news papers 1999 Includes index book - + Water in press, 1997 an index of news items on water resources selected from leading news papers 1998 @@ -191,7 +205,8 @@ Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "EPA Contract 68-C7-0011, work assignment 0-38." -book +book Regulations on the disposal of arsenic residuals from drinking water treatment plants 2000 "May 2000." @@ -207,7 +222,8 @@ 1997 Bryan, Michelle "A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center" -book +book A guide to Montana water quality regulation 1997 Bryan, Michelle @@ -221,7 +237,8 @@ Water technology management 2001 Collection of articles with reference to India -book +book Water technology management 2001 Collection of articles with reference to India @@ -235,7 +252,8 @@ 1999 Bauer, Steve "This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho." -book +book Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act 1999 Bauer, Steve @@ -250,7 +268,8 @@ 1997 Saffran, Karen Anita "March 1997." -book +book An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River 1997 Saffran, Karen Anita @@ -264,7 +283,8 @@ Surface water quality monitoring procedures manual 1999 "GI-252"--Cover -book +book Surface water quality monitoring procedures manual 1999 "June 1999." @@ -278,7 +298,8 @@ International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 -book +book International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997 proceedings 1997 @@ -290,7 +311,8 @@ Mercados e instituciones de aguas en Bolivia 1998 -book +book Mercados e instituciones de aguas en Bolivia 1998 book @@ -301,7 +323,8 @@ Water law 2000 -book +book Water law 2000 book diff --git a/test/test_termlist_block_9.res b/test/test_termlist_block_9.res index 7fa7d64..5da3757 100644 --- a/test/test_termlist_block_9.res +++ b/test/test_termlist_block_9.res @@ -10,7 +10,8 @@ Adobe Illustrator for the Mac fast & easy 2001 -Woodward, C. Michael +Woodward, C. Michael Adobe Illustrator for the Mac fast & easy 2001 @@ -21,7 +22,8 @@ Advanced computer performance modeling and simulation -1998 +1998 Advanced computer performance modeling and simulation 1998 43542 @@ -33,7 +35,8 @@ issues surrounding the establishment of an international regime 2000 Aldrich, Richard W -"April 2000." +"April 2000." Cyberterrorism and computer crimes issues surrounding the establishment of an international regime 2000 @@ -47,7 +50,8 @@ Software design and usability talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum 2000 -Kaasgaard, Klaus +Kaasgaard, Klaus Software design and usability talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson & Jed Harris, Terry Winograd, Stephanie Rosenbaum 2000 @@ -60,7 +64,8 @@ Everything you need to know about the dangers of computer hacking 2000 Knittel, John -Explains what computer hacking is, who does it, and how dangerous it can be +Explains what computer hacking is, who does it, and how dangerous it can be Everything you need to know about the dangers of computer hacking 2000 Knittel, John @@ -72,7 +77,8 @@ Computer peripherals 1995 -Cook, Barry M +Cook, Barry M Computer peripherals 1995 Cook, Barry M @@ -83,7 +89,8 @@ Kids' computer book 1994 -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 +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 Kids' computer book 1994 "For kids and their parents"--Cover @@ -95,7 +102,8 @@ Computer friendly 1999 -Steinbacher, Raymond +Steinbacher, Raymond Computer friendly 1999 Steinbacher, Raymond @@ -106,7 +114,8 @@ Computer misuse 1999 -"Also published as Parliamentary Paper E 31AO"--T.p. verso +"Also published as Parliamentary Paper E 31AO"--T.p. verso Computer misuse 1999 "May 1999." @@ -120,7 +129,8 @@ Computer networking a top-down approach featuring the Internet 2001 -Ross, Keith W +Ross, Keith W Computer networking a top-down approach featuring the Internet 2001 @@ -133,7 +143,8 @@ CorelDRAW 8 for Windows 1998 Davis, Phyllis -Includes index +Includes index CorelDRAW 8 for Windows 1998 Davis, Phyllis @@ -147,7 +158,8 @@ the official guide 2000 Langer, Maria -"Covers Quicken deluxe 2000 for the Mac"--Cover +"Covers Quicken deluxe 2000 for the Mac"--Cover Quicken 2000 for the Mac the official guide 2000 @@ -160,7 +172,8 @@ Sicherheit und Schutz im Netz -1998 +1998 Sicherheit und Schutz im Netz 1998 32656 @@ -171,7 +184,8 @@ Unix Secure Shell 1999 Carasik, Anne H -Includes index +Includes index Unix Secure Shell 1999 Carasik, Anne H @@ -184,7 +198,8 @@ Eight International Conference on Computer Communications and Networks proceedings, 11-13 October 1999, Boston, Massachusetts 1999 -"IEEE catalog number 99EX370"--T.p. verso +"IEEE catalog number 99EX370"--T.p. verso Eight International Conference on Computer Communications and Networks proceedings, 11-13 October 1999, Boston, Massachusetts 1999 @@ -197,7 +212,8 @@ Building storage networks 2000 Farley, Marc -Includes index +Includes index Building storage networks 2000 Farley, Marc @@ -211,7 +227,8 @@ the definitive control language programming guide 1999 Malaga, Ernie -Includes index +Includes index Complete CL the definitive control language programming guide 1999 @@ -225,7 +242,8 @@ 3D games real-time rendering and software technology 2001 -Watt, Alan H +Watt, Alan H 3D games real-time rendering and software technology 2001 @@ -237,7 +255,8 @@ Java applications strategies for the AS/400 1999 -Denoncourt, Don +Denoncourt, Don Java applications strategies for the AS/400 1999 Denoncourt, Don @@ -249,7 +268,8 @@ Mastering algorithms with C 1999 Loudon, Kyle -"Useful techniques from sorting to encryption"--Cover +"Useful techniques from sorting to encryption"--Cover Mastering algorithms with C 1999 Loudon, Kyle diff --git a/test/test_turbomarcxml_4.res b/test/test_turbomarcxml_4.res index 7a97754..d21e518 100644 --- a/test/test_turbomarcxml_4.res +++ b/test/test_turbomarcxml_4.res @@ -10,7 +10,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY 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 +under development to replace the printed Bibliography of Marine Geology BIBLIOGRAPHY OF MAINE GEOLOGY 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 @@ -28,7 +29,8 @@ under development to replace the printed Bibliography of Marine Geology +restricted to Southern Maine GROUNDWATER RESOURCE MAPS - COUNTY SERIES 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 @@ -46,7 +48,8 @@ restricted to Southern Maine OIL/GAS DRILLING 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 +(cuttings, core), completion records OIL/GAS DRILLING This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples diff --git a/test/test_turbomarcxml_7.res b/test/test_turbomarcxml_7.res index d1e8a82..1a1a40b 100644 --- a/test/test_turbomarcxml_7.res +++ b/test/test_turbomarcxml_7.res @@ -8,7 +8,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 9416 @@ -17,7 +18,8 @@ GROUNDWATER RESOURCE MAPS - COUNTY SERIES -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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine +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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine GROUNDWATER RESOURCE MAPS - COUNTY SERIES 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's comprises this data set. Some series also show bedrock topography and potentiometric surface. Geographic coverage is restricted to Southern Maine 0 @@ -26,7 +28,8 @@ OIL/GAS DRILLING -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 +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 OIL/GAS DRILLING 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 0 diff --git a/test/test_url_10.res b/test/test_url_10.res index 57aba5a..78d7789 100644 --- a/test/test_url_10.res +++ b/test/test_url_10.res @@ -8,7 +8,8 @@ WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality +This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality WATER WELL DATA This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality 1930-PRESENT @@ -17,7 +18,8 @@ UTAH GEOLOGIC MAP BIBLIOGRAPHY -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 +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 UTAH GEOLOGIC MAP BIBLIOGRAPHY 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 -PRESENT @@ -26,7 +28,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT @@ -35,7 +38,8 @@ UTAH EARTHQUAKE EPICENTERS -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 +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 UTAH EARTHQUAKE EPICENTERS 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 -PRESENT @@ -44,7 +48,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 1692-PRESENT @@ -53,7 +58,8 @@ AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) +The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) AUTOMATED FLOOD WARNING NETWORK The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) 1982-PRESENT @@ -62,7 +68,8 @@ APPLIED GEOLOGY FILE -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 +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 APPLIED GEOLOGY FILE 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 1970-PRESENT diff --git a/test/test_url_17.res b/test/test_url_17.res index 71647e3..d3ed0e2 100644 --- a/test/test_url_17.res +++ b/test/test_url_17.res @@ -8,7 +8,8 @@ COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah +This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah COAL SAMPLE BANK This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah -PRESENT @@ -17,7 +18,8 @@ DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information +The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information DAM INVENTORY The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information -PRESENT @@ -26,7 +28,8 @@ FRESH WATER WETLANDS MAPS -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 +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 FRESH WATER WETLANDS MAPS 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 content: title fresh water wetlands maps author medium book @@ -34,7 +37,8 @@ INLAND WETLANDS OF CONNECTICUT -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 +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 INLAND WETLANDS OF CONNECTICUT 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 1972-PRESENT @@ -43,7 +47,8 @@ MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing +This data set contains a series of well inventory maps stored on tape. The series has no indexing MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY This data set contains a series of well inventory maps stored on tape. The series has no indexing 1972-PRESENT @@ -52,7 +57,8 @@ STATEWIDE PLANNING -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) +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) STATEWIDE PLANNING 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) 1960-PRESENT @@ -61,7 +67,8 @@ STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set +Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set STREAM CHANNEL ENCROACHMENT LINE STUDIES Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set content: title stream channel encroachment line studies author medium book @@ -69,7 +76,8 @@ TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set +Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set TIDAL (COASTAL) WETLAND OF CONNECTICUT Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set 1972-PRESENT @@ -78,7 +86,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT @@ -87,7 +96,8 @@ WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality +This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality WATER WELL DATA This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality 1930-PRESENT diff --git a/test/test_url_18.res b/test/test_url_18.res index c775894..45ddc45 100644 --- a/test/test_url_18.res +++ b/test/test_url_18.res @@ -8,7 +8,8 @@ STATEWIDE PLANNING -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) +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) STATEWIDE PLANNING 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) 1960-PRESENT @@ -17,7 +18,8 @@ WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality +This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality WATER WELL DATA This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality 1930-PRESENT @@ -26,7 +28,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT @@ -35,7 +38,8 @@ COAL SAMPLE BANK -This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah +This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah COAL SAMPLE BANK This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah -PRESENT @@ -44,7 +48,8 @@ FRESH WATER WETLANDS MAPS -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 +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 FRESH WATER WETLANDS MAPS 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 content: title fresh water wetlands maps author medium book @@ -52,7 +57,8 @@ MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY -This data set contains a series of well inventory maps stored on tape. The series has no indexing +This data set contains a series of well inventory maps stored on tape. The series has no indexing MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY This data set contains a series of well inventory maps stored on tape. The series has no indexing 1972-PRESENT @@ -61,7 +67,8 @@ INLAND WETLANDS OF CONNECTICUT -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 +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 INLAND WETLANDS OF CONNECTICUT 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 1972-PRESENT @@ -70,7 +77,8 @@ STREAM CHANNEL ENCROACHMENT LINE STUDIES -Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set +Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set STREAM CHANNEL ENCROACHMENT LINE STUDIES Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set content: title stream channel encroachment line studies author medium book @@ -78,7 +86,8 @@ DAM INVENTORY -The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information +The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information DAM INVENTORY The inventory delineates the following: dam name, drainage basin, water course, inspection record, safety status, ownership, and other information -PRESENT @@ -87,7 +96,8 @@ TIDAL (COASTAL) WETLAND OF CONNECTICUT -Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set +Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set TIDAL (COASTAL) WETLAND OF CONNECTICUT Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set 1972-PRESENT diff --git a/test/test_url_3.res b/test/test_url_3.res index 6ac87ef..b907948 100644 --- a/test/test_url_3.res +++ b/test/test_url_3.res @@ -8,10 +8,12 @@ How to program a computer -Jack Collins +Jack Collins How to program a computer Jack Collins - + How to program a computer Jack Collins 2 @@ -22,7 +24,8 @@ The Computer Bible 1973-1980 -Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates The Computer Bible 1973-1980 Hebrew and Greek; introductions in English @@ -34,7 +37,8 @@ Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 -1977 +1977 Computer science & technology proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 1977 @@ -45,7 +49,8 @@ A plan for community college computer development 1971 -Cover title +Cover title A plan for community college computer development 1971 Cover title @@ -58,7 +63,8 @@ final report 1971 Englund, Carl R -"Contract DOT-UT-10003." +"Contract DOT-UT-10003." Washington metropolitan area rail computer feasibility study; final report 1971 @@ -73,7 +79,8 @@ a portfolio of thematic computer maps 1974 Mairs, John W -Scale of maps ca. 1:1,000,000 +Scale of maps ca. 1:1,000,000 The Puget Sound Region a portfolio of thematic computer maps 1974 @@ -88,7 +95,8 @@ Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 -Includes bibliographical references and index +Includes bibliographical references and index Computer processing of dynamic images from an Anger scintillation camera the proceedings of a workshop 1974 @@ -100,7 +108,8 @@ The use of passwords for controlled access to computer resources 1977 -Wood, Helen M +Wood, Helen M The use of passwords for controlled access to computer resources 1977 Wood, Helen M @@ -112,7 +121,8 @@ Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 -Includes bibliographical references and index +Includes bibliographical references and index Reconstruction tomography in diagnostic radiology and nuclear medicine proceedings of the workshop 1977 diff --git a/test/test_url_6.res b/test/test_url_6.res index e0de11a..f9081d6 100644 --- a/test/test_url_6.res +++ b/test/test_url_6.res @@ -8,7 +8,8 @@ APPLIED GEOLOGY FILE -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 +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 APPLIED GEOLOGY FILE 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 1970-PRESENT @@ -18,7 +19,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT @@ -28,7 +30,8 @@ UTAH EARTHQUAKE EPICENTERS -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 +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 UTAH EARTHQUAKE EPICENTERS 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 -PRESENT diff --git a/test/test_url_7.res b/test/test_url_7.res index ef31ae5..8aa180e 100644 --- a/test/test_url_7.res +++ b/test/test_url_7.res @@ -8,7 +8,8 @@ APPLIED GEOLOGY FILE -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 +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 APPLIED GEOLOGY FILE 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 1970-PRESENT @@ -17,7 +18,8 @@ AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) +The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) AUTOMATED FLOOD WARNING NETWORK The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) 1982-PRESENT @@ -26,7 +28,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 1692-PRESENT @@ -35,7 +38,8 @@ UTAH EARTHQUAKE EPICENTERS -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 +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 UTAH EARTHQUAKE EPICENTERS 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 -PRESENT @@ -44,7 +48,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT diff --git a/test/test_url_8.res b/test/test_url_8.res index ef31ae5..8aa180e 100644 --- a/test/test_url_8.res +++ b/test/test_url_8.res @@ -8,7 +8,8 @@ APPLIED GEOLOGY FILE -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 +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 APPLIED GEOLOGY FILE 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 1970-PRESENT @@ -17,7 +18,8 @@ AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) +The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) AUTOMATED FLOOD WARNING NETWORK The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) 1982-PRESENT @@ -26,7 +28,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 1692-PRESENT @@ -35,7 +38,8 @@ UTAH EARTHQUAKE EPICENTERS -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 +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 UTAH EARTHQUAKE EPICENTERS 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 -PRESENT @@ -44,7 +48,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT diff --git a/test/test_url_9.res b/test/test_url_9.res index 57aba5a..78d7789 100644 --- a/test/test_url_9.res +++ b/test/test_url_9.res @@ -8,7 +8,8 @@ WATER WELL DATA -This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality +This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality WATER WELL DATA This database contains the following information on water wells in Nevada: driller's name, owner's name, location, formations encountered, lithologic descriptions, water level, and water quality 1930-PRESENT @@ -17,7 +18,8 @@ UTAH GEOLOGIC MAP BIBLIOGRAPHY -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 +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 UTAH GEOLOGIC MAP BIBLIOGRAPHY 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 -PRESENT @@ -26,7 +28,8 @@ UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS -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 +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 UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS 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 -PRESENT @@ -35,7 +38,8 @@ UTAH EARTHQUAKE EPICENTERS -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 +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 UTAH EARTHQUAKE EPICENTERS 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 -PRESENT @@ -44,7 +48,8 @@ BIBLIOGRAPHY OF MAINE GEOLOGY -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 +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 BIBLIOGRAPHY OF MAINE GEOLOGY 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 1692-PRESENT @@ -53,7 +58,8 @@ AUTOMATED FLOOD WARNING NETWORK -The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) +The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) AUTOMATED FLOOD WARNING NETWORK The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values) 1982-PRESENT @@ -62,7 +68,8 @@ APPLIED GEOLOGY FILE -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 +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 APPLIED GEOLOGY FILE 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 1970-PRESENT -- 1.7.10.4