Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/pazpar2
authorDennis Schafroth <dennis@indexdata.com>
Wed, 30 Mar 2011 13:40:36 +0000 (15:40 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Wed, 30 Mar 2011 13:40:36 +0000 (15:40 +0200)
44 files changed:
etc/dads-pz2.xsl
perf/bash/par.config.dennis
src/client.c
src/connection.c
src/eventl.c
src/http_command.c
src/session.c
src/settings.c
src/settings.h
test/dtic-dads-sru-proxy.xml
test/test_solr.cfg
test/test_solr.urls
test/test_solr_10.res
test/test_solr_11.res
test/test_solr_12.res
test/test_solr_13.res
test/test_solr_14.res
test/test_solr_15.res
test/test_solr_16.res [new file with mode: 0644]
test/test_solr_17.res [new file with mode: 0644]
test/test_solr_4.res
test/test_solr_5.res
test/test_solr_6.res
test/test_solr_7.res
test/test_solr_8.res
test/test_solr_9.res
test/test_sru-proxy.cfg
test/test_sru-proxy.urls
test/test_sru-proxy_10.res [new file with mode: 0644]
test/test_sru-proxy_11.res [new file with mode: 0644]
test/test_sru-proxy_12.res [new file with mode: 0644]
test/test_sru-proxy_13.res [new file with mode: 0644]
test/test_sru-proxy_14.res [new file with mode: 0644]
test/test_sru-proxy_15.res [new file with mode: 0644]
test/test_sru-proxy_16.res [new file with mode: 0644]
test/test_sru-proxy_17.res [new file with mode: 0644]
test/test_sru-proxy_2.res
test/test_sru-proxy_3.res
test/test_sru-proxy_4.res
test/test_sru-proxy_5.res [new file with mode: 0644]
test/test_sru-proxy_6.res [new file with mode: 0644]
test/test_sru-proxy_7.res [new file with mode: 0644]
test/test_sru-proxy_8.res [new file with mode: 0644]
test/test_sru-proxy_9.res [new file with mode: 0644]

index c2858cf..553ab20 100644 (file)
   <xsl:template match="art">
     <xsl:variable name="journal_title" select="journal/title" />
     <xsl:variable name="journal_issn" select="journal/issn" />
-    <xsl:variable name="date" select="localInfo/cdate" />
+    <xsl:variable name="date" select="journal/year" />
     <xsl:variable name="description" select="abstract/abstract" />
 
+    <xsl:variable name="has_fulltext" select="article/fulltext"/>
+    <xsl:variable name="has_title" select="article/title"/>
+
     <xsl:variable name="vmedium">
       <xsl:choose>
-        <xsl:when test="$journal_title">article</xsl:when>
+        <xsl:when  test="$has_title and $has_fulltext">
+         <xsl:text>e-article</xsl:text>
+       </xsl:when>
+        <xsl:when  test="$has_title and not($has_fulltext)">
+         <xsl:text>article</xsl:text>
+       </xsl:when>
         <xsl:otherwise>
           <xsl:text>other</xsl:text>
         </xsl:otherwise>
     </xsl:variable>
     
     <pz:record>
+
+      <xsl:for-each select="localInfo/systemno"> 
+        <pz:metadata type="id">
+          <xsl:value-of select="."/>
+        </pz:metadata>
+      </xsl:for-each>
+
       <xsl:for-each select="author/name">
         <pz:metadata type="author">
           <xsl:value-of select="." />
           <xsl:value-of select="." />
         </pz:metadata>
       </xsl:for-each>
-      
-    <xsl:for-each select="journal"> 
-        <pz:metadata type="journal-subpart">
-            <xsl:text>Vol. </xsl:text><xsl:value-of select="vol" />
-            <xsl:text> no. </xsl:text><xsl:value-of select="issue" />
-            <xsl:text>(</xsl:text><xsl:value-of select="month" /><xsl:text>-</xsl:text><xsl:value-of select="year" /><xsl:text>)</xsl:text>
-            <xsl:text> p. </xsl:text><xsl:value-of select="page" />
+
+      <xsl:for-each select="journal/vol">
+        <pz:metadata type="journal-number">
+          <xsl:value-of select="." />
         </pz:metadata>
-    </xsl:for-each>      
+      </xsl:for-each>
 
-      <xsl:for-each select="localInfo/systemno"> 
-        <pz:metadata type="system-control-nr">
-          <xsl:value-of select="."/>
+      <xsl:for-each select="journal/issue">
+        <pz:metadata type="issue-number">
+          <xsl:value-of select="." />
         </pz:metadata>
       </xsl:for-each>
 
+      <xsl:for-each select="journal"> 
+        <pz:metadata type="journal-subpart">
+          <xsl:text>Vol. </xsl:text><xsl:value-of select="vol" /><xsl:text>,</xsl:text>
+          <xsl:if test="issue">
+           <xsl:text> no. </xsl:text><xsl:value-of select="issue" />
+         </xsl:if>
+         <xsl:text> (</xsl:text>
+         <xsl:choose>
+           <xsl:when test="month='01'">
+             <xsl:text>Jan. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='02'">
+             <xsl:text>Feb. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='03'">
+             <xsl:text>Mar. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='04'">
+             <xsl:text>Apr. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='05'">
+             <xsl:text>May </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='06'">
+             <xsl:text>June </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='07'">
+             <xsl:text>July </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='08'">
+             <xsl:text>Aug. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='09'">
+             <xsl:text>Sept. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='10'">
+             <xsl:text>Oct. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='11'">
+             <xsl:text>Nov. </xsl:text>
+           </xsl:when>
+           <xsl:when test="month='12'">
+             <xsl:text>Dec. </xsl:text>
+           </xsl:when>
+           <xsl:otherwise>
+             <xsl:value-of select="month"/><xsl:text> </xsl:text>
+           </xsl:otherwise>
+         </xsl:choose>
+         <xsl:value-of select="year" /><xsl:text>)</xsl:text>
+         <xsl:if test="page"> 
+            <xsl:text>, p. </xsl:text><xsl:value-of select="page" />
+         </xsl:if>
+        </pz:metadata>
+      </xsl:for-each>      
+
       <pz:metadata type="description">
-        <xsl:value-of select="$description" />
+       <xsl:value-of select="$description" />
       </pz:metadata>
       
       <xsl:for-each select="ctrlT/term">
-        <pz:metadata type="subject">
+       <pz:metadata type="subject">
           <xsl:value-of select="." />
-        </pz:metadata>
+       </pz:metadata>
       </xsl:for-each>
 
-      <xsl:for-each select="tmarc:d773">
-        <pz:metadata type="citation">
-          <xsl:for-each select="*">
-            <xsl:value-of select="normalize-space(.)" />
-            <xsl:text> </xsl:text>
-          </xsl:for-each>
-        </pz:metadata>
+      <xsl:for-each select="article/fulltext">
+       <pz:metadata type="fulltext">
+          <xsl:value-of select="." />
+       </pz:metadata>
       </xsl:for-each>
 
       <pz:metadata type="medium">
         <xsl:value-of select="$vmedium" />
+<!--
+        <xsl:if test="string-length($electronic) and $vmedium != 'electronic'">
+          <xsl:text> (electronic)</xsl:text>
+        </xsl:if>
+-->
       </pz:metadata>
 
-      <xsl:for-each select="article/fulltext">
-        <pz:metadata type="fulltext">
-          <xsl:value-of select="." />
-        </pz:metadata>
-      </xsl:for-each>
 
       <!-- passthrough id data -->
       <xsl:for-each select="pz:metadata">
        
     </pz:record>
 
-
   </xsl:template>
 
   <xsl:template match="text()" />
index 03c4736..0598df8 100644 (file)
@@ -1,7 +1,7 @@
 DELAY=0.0001
 WAIT=5
 NUMBER=10
-ROUNDS=2
+ROUNDS=10
 PORT=9005
 #SERVICE=perf_t
 SHUTDOWN=0
index ad5f44a..9990dd0 100644 (file)
@@ -69,6 +69,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 static YAZ_MUTEX g_mutex = 0;
 static int no_clients = 0;
+static int no_clients_total = 0;
 
 static int client_use(int delta)
 {
@@ -77,6 +78,8 @@ static int client_use(int delta)
         yaz_mutex_create(&g_mutex);
     yaz_mutex_enter(g_mutex);
     no_clients += delta;
+    if (delta > 0)
+        no_clients_total += delta;
     clients = no_clients;
     yaz_mutex_leave(g_mutex);
     yaz_log(YLOG_DEBUG, "%s clients=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), clients);
@@ -87,6 +90,16 @@ int  clients_count(void) {
     return client_use(0);
 }
 
+int  clients_count_total(void) {
+    int total = 0;
+    if (!g_mutex)
+        return 0;
+    yaz_mutex_enter(g_mutex);
+    total = no_clients_total;
+    yaz_mutex_leave(g_mutex);
+    return total;
+}
+
 
 /** \brief Represents client state for a connection to one search target */
 struct client {
@@ -576,9 +589,9 @@ void client_record_response(struct client *cl)
                                 client_get_url(cl));
                     else
                     {
-                        if (ingest_record(cl, xmlrec, cl->record_offset, nmem))
-                            yaz_log(YLOG_WARN, "Failed to ingest from %s",
-                                    client_get_url(cl));
+                        /* OK = 0, -1 = failure, -2 = Filtered */
+                        if (ingest_record(cl, xmlrec, cl->record_offset, nmem) == -1)
+                            yaz_log(YLOG_WARN, "Failed to ingest from %s", client_get_url(cl));
                     }
                     nmem_destroy(nmem);
                 }
@@ -930,16 +943,29 @@ int client_parse_query(struct client *cl, const char *query)
     struct session *se = client_get_session(cl);
     struct session_database *sdb = client_get_database(cl);
     struct ccl_rpn_node *cn;
+    struct ccl_rpn_node *cn_recordfilter = 0;
     int cerror, cpos;
     CCL_bibset ccl_map = prepare_cclmap(cl);
     const char *sru = session_setting_oneval(sdb, PZ_SRU);
     const char *pqf_prefix = session_setting_oneval(sdb, PZ_PQF_PREFIX);
     const char *pqf_strftime = session_setting_oneval(sdb, PZ_PQF_STRFTIME);
     const char *query_syntax = session_setting_oneval(sdb, PZ_QUERY_SYNTAX);
+    /* Collected, Mixed, Remote */
+    const char *option_recordfilter = session_setting_oneval(sdb, PZ_OPTION_RECORDFILTER);
+    const char *record_filter = session_setting_oneval(sdb, PZ_RECORDFILTER);
     if (!ccl_map)
         return -1;
 
+    yaz_log(YLOG_DEBUG, "query: %s", query);
     cn = ccl_find_str(ccl_map, query, &cerror, &cpos);
+    if (strcmp("remote", option_recordfilter) == 0 && record_filter != 0 && record_filter[0] != 0) {
+        int cerror, cpos;
+        yaz_log(YLOG_DEBUG, "record_filter: %s", record_filter);
+        cn_recordfilter = ccl_find_str(ccl_map, record_filter, &cerror, &cpos);
+        if (!cn_recordfilter)
+            session_log(se, YLOG_WARN, "Failed to parse CCL record filter '%s' for %s",
+                    record_filter, client_get_database(cl)->database->url);
+    }
     ccl_qual_rm(&ccl_map);
     if (!cn)
     {
@@ -955,6 +981,13 @@ int client_parse_query(struct client *cl, const char *query)
         wrbuf_puts(se->wrbuf, pqf_prefix);
         wrbuf_puts(se->wrbuf, " ");
     }
+
+    if (cn_recordfilter) {
+        wrbuf_puts(se->wrbuf, "@and ");
+        ccl_pquery(se->wrbuf, cn_recordfilter);
+        wrbuf_puts(se->wrbuf, " ");
+    }
+
     if (!pqf_strftime || !*pqf_strftime)
         ccl_pquery(se->wrbuf, cn);
     else
@@ -978,10 +1011,12 @@ int client_parse_query(struct client *cl, const char *query)
     xfree(cl->pquery);
     cl->pquery = xstrdup(wrbuf_cstr(se->wrbuf));
 
+    yaz_log(YLOG_DEBUG, "PQF query: %s", cl->pquery);
+
     xfree(cl->cqlquery);
 
-    /* Support for PQF on SRU targets.
-     * TODO Refactor */
+    /* Support for PQF on SRU targets. */
+    /* TODO Refactor */
     yaz_log(YLOG_DEBUG, "Query syntax: %s", query_syntax);
     if (strcmp(query_syntax, "pqf") != 0 && *sru)
     {
index 012d994..c4dfe72 100644 (file)
@@ -48,22 +48,37 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include "settings.h"
 
 /* connection counting (1) , disable connection counting (0) */
-#if 0
+#if 1
 static YAZ_MUTEX g_mutex = 0;
 static int no_connections = 0;
-
+static int total_no_connections = 0;
 static void connection_use(int delta)
 {
+    int result;
     if (!g_mutex)
         yaz_mutex_create(&g_mutex);
     yaz_mutex_enter(g_mutex);
     no_connections += delta;
+    result = no_connection;
+    if (delta > 0)
+        total_no_connections += delta;
     yaz_mutex_leave(g_mutex);
+    if (delta == 0)
+            return result;
     yaz_log(YLOG_LOG, "%s connections=%d", delta > 0 ? "INC" : "DEC",
             no_connections);
+    return result;
+}
+
+int connections_count() {
+    return connection_use(0);
 }
+
+
 #else
 #define connection_use(x)
+#define connections_count(x) 0
+#define connections_count_total(x) 0
 #endif
 
 
index ab738a6..8fd9a67 100644 (file)
 #include "eventl.h"
 #include "sel_thread.h"
 
+#if 1
+static YAZ_MUTEX g_mutex = 0;
+static int no_iochans = 0;
+static int no_iochans_total = 0;
+
+static int iochan_use(int delta)
+{
+    int iochans;
+    if (!g_mutex)
+        yaz_mutex_create(&g_mutex);
+    yaz_mutex_enter(g_mutex);
+    no_iochans += delta;
+    if (delta > 0)
+        no_iochans_total += delta;
+    iochans = no_clients;
+    yaz_mutex_leave(g_mutex);
+    yaz_log(YLOG_DEBUG, "%s iochans=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), iochans);
+    return iochans;
+}
+
+int  iochans_count(void) {
+    return iochan_use(0);
+}
+
+int  iochans_count_total(void) {
+    int total = 0;
+    if (!g_mutex)
+        return 0;
+    yaz_mutex_enter(g_mutex);
+    total = no_iochans_total;
+    yaz_mutex_leave(g_mutex);
+    return total;
+}
+#else
+#define iochan_use(x)
+#define iochans_count(x) 0
+#define iochans_count_total(x) 0
+#endif
+
 struct iochan_man_s {
     IOCHAN channel_list;
     sel_thread_t sel_thread;
@@ -79,6 +118,16 @@ iochan_man_t iochan_man_create(int no_threads) {
     return man;
 }
 
+IOCHAN iochan_destroy_real(IOCHAN chan)
+{
+    IOCHAN next = chan->next;
+    if (chan->name)
+        xfree(chan->name);
+    xfree(free);
+    iochan_use(-1);
+    return next;
+}
+
 void iochan_man_destroy(iochan_man_t *mp) {
     if (*mp) {
         IOCHAN c;
@@ -90,10 +139,7 @@ void iochan_man_destroy(iochan_man_t *mp) {
         (*mp)->channel_list = NULL;
         yaz_mutex_leave((*mp)->iochan_mutex);
         while (c) {
-            IOCHAN c_next = c->next;
-            xfree(c->name);
-            xfree(c);
-            c = c_next;
+            c = iochan_destroy_real(c);
         }
         yaz_mutex_destroy(&(*mp)->iochan_mutex);
         xfree(*mp);
@@ -116,6 +162,7 @@ IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, const char *name) {
 
     if (!(new_iochan = (IOCHAN) xmalloc(sizeof(*new_iochan))))
         return 0;
+    iochan_use(1);
     new_iochan->destroyed = 0;
     new_iochan->fd = fd;
     new_iochan->flags = flags;
@@ -289,9 +336,7 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) {
         for (nextp = iochans; *nextp;) {
             IOCHAN p = *nextp;
             if (p->destroyed && p->thread_users == 0) {
-                *nextp = p->next;
-                xfree(p->name);
-                xfree(p);
+                *nextp = iochan_destroy_real(iochan);
             } else
                 nextp = &p->next;
         }
index 8c21c8c..9d464d6 100644 (file)
@@ -362,7 +362,12 @@ static int process_settings(struct session *se, struct http_request *rq,
 
 static void cmd_exit(struct http_channel *c)
 {
+    char buf[1024];
+    struct http_response *rs = c->response;
     yaz_log(YLOG_WARN, "exit");
+    sprintf(buf, HTTP_COMMAND_RESPONSE_PREFIX "<exit><status>OK</status></exit>");
+    rs->payload = nmem_strdup(c->nmem, buf);
+    http_send_response(c);
     http_close_server(c->server);
 }
 
index 7b6e78a..8a3c0f9 100644 (file)
@@ -98,6 +98,7 @@ struct client_list {
 /* session counting (1) , disable client counting (0) */
 static YAZ_MUTEX g_session_mutex = 0;
 static int no_sessions = 0;
+static int no_session_total = 0;
 
 static int session_use(int delta)
 {
@@ -106,6 +107,8 @@ static int session_use(int delta)
         yaz_mutex_create(&g_session_mutex);
     yaz_mutex_enter(g_session_mutex);
     no_sessions += delta;
+    if (delta > 0)
+        no_session_total += delta;
     sessions = no_sessions;
     yaz_mutex_leave(g_session_mutex);
     yaz_log(YLOG_DEBUG, "%s sesions=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), no_sessions);
@@ -116,6 +119,17 @@ int sessions_count(void) {
     return session_use(0);
 }
 
+int  session_count_total(void) {
+    int total = 0;
+    if (!g_session_mutex)
+        return 0;
+    yaz_mutex_enter(g_session_mutex);
+    total = no_session_total;
+    yaz_mutex_leave(g_session_mutex);
+    return total;
+}
+
+
 static void log_xml_doc(xmlDoc *doc)
 {
     FILE *lf = yaz_log_file();
@@ -746,8 +760,13 @@ void session_apply_setting(struct session *se, char *dbname, char *setting,
     }
 }
 
+/* Depreciated: use session_destroy */
 void destroy_session(struct session *se)
 {
+    session_destroy(se);
+}
+
+void session_destroy(struct session *se) {
     struct session_database *sdb;
     session_log(se, YLOG_DEBUG, "Destroying");
     session_use(-1);
@@ -762,8 +781,10 @@ void destroy_session(struct session *se)
     service_destroy(se->service);
     yaz_mutex_destroy(&se->session_mutex);
     wrbuf_destroy(se->wrbuf);
+
 }
 
+
 size_t session_get_memory_status(struct session *session) {
     size_t session_nmem;
     if (session == 0)
@@ -1243,6 +1264,7 @@ static int ingest_to_cluster(struct client *cl,
     \param nmem working NMEM
     \retval 0 OK
     \retval -1 failure
+    \retval -2 Filtered
 */
 int ingest_record(struct client *cl, const char *rec,
                   int record_no, NMEM nmem)
@@ -1262,10 +1284,10 @@ int ingest_record(struct client *cl, const char *rec,
     
     if (!check_record_filter(root, sdb))
     {
-        session_log(se, YLOG_WARN, "Filtered out record no %d from %s",
+        session_log(se, YLOG_LOG, "Filtered out record no %d from %s",
                     record_no, sdb->database->url);
         xmlFreeDoc(xdoc);
-        return -1;
+        return -2;
     }
     
     mergekey_norm = get_mergekey(xdoc, cl, record_no, service, nmem);
index 1355dc1..691e627 100644 (file)
@@ -77,6 +77,8 @@ static char *hard_settings[] = {
     "pz:preferred",             /* PZ_PREFERRED           */
     "pz:extra_args",            /* PZ_EXTRA_ARGS          */
     "pz:query_syntax",          /* PZ_QUERY_SYNTAX        */
+    "pz:option_recordfilter",   /* PZ_OPTION_RECORDFILTER */
+
     0
 };
 
index ba871c2..86eb31d 100644 (file)
@@ -50,7 +50,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #define PZ_PREFERRED            27
 #define PZ_EXTRA_ARGS           28
 #define PZ_QUERY_SYNTAX         29
-#define PZ_MAX_EOF              30
+#define PZ_OPTION_RECORDFILTER  30
+#define PZ_MAX_EOF              31
 
 struct setting
 {
index e21fe1b..cd18881 100644 (file)
@@ -1,26 +1,31 @@
-<settings target="kb.dadsthirdnode.cvt.dk/sru-proxy">
+<settings target="*">
 
   <!-- Simple test against a local SRU server (could be yaz-ztest) -->
+  <set target="kb.dadsthirdnode.cvt.dk/sru-proxy" name="pz:name" value="DADS SRU-proxy"/>
+  <!-- field-specific mappings -->
+  <set name="pz:cclmap:au" value="u=1003 s=al"/>
+  <set name="pz:cclmap:ti" value="u=4 s=al"/>
+  <set name="pz:cclmap:su" value="u=1016"/>
+  <set name="pz:cclmap:jt" value="u=1016"/>
+  <set name="pz:cclmap:isbn" value="u=7"/>
+  <set name="pz:cclmap:issn" value="u=8"/>
+  <set name="pz:cclmap:date" value="u=30 r=r"/>
 
   <set name="pz:sru" value="get"/> <!-- must be get, post or soap -->
   <set name="pz:sru_version" value="1.1"/>
   <set name="pz:name" value="sru-proxy"/>
 
-
   <set name="pz:maxrecs" value="50"/>
 
   <!-- mapping for unqualified search -->
 
-  <set name="pz:extra_args" value="%26x-facet_def%3Ddtic_test%26x-noxsl%3D1" />
+  <set name="pz:extra_args" value="&amp;x-facet_def=dtic_test&amp;x-noxsl=1" />
   <set name="pz:query_syntax" value="pqf" />
-
-  <!-- Retrieval settings -->
-
-  <set name="pz:elements" value="dc"/>
+  <set name="pz:option_recordfilter" value="remote"/>
 
   <!-- Result normalization settings -->
 
-  <set name="pz:nativesyntax" value="xml"/>
-  <set name="pz:xslt" value="dc.xsl"/>
+  <set name="pz:nativesyntax" value="txml"/>
+  <set name="pz:xslt" value="dads-pz2.xsl"/>
 
 </settings>
index 65287b7..6db27c3 100644 (file)
@@ -19,7 +19,9 @@
       <metadata name="id"/>
       <metadata name="lccn" merge="unique"/>
       <metadata name="description" brief="yes" merge="longest" rank="3"/>
-      
+
+      <metadata name="medium" brief="yes" merge="longest" mergekey="optional" termlist="yes"/>      
+
       <metadata name="test-usersetting" brief="yes" setting="postproc"/>
       <metadata name="test" setting="parameter"/>
       <metadata name="test-usersetting-2" brief="yes"/>
index a8f944e..57c2842 100644 (file)
@@ -1,15 +1,9 @@
 http://localhost:9763/search.pz2?command=init&clear=1
-http://localhost:9763/search.pz2?session=1&command=settings&pz:sru%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=solr&pz%3Aname%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=SOLR+Test&pz%3Acclmap%3Ati%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Acclmap%3Asu%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dsubject&pz%3Acclmap%3Aau%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dauthor&pz%3Acclmap%3Aisbn%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Disbn&pz%3Acclmap%3Aterm%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Axslt%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=solr-pz2.xsl&pz%3Aqueryencoding%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=UTF-8&pz%3Aapdulog%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1
-http://localhost:9763/search.pz2?session=1&command=search&query=su%3D%22computer%22
-4 http://localhost:9763/search.pz2?session=1&command=show&block=1
-http://localhost:9763/search.pz2?session=1&command=bytarget
+http://localhost:9763/search.pz2?session=1&command=settings&full_text_target%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=NO&pz%3Atermlist_term_count%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=10&use_url_proxy%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=0&pz%3Apiggyback%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1&pz%3Apreferred%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1&pz%3Acclmap%3Asu%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Dsubject&pz%3Asru%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=solr&use_thumbnails%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=0&pz%3Acclmap%3Adate%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Ddate&medium%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=web&pz%3Aname%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=Oaister+%28SOLR%29&pz%3Acclmap%3Aissn%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=u%3D8&pz%3Acclmap%3Ati%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Acclmap%3Aau%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Dauthor&pz%3Axslt%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=solr-pz2.xsl&pz%3Acclmap%3Aterm%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Dtext+s%3Dal&pz%3Acclmap%3Aisbn%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=1%3Disbn&pz%3Aqueryencoding%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=UTF-8&pz%3Aoption_recordfilter%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=remote&full_text_target%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=NO&pz%3Atermlist_term_count%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=10&use_url_proxy%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=0&pz%3Apiggyback%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1&pz%3Apreferred%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1&pz%3Ablock_timeout%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=2&pz%3Acclmap%3Asu%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1%3Dsubject&pz%3Asru%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=solr&use_thumbnails%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=0&pz%3Aname%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=LOC+%28SOLR%29&pz%3Acclmap%3Aissn%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=u%3D8&pz%3Acclmap%3Ati%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Acclmap%3Aau%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1%3Dauthor&pz%3Axslt%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=solr-pz2.xsl&pz%3Acclmap%3Aterm%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1%3Dtext+s%3Dal&pz%3Acclmap%3Aisbn%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=1%3Disbn&pz%3Aqueryencoding%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=UTF-8&pz%3Aoption_recordfilter%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=remote
+http://localhost:9763/search.pz2?session=1&command=search&query=water
+http://localhost:9763/search.pz2?session=1&command=show&block=preferred
 http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Csubject%2Cauthor%2Cdate%2Cmedium
-http://localhost:9763/search.pz2?command=init&clear=1
-http://localhost:9763/search.pz2?session=2&command=settings&pz:sru%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=solr&pz%3Aname%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=SOLR+Test&pz%3Acclmap%3Ati%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Acclmap%3Asu%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dsubject&pz%3Acclmap%3Aau%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dauthor&pz%3Acclmap%3Aisbn%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Disbn&pz%3Acclmap%3Aterm%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1%3Dtitle&pz%3Axslt%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=solr-pz2.xsl&pz%3Aqueryencoding%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=UTF-8&pz%3Aapdulog%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1&pz:termlist_term_count%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=5&pz:preferred%5Blocalhost%3A8983%2Fsolr%2Fselect%5D=1
-http://localhost:9763/search.pz2?session=2&command=search&query=su%3D%22computer%22
-http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Csubject%2Cauthor%2Cdate%2Cmedium
-http://localhost:9763/search.pz2?session=2&command=show&block=preferred
-http://localhost:9763/search.pz2?session=2&command=search&query=su%3D%22xyzy%22
-http://localhost:9763/search.pz2?session=2&command=show&block=preferred
+http://localhost:9763/search.pz2?session=1&command=settings&pz%3Arecordfilter%5Bocs-oaister.indexdata.com%2Fsolr%2Fselect%5D=medium%3Dmicroform&pz%3Arecordfilter%5Bocs-loc.indexdata.com%2Fsolr%2Fselect%5D=medium%3Dmicroform
+http://localhost:9763/search.pz2?session=1&command=search&query=water
+http://localhost:9763/search.pz2?session=1&command=show&block=preferred
 http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Csubject%2Cauthor%2Cdate%2Cmedium
-http://localhost:9763/search.pz2?session=2&command=termlist&name=xtargets%2Csubject%2Cauthor%2Cdate%2Cmedium
\ No newline at end of file
index c39fff4..42534e3 100644 (file)
@@ -1,63 +1,2 @@
-<termlist>
-<activeclients>0</activeclients>
-<list name="xtargets">
-<term>
-<id>donut:8983/solr/select</id>
-<name>SOLR Test</name>
-<frequency>1128</frequency>
-<state>Client_Idle</state>
-<diagnostic>0</diagnostic>
-</term>
-</list>
-<list name="author">
-<term><name>D&apos;Ignazio, Fred</name><frequency>4</frequency></term>
-<term><name>Lampton, Christopher</name><frequency>2</frequency></term>
-<term><name>Grauer, Robert T</name><frequency>2</frequency></term>
-<term><name>Carlson, Edward H</name><frequency>2</frequency></term>
-<term><name>Nevile, Liddy</name><frequency>2</frequency></term>
-<term><name>Jones, Aubrey B</name><frequency>2</frequency></term>
-<term><name>Boren, Sharon</name><frequency>2</frequency></term>
-<term><name>Fiday, David</name><frequency>2</frequency></term>
-<term><name>Groner, Gabriel F</name><frequency>2</frequency></term>
-<term><name>Orkin, Michael</name><frequency>1</frequency></term>
-<term><name>Thornburg, David D</name><frequency>1</frequency></term>
-<term><name>Pradels, Jean Louis</name><frequency>1</frequency></term>
-<term><name>Dietzler, Andrew John</name><frequency>1</frequency></term>
-<term><name>Haverty, J. P</name><frequency>1</frequency></term>
-<term><name>Eland, Dave Ronald</name><frequency>1</frequency></term>
-</list>
-<list name="subject">
-<term><name>Apple computer</name><frequency>40</frequency></term>
-<term><name>BASIC (Computer program language)</name><frequency>38</frequency></term>
-<term><name>Atari computer</name><frequency>35</frequency></term>
-<term><name>Programming (Computers)</name><frequency>30</frequency></term>
-<term><name>Digital computer simulation</name><frequency>20</frequency></term>
-<term><name>Computer graphics</name><frequency>18</frequency></term>
-<term><name>LOGO (Computer program language)</name><frequency>14</frequency></term>
-<term><name>Computer games</name><frequency>14</frequency></term>
-<term><name>Debugging in computer science</name><frequency>8</frequency></term>
-<term><name>Time-sharing computer systems</name><frequency>8</frequency></term>
-<term><name>Virtual computer systems</name><frequency>8</frequency></term>
-<term><name>Interactive computer systems</name><frequency>8</frequency></term>
-<term><name>Embedded computer systems</name><frequency>7</frequency></term>
-<term><name>Computers</name><frequency>6</frequency></term>
-<term><name>Engineering</name><frequency>6</frequency></term>
-</list>
-<list name="date">
-<term><name>1984</name><frequency>23</frequency></term>
-<term><name>2000</name><frequency>18</frequency></term>
-<term><name>1983</name><frequency>9</frequency></term>
-<term><name>2001</name><frequency>7</frequency></term>
-<term><name>1999</name><frequency>6</frequency></term>
-<term><name>1985</name><frequency>6</frequency></term>
-<term><name>1970</name><frequency>4</frequency></term>
-<term><name>1986</name><frequency>4</frequency></term>
-<term><name>1973</name><frequency>2</frequency></term>
-<term><name>1964</name><frequency>2</frequency></term>
-<term><name>1966</name><frequency>2</frequency></term>
-<term><name>1993</name><frequency>1</frequency></term>
-<term><name>2003</name><frequency>1</frequency></term>
-<term><name>2006</name><frequency>1</frequency></term>
-<term><name>1982</name><frequency>1</frequency></term>
-</list>
-</termlist>
+<?xml version="1.0" encoding="UTF-8"?>
+<settings><status>OK</status></settings>
\ No newline at end of file
index 03c7c0d..ab63fe6 100644 (file)
@@ -1,309 +1,2 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<show>
-<status>OK</status>
-<activeclients>0</activeclients>
-<merged>96</merged>
-<total>1128</total>
-<start>0</start>
-<num>20</num>
-<hit>
-
-<md-title>6502 assembly-language programming for Apple, Commodore, and Atari computers</md-title>
-<md-date>1985</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Instructs those who have already programmed in high-level languages in programming with the more powerful and versatile assembly or machine language</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>6502 assembly-language programming for Apple, Commodore, and Atari computers</md-title>
-<md-date>1985</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Cover title: 6502 assembly language</md-description>
-<md-description>Series statement from jacket</md-description>
-<md-description>Includes index</md-description>
-<md-description>Instructs those who have already programmed in high-level languages in programming with the more powerful and versatile assembly or machine language</md-description></location>
-<relevance>1020000</relevance>
-<recid>title assembly language programming for apple commodore and atari computers author lampton christopher</recid>
-</hit>
-<hit>
-
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>Cataloging based on CIP information</md-description>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>Cataloging based on CIP information</md-description>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description></location>
-<count>2</count>
-<relevance>942857</relevance>
-<recid>title let s talk apple turtle author nevile liddy</recid>
-</hit>
-<hit>
-
-<md-title>Proceedings of the 1999 International Conference on Web-Based Modeling and Simulation</md-title>
-<md-title-remainder>[held as part of] 1999 Western MultiConference, San Francisco, California, January 17-20, 1999, Cathedral Hill Hotel</md-title-remainder>
-<md-date>1999-2000</md-date>
-<md-description>Network modeling -- Civil applications -- Education and training -- Military applications -- Parallel and distributed simulation -- DEVS-based approaches -- Modeling and simulation environments -- High-level architecture -- Visualization and animation -- Real-time applications</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Proceedings of the International Conference on Web-based Modeling and Simulation</md-title>
-<md-date>2000</md-date>
-<md-description>Both conferences held as parts of the 2000 Western MultiConference, San Diego, California, January 23-27, 2000, Catamaran Resort Hotel</md-description>
-<md-description>&quot;Sponsored by the Society for Computer Simulation International&quot;--T.p</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Proceedings of the 1999 International Conference on Web-Based Modeling and Simulation</md-title>
-<md-title-remainder>[held as part of] 1999 Western MultiConference, San Francisco, California, January 17-20, 1999, Cathedral Hill Hotel</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Network modeling -- Civil applications -- Education and training -- Military applications -- Parallel and distributed simulation -- DEVS-based approaches -- Modeling and simulation environments -- High-level architecture -- Visualization and animation -- Real-time applications</md-description></location>
-<count>2</count>
-<relevance>930000</relevance>
-<recid>title proceedings of the international conference on web based modeling and simulation</recid>
-</hit>
-<hit>
-
-<md-title>Computer art and animation</md-title>
-<md-title-remainder>a user&apos;s guide to Atari logo</md-title-remainder>
-<md-date>1984</md-date>
-<md-author>Thornburg, David D</md-author>
-<md-description>Explains how to use a computer to create graphic designs and animated sequences</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Computer art and animation</md-title>
-<md-title-remainder>a user&apos;s guide to Atari logo</md-title-remainder>
-<md-date>1984</md-date>
-<md-author>Thornburg, David D</md-author>
-<md-description>Includes index</md-description>
-<md-description>Explains how to use a computer to create graphic designs and animated sequences</md-description></location>
-<relevance>923076</relevance>
-<recid>title computer art and animation author thornburg david d</recid>
-</hit>
-<hit>
-
-<md-title>Random alley adventure for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Orkin, Michael</md-author>
-<md-description>Programs written in BASIC for an Atari computer provide experience in games of chance which demonstrate the law of averages</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Random alley adventure for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Orkin, Michael</md-author>
-<md-description>&quot;A Reston Computer Group book.&quot;</md-description>
-<md-description>Programs written in BASIC for an Atari computer provide experience in games of chance which demonstrate the law of averages</md-description></location>
-<relevance>910714</relevance>
-<recid>title random alley adventure for the atari computer author orkin michael</recid>
-</hit>
-<hit>
-
-<md-title>I speak BASIC to my Atari</md-title>
-<md-title-remainder>teacher&apos;s manual</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>I speak BASIC to my Atari</md-title>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>I speak BASIC to my Atari</md-title>
-<md-title-remainder>teacher&apos;s manual</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description></location>
-<count>2</count>
-<relevance>900000</relevance>
-<recid>title i speak basic to my atari author jones aubrey b</recid>
-</hit>
-<hit>
-
-<md-title>School days for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Passantino, Claire Bailey</md-author>
-<md-description>Presents twenty programs that include games, contests, riddles, songs, and other activities to use with BASIC on the Atari computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>School days for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Passantino, Claire Bailey</md-author>
-<md-description>Presents twenty programs that include games, contests, riddles, songs, and other activities to use with BASIC on the Atari computer</md-description></location>
-<relevance>865000</relevance>
-<recid>title school days for the atari computer author passantino claire bailey</recid>
-</hit>
-<hit>
-
-<md-title>The Apple LOGO manual</md-title>
-<md-date>1985</md-date>
-<md-description>Instructions for doing computer graphics on an Apple computer in LOGO</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>The Apple LOGO manual</md-title>
-<md-date>1985</md-date>
-<md-description>Includes index</md-description>
-<md-description>Instructions for doing computer graphics on an Apple computer in LOGO</md-description></location>
-<relevance>804545</relevance>
-<recid>title the apple logo manual</recid>
-</hit>
-<hit>
-
-<md-title>Kid-powered Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Explains how to use the computer language LOGO to write fundamental programs and create graphics on the Apple computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Kid-powered Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description>
-<md-description>Explains how to use the computer language LOGO to write fundamental programs and create graphics on the Apple computer</md-description></location>
-<relevance>781578</relevance>
-<recid>title kid powered logo author fiday david</recid>
-</hit>
-<hit>
-
-<md-title>Basic fun with graphics, the Atari computer way</md-title>
-<md-date>1983</md-date>
-<md-author>Zuanich, Margaret Ann</md-author>
-<md-description>Instructions for graphics programming on an Atari computer using BASIC</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Basic fun with graphics, the Atari computer way</md-title>
-<md-date>1983</md-date>
-<md-author>Zuanich, Margaret Ann</md-author>
-<md-description>Instructions for graphics programming on an Atari computer using BASIC</md-description></location>
-<relevance>780000</relevance>
-<recid>title basic fun with graphics the atari computer way author zuanich margaret ann</recid>
-</hit>
-<hit>
-
-<md-title>Turtlesteps, an introduction to Apple Logo and Terrapin Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Sharp, Pamela</md-author>
-<md-description>Introduces computer graphics and beginning programming in Apple Logo and Terrapin Logo</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Turtlesteps, an introduction to Apple Logo and Terrapin Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Sharp, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Introduces computer graphics and beginning programming in Apple Logo and Terrapin Logo</md-description></location>
-<relevance>775000</relevance>
-<recid>title turtlesteps an introduction to apple logo and terrapin logo author sharp pamela</recid>
-</hit>
-<hit>
-
-<md-title>Graphics and animation on the Atari</md-title>
-<md-title-remainder>800, 400, 1200XL, 800XL, and 600XL</md-title-remainder>
-<md-date>1986</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Instructions for creating simple and advanced graphics using BASIC on the Atari computer. Includes suggestions for projects</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Graphics and animation on the Atari</md-title>
-<md-title-remainder>800, 400, 1200XL, 800XL, and 600XL</md-title-remainder>
-<md-date>1986</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Includes index</md-description>
-<md-description>Instructions for creating simple and advanced graphics using BASIC on the Atari computer. Includes suggestions for projects</md-description></location>
-<relevance>767647</relevance>
-<recid>title graphics and animation on the atari author lampton christopher</recid>
-</hit>
-<hit>
-
-<md-title>Apple building blocks</md-title>
-<md-title-remainder>featuring Denby, the robot</md-title-remainder>
-<md-date>1985</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Explains how to write fundamental programs for the Apple computer and use it to play forty-six educational games</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Apple building blocks</md-title>
-<md-title-remainder>featuring Denby, the robot</md-title-remainder>
-<md-date>1985</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>On t.p. the circled symbol &quot;R&quot; is superscript following &quot;Apple&quot; in the title</md-description>
-<md-description>Explains how to write fundamental programs for the Apple computer and use it to play forty-six educational games</md-description></location>
-<relevance>765789</relevance>
-<recid>title apple building blocks author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Apple in wonderland</md-title>
-<md-date>1984</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>System requirements for floppy disk: Apple II with Applesoft, II+, IIe, or IIc; DOS 3.3; 1 disk drive and controller card; color TV or monitor recommended</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Apple in wonderland</md-title>
-<md-date>1984</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>System requirements for floppy disk: Apple II with Applesoft, II+, IIe, or IIc; DOS 3.3; 1 disk drive and controller card; color TV or monitor recommended</md-description>
-<md-description>Issued in plastic case</md-description>
-<md-description>Provides programs for twenty-two learning games written in BASIC for an Apple II computer. Includes a floppy disk</md-description></location>
-<relevance>765789</relevance>
-<recid>title apple in wonderland author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Atari in Wonderland</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Contains twenty-two short, simple games to use with an Atari computer on such topics as colors, sounds, multiplication, state names, spelling, fractions, and Spanish and French languages</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Atari in Wonderland</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Contains twenty-two short, simple games to use with an Atari computer on such topics as colors, sounds, multiplication, state names, spelling, fractions, and Spanish and French languages</md-description></location>
-<relevance>685714</relevance>
-<recid>title atari in wonderland author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>BASIC is child&apos;s play, Apple edition</md-title>
-<md-date>1984</md-date>
-<md-author>Grauer, Robert T</md-author>
-<md-description>Offers instructions for computer novices in programming with BASIC on an Apple personal computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>BASIC is child&apos;s play, Apple edition</md-title>
-<md-date>1984</md-date>
-<md-author>Grauer, Robert T</md-author>
-<md-description>Includes index</md-description>
-<md-description>Offers instructions for computer novices in programming with BASIC on an Apple personal computer</md-description></location>
-<relevance>642857</relevance>
-<recid>title basic is child s play apple edition author grauer robert t</recid>
-</hit>
-<hit>
-
-<md-title>The Atari playground</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Twenty-three learning games, grouped by subject, for use on an Atari computer. There are separate instructional sections for parents/teachers and for children</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>The Atari playground</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Twenty-three learning games, grouped by subject, for use on an Atari computer. There are separate instructional sections for parents/teachers and for children</md-description></location>
-<relevance>612500</relevance>
-<recid>title the atari playground author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Computer software</md-title>
-<md-title-remainder>supplying it and finding it</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Tagg, W</md-author><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Computer software</md-title>
-<md-title-remainder>supplying it and finding it</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Tagg, W</md-author></location>
-<relevance>600000</relevance>
-<recid>title computer software author tagg w</recid>
-</hit>
-<hit>
-
-<md-title>Kid-powered graphics</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Kid-powered graphics</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>600000</relevance>
-<recid>title kid powered graphics author fiday david</recid>
-</hit>
-<hit>
-
-<md-title>BASIC on the ATARI computer for kids</md-title>
-<md-date>1984</md-date>
-<md-author>Wyner, Keith</md-author>
-<md-description>Instructions for the elementary school student in programming BASIC on an Atari computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>BASIC on the ATARI computer for kids</md-title>
-<md-date>1984</md-date>
-<md-author>Wyner, Keith</md-author>
-<md-description>Includes index</md-description>
-<md-description>Instructions for the elementary school student in programming BASIC on an Atari computer</md-description></location>
-<relevance>558791</relevance>
-<recid>title basic on the atari computer for kids author wyner keith</recid>
-</hit>
-</show>
+<search><status>OK</status></search>
\ No newline at end of file
index ab63fe6..ae1f306 100644 (file)
@@ -1,2 +1,372 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<search><status>OK</status></search>
\ No newline at end of file
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>185</merged>
+<total>592328</total>
+<start>0</start>
+<num>20</num>
+<hit>
+
+<md-title>California water plan update</md-title>
+<md-date>1998</md-date>
+<md-author>California. Dept. of Water Resources; Bateni, Naser J</md-author>
+<md-description>&quot;November 1998.&quot;</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1998</md-date>
+<md-author>California. Dept. of Water Resources; Bateni, Naser J</md-author>
+<md-description>&quot;November 1998.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1998</md-date>
+<md-author>California. Dept. of Water Resources; Bateni, Naser J</md-author>
+<md-description>&quot;November 1998.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<count>2</count>
+<relevance>30982</relevance>
+<recid>title california water plan update author california dept of water resources bateni naser j medium other</recid>
+</hit>
+<hit>
+
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-author>Bateni, Naser J; California. Dept. of Water Resources</md-author>
+<md-description>&quot;October 1994.&quot;</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-author>Bateni, Naser J; California. Dept. of Water Resources</md-author>
+<md-description>&quot;October 1994.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-author>Bateni, Naser J; California. Dept. of Water Resources</md-author>
+<md-description>&quot;October 1994.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<count>2</count>
+<relevance>26448</relevance>
+<recid>title california water plan update author bateni naser j california dept of water resources medium other</recid>
+</hit>
+<hit>
+
+<md-title>Water Resources of Jordan: Present Status and Future Potentials</md-title>
+<md-date>1993</md-date>
+<md-author>Salameh, Elias and Bannayan, Helen</md-author>
+<md-description>18265046504</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Water Resources of Jordan: Present Status and Future Potentials</md-title>
+<md-date>1993</md-date>
+<md-author>Salameh, Elias and Bannayan, Helen</md-author>
+<md-description>18265046504</md-description>
+<md-medium>other</md-medium></location>
+<relevance>26096</relevance>
+<recid>title water resources of jordan present status and future potentials author salameh elias and bannayan helen medium other</recid>
+</hit>
+<hit>
+
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-description>Accompanied by: Executive summary. xi, [90] p. : col. ill. ; 28 cm</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-description>Accompanied by: Executive summary. xi, [90] p. : col. ill. ; 28 cm</md-description>
+<md-description>&quot;November 1998.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>California water plan update</md-title>
+<md-date>1994</md-date>
+<md-description>&quot;October 1994.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<count>2</count>
+<relevance>25693</relevance>
+<recid>title california water plan update medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water quality and treatment;</md-title>
+<md-title-remainder>a handbook of community water supplies</md-title-remainder>
+<md-date>1971-1990</md-date>
+<md-description>First published in 1940 under title: Manual of water quality and treatment</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality and treatment;</md-title>
+<md-title-remainder>a handbook of public water supplies</md-title-remainder>
+<md-date>1971</md-date>
+<md-description>First published in 1940 under title: Manual of water quality and treatment</md-description>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality and treatment</md-title>
+<md-title-remainder>a handbook of community water supplies</md-title-remainder>
+<md-date>1990</md-date>
+<md-medium>book</md-medium></location>
+<count>2</count>
+<relevance>23334</relevance>
+<recid>title water quality and treatment medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water rights in Oregon</md-title>
+<md-title-remainder>an introduction to Oregon&apos;s water laws and water rights system</md-title-remainder>
+<md-date>1997-2002</md-date>
+<md-description>&quot;November 2002.&quot;</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water rights in Oregon</md-title>
+<md-title-remainder>an introduction to Oregon&apos;s water law and water rights system</md-title-remainder>
+<md-date>1997</md-date>
+<md-description>Cover title</md-description>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water rights in Oregon</md-title>
+<md-title-remainder>an introduction to Oregon&apos;s water laws and water rights system</md-title-remainder>
+<md-date>2002</md-date>
+<md-description>Cover title</md-description>
+<md-description>&quot;November 2002.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<count>2</count>
+<relevance>20884</relevance>
+<recid>title water rights in oregon medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water</md-title>
+<md-title-remainder>a resource in crisis</md-title-remainder>
+<md-date>1991</md-date>
+<md-author>Lucas, Eileen</md-author>
+<md-description>Discusses how human activities and carelessness are polluting Earth&apos;s water supply and what must be done to clean it up</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water</md-title>
+<md-title-remainder>a resource in crisis</md-title-remainder>
+<md-date>1991</md-date>
+<md-author>Lucas, Eileen</md-author>
+<md-description>Discusses how human activities and carelessness are polluting Earth&apos;s water supply and what must be done to clean it up</md-description>
+<md-medium>book</md-medium></location>
+<relevance>20619</relevance>
+<recid>title water author lucas eileen medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water wars</md-title>
+<md-title-remainder>the fight to control and conserve nature&apos;s most precious resource</md-title-remainder>
+<md-date>1993</md-date>
+<md-author>Cossi, Olga</md-author>
+<md-description>Discusses water&apos;s sources, uses, and shortages; water quality problems and management programs; and what individuals can do to ensure cleaner water</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water wars</md-title>
+<md-title-remainder>the fight to control and conserve nature&apos;s most precious resource</md-title-remainder>
+<md-date>1993</md-date>
+<md-author>Cossi, Olga</md-author>
+<md-description>&quot;An Earthcare book.&quot;</md-description>
+<md-description>Discusses water&apos;s sources, uses, and shortages; water quality problems and management programs; and what individuals can do to ensure cleaner water</md-description>
+<md-medium>book</md-medium></location>
+<relevance>20266</relevance>
+<recid>title water wars author cossi olga medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water</md-title>
+<md-title-remainder>opposing viewpoints</md-title-remainder>
+<md-date>1994</md-date>
+<md-description>Presents opposing viewpoints on issues relating to water, including managing the water supply, acid rain, and government regulations</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water</md-title>
+<md-title-remainder>opposing viewpoints</md-title-remainder>
+<md-date>1994</md-date>
+<md-description>Presents opposing viewpoints on issues relating to water, including managing the water supply, acid rain, and government regulations</md-description>
+<md-medium>book</md-medium></location>
+<relevance>20151</relevance>
+<recid>title water medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water</md-title>
+<md-title-remainder>the international crisis</md-title-remainder>
+<md-date>1991</md-date>
+<md-author>Clarke, Robin</md-author>
+<md-description>&quot;Published in association with the Swedish Red Cross.&quot;</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water</md-title>
+<md-title-remainder>the international crisis</md-title-remainder>
+<md-date>1991</md-date>
+<md-author>Clarke, Robin</md-author>
+<md-description>&quot;Published in association with the Swedish Red Cross.&quot;</md-description>
+<md-description>&quot;An Earthscan original&quot;--Cover</md-description>
+<md-medium>book</md-medium></location>
+<relevance>19647</relevance>
+<recid>title water author clarke robin medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water quality standards</md-title>
+<md-date>1970-1973</md-date>
+<md-description>Errata slip inserted</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality standards</md-title>
+<md-date>1973</md-date>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality standards</md-title>
+<md-date>1970</md-date>
+<md-description>Cover title</md-description>
+<md-description>Errata slip inserted</md-description>
+<md-medium>book</md-medium></location>
+<count>2</count>
+<relevance>19647</relevance>
+<recid>title water quality standards medium book</recid>
+</hit>
+<hit>
+
+<md-title>My Water Supply</md-title>
+<md-description>The Peggy Notebaert Nature Museum offers several online exhibits for kids, including the My Water Supply Web site geared towards students grade 6 through 12. The site&apos;s goal is to document drinking water sources throughout the world through individual stories and photographs by having kids investigate and submit information about their water resources. As the students investigate their areas&apos; water resources, it is hoped that they gain a deeper understanding of the water&apos;s importance and then will work towards water protection. Students can also view water supply information submitted by others in the growing database to compare and contrast others&apos; experiences. And, although the number of actual submittals is not yet extensive, as more classrooms contribute more students will learn the important lessons the site is trying to share</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>My Water Supply</md-title>
+<md-description>The Peggy Notebaert Nature Museum offers several online exhibits for kids, including the My Water Supply Web site geared towards students grade 6 through 12. The site&apos;s goal is to document drinking water sources throughout the world through individual stories and photographs by having kids investigate and submit information about their water resources. As the students investigate their areas&apos; water resources, it is hoped that they gain a deeper understanding of the water&apos;s importance and then will work towards water protection. Students can also view water supply information submitted by others in the growing database to compare and contrast others&apos; experiences. And, although the number of actual submittals is not yet extensive, as more classrooms contribute more students will learn the important lessons the site is trying to share</md-description>
+<md-medium>other</md-medium></location>
+<relevance>19138</relevance>
+<recid>title my water supply medium other</recid>
+</hit>
+<hit>
+
+<md-title>Water Quality: Microbial (Pathogen)</md-title>
+<md-description>The Safe Drinking Water Act (SDWA) and the Clean Water Acts (CWA) address microbial contamination of the nation&apos;s waters. The CWA enables protection of surface water for drinking water, recreational, and aquatic food source uses. The SDWA enables regulation of contamination of finished drinking water and protection of source waters</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Water Quality: Microbial (Pathogen)</md-title>
+<md-description>The Safe Drinking Water Act (SDWA) and the Clean Water Acts (CWA) address microbial contamination of the nation&apos;s waters. The CWA enables protection of surface water for drinking water, recreational, and aquatic food source uses. The SDWA enables regulation of contamination of finished drinking water and protection of source waters</md-description>
+<md-medium>other</md-medium></location>
+<relevance>18580</relevance>
+<recid>title water quality microbial pathogen medium other</recid>
+</hit>
+<hit>
+
+<md-title>Water</md-title>
+<md-date>2003</md-date>
+<md-author>Kalz, Jill</md-author>
+<md-description>Briefly explains where our drinking water comes from and its importance in human nutrition</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water</md-title>
+<md-date>2003</md-date>
+<md-author>Kalz, Jill</md-author>
+<md-description>Briefly explains where our drinking water comes from and its importance in human nutrition</md-description>
+<md-medium>book</md-medium></location>
+<relevance>18460</relevance>
+<recid>title water author kalz jill medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water</md-title>
+<md-date>1980</md-date>
+<md-author>Lewis, Alun</md-author>
+<md-description>Discusses water, which covers three-quarters of the earth&apos;s surface, as a source of energy</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water</md-title>
+<md-date>1980</md-date>
+<md-author>Lewis, Alun</md-author>
+<md-description>Includes index</md-description>
+<md-description>Discusses water, which covers three-quarters of the earth&apos;s surface, as a source of energy</md-description>
+<md-medium>book</md-medium></location>
+<relevance>18419</relevance>
+<recid>title water author lewis alun medium book</recid>
+</hit>
+<hit>
+
+<md-title>Water Basics</md-title>
+<md-description>Water is generally classified into two groups: Surface Water and Ground Water</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Water Basics</md-title>
+<md-description>Water is generally classified into two groups: Surface Water and Ground Water</md-description>
+<md-medium>other</md-medium></location>
+<relevance>17758</relevance>
+<recid>title water basics medium other</recid>
+</hit>
+<hit>
+
+<md-title>Water quality data for Ontario lakes and streams</md-title>
+<md-date>1964</md-date>
+<md-author>Ontario Water Resources Commission; Ontario. Water Resources Branch; Ontario. Water Quality Branch</md-author>
+<md-description>Period covered by reports is irregular</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Water quality data for Ontario lakes and streams</md-title>
+<md-date>1964</md-date>
+<md-author>Ontario Water Resources Commission; Ontario. Water Resources Branch; Ontario. Water Quality Branch</md-author>
+<md-description>Period covered by reports is irregular</md-description>
+<md-medium>other</md-medium></location>
+<location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Water quality data for Ontario lakes and streams</md-title>
+<md-date>1964</md-date>
+<md-author>Ontario Water Resources Commission; Ontario. Water Resources Branch; Ontario. Water Quality Branch</md-author>
+<md-description>Period covered by reports is irregular</md-description>
+<md-medium>other</md-medium></location>
+<count>2</count>
+<relevance>17380</relevance>
+<recid>title water quality data for ontario lakes and streams author ontario water resources commission ontario water resources branch ontario water quality branch medium other</recid>
+</hit>
+<hit>
+
+<md-title>Appropriation of water in Montana</md-title>
+<md-date>1990-1992</md-date>
+<md-description>&quot;April 1992.&quot;</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Appropriation of water in Montana</md-title>
+<md-date>1990</md-date>
+<md-description>&quot;July 1990.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>Appropriation of water in Montana</md-title>
+<md-date>1992</md-date>
+<md-description>&quot;April 1992.&quot;</md-description>
+<md-medium>other</md-medium></location>
+<count>2</count>
+<relevance>17229</relevance>
+<recid>title appropriation of water in montana medium other</recid>
+</hit>
+<hit>
+
+<md-title>Water quality assessment of the State Water Project, 1994-1995</md-title>
+<md-date>1997-2000</md-date>
+<md-description>&quot;September 1999.&quot;</md-description>
+<md-medium>book</md-medium><location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality assessment of the State Water Project, 1994-1995</md-title>
+<md-date>1997</md-date>
+<md-description>&quot;June 1997.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
+<md-date>2000</md-date>
+<md-description>Cover title</md-description>
+<md-description>&quot;July 2000.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<location id="ocs-loc.indexdata.com/solr/select" name="LOC (SOLR)">
+<md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
+<md-date>1999</md-date>
+<md-description>Cover title</md-description>
+<md-description>&quot;September 1999.&quot;</md-description>
+<md-medium>book</md-medium></location>
+<count>3</count>
+<relevance>17002</relevance>
+<recid>title water quality assessment of the state water project medium book</recid>
+</hit>
+<hit>
+
+<md-title>California water plan update : draft</md-title>
+<md-date>1993</md-date>
+<md-author>California. Dept. of Water Resources</md-author>
+<md-description>&quot;November 1993&quot;</md-description>
+<md-medium>other</md-medium><location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update : draft</md-title>
+<md-date>1993</md-date>
+<md-author>California. Dept. of Water Resources</md-author>
+<md-description>&quot;November 1993&quot;</md-description>
+<md-medium>other</md-medium></location>
+<location id="ocs-oaister.indexdata.com/solr/select" name="Oaister (SOLR)">
+<md-title>California water plan update : draft</md-title>
+<md-date>1993</md-date>
+<md-author>California. Dept. of Water Resources</md-author>
+<md-description>&quot;November 1993&quot;</md-description>
+<md-medium>other</md-medium></location>
+<count>2</count>
+<relevance>16927</relevance>
+<recid>title california water plan update draft author california dept of water resources medium other</recid>
+</hit>
+</show>
index d3b889f..1dcf80c 100644 (file)
@@ -1,9 +1,78 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<show>
-<status>OK</status>
+<termlist>
 <activeclients>0</activeclients>
-<merged>0</merged>
-<total>0</total>
-<start>0</start>
-<num>0</num>
-</show>
+<list name="xtargets">
+<term>
+<id>ocs-oaister.indexdata.com/solr/select</id>
+<name>Oaister (SOLR)</name>
+<frequency>540499</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+<term>
+<id>ocs-loc.indexdata.com/solr/select</id>
+<name>LOC (SOLR)</name>
+<frequency>51829</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+</list>
+<list name="subject">
+<term><name>water</name><frequency>291373</frequency></term>
+<term><name>Temperature</name><frequency>284095</frequency></term>
+<term><name>Salinity</name><frequency>250727</frequency></term>
+<term><name>CTD/Rosette</name><frequency>235255</frequency></term>
+<term><name>Pressure</name><frequency>218869</frequency></term>
+<term><name>CTD</name><frequency>168792</frequency></term>
+<term><name>Oxygen</name><frequency>124141</frequency></term>
+<term><name>MEDAR/MEDATLAS</name><frequency>121785</frequency></term>
+<term><name>Mediterranean Data Archaeology and Rescue</name><frequency>121785</frequency></term>
+<term><name>WOCE</name><frequency>70319</frequency></term>
+<term><name>Water</name><frequency>6982</frequency></term>
+<term><name>Water-supply</name><frequency>5439</frequency></term>
+<term><name>Water resources development</name><frequency>4580</frequency></term>
+<term><name>Groundwater</name><frequency>3065</frequency></term>
+<term><name>Water quality</name><frequency>2536</frequency></term>
+</list>
+<list name="author">
+<term><name>MEDAR Group</name><frequency>119004</frequency></term>
+<term><name>WOCE Hydrographic Programme, WHP</name><frequency>38996</frequency></term>
+<term><name>Schröter, Jen</name><frequency>20168</frequency></term>
+<term><name>Seiß, G</name><frequency>20168</frequency></term>
+<term><name>Olbers, Dirk</name><frequency>20168</frequency></term>
+<term><name>Gouretski, Viktor V</name><frequency>20168</frequency></term>
+<term><name>WOCE Upper Ocean Thermal, UOT</name><frequency>17098</frequency></term>
+<term><name>Anonym</name><frequency>16955</frequency></term>
+<term><name>Victoria. State Rivers and Water Supply Commiss</name><frequency>9949</frequency></term>
+<term><name>BODC</name><frequency>7620</frequency></term>
+<term><name>Waters, Frank</name><frequency>50</frequency></term>
+<term><name>Van de Water, Frederic Franklyn</name><frequency>31</frequency></term>
+<term><name>Eliot, George</name><frequency>31</frequency></term>
+<term><name>Waters, John Frederick</name><frequency>29</frequency></term>
+<term><name>Waters, Clara Erskine Clement</name><frequency>29</frequency></term>
+</list>
+<list name="date">
+<term><name>2006</name><frequency>145562</frequency></term>
+<term><name>2005</name><frequency>95487</frequency></term>
+<term><name>2008</name><frequency>41399</frequency></term>
+<term><name>2007</name><frequency>39680</frequency></term>
+<term><name>2004</name><frequency>34617</frequency></term>
+<term><name>1992</name><frequency>21225</frequency></term>
+<term><name>2009</name><frequency>20604</frequency></term>
+<term><name>2003</name><frequency>18037</frequency></term>
+<term><name>2002</name><frequency>5176</frequency></term>
+<term><name>2001</name><frequency>3852</frequency></term>
+<term><name>1976</name><frequency>1301</frequency></term>
+<term><name>1996</name><frequency>1279</frequency></term>
+<term><name>1971</name><frequency>1275</frequency></term>
+<term><name>1977</name><frequency>1268</frequency></term>
+<term><name>1995</name><frequency>1246</frequency></term>
+</list>
+<list name="medium">
+<term><name>other</name><frequency>513559</frequency></term>
+<term><name>book</name><frequency>51781</frequency></term>
+<term><name>electronicresource</name><frequency>26940</frequency></term>
+<term><name>electron</name><frequency>125</frequency></term>
+<term><name>web</name><frequency>46</frequency></term>
+<term><name>microform</name><frequency>2</frequency></term>
+</list>
+</termlist>
index 7e31492..42534e3 100644 (file)
@@ -1,11 +1,2 @@
-<termlist>
-<activeclients>0</activeclients>
-<list name="xtargets">
-</list>
-<list name="author">
-</list>
-<list name="subject">
-</list>
-<list name="date">
-</list>
-</termlist>
+<?xml version="1.0" encoding="UTF-8"?>
+<settings><status>OK</status></settings>
\ No newline at end of file
index b98d670..ab63fe6 100644 (file)
@@ -1,13 +1,2 @@
-<termlist>
-<activeclients>0</activeclients>
-<list name="xtargets">
-</list>
-<list name="subject">
-</list>
-<list name="author">
-</list>
-<list name="date">
-</list>
-<list name="medium">
-</list>
-</termlist>
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_solr_16.res b/test/test_solr_16.res
new file mode 100644 (file)
index 0000000..e08cbc5
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>592328</total>
+<start>0</start>
+<num>0</num>
+</show>
diff --git a/test/test_solr_17.res b/test/test_solr_17.res
new file mode 100644 (file)
index 0000000..1dcf80c
--- /dev/null
@@ -0,0 +1,78 @@
+<termlist>
+<activeclients>0</activeclients>
+<list name="xtargets">
+<term>
+<id>ocs-oaister.indexdata.com/solr/select</id>
+<name>Oaister (SOLR)</name>
+<frequency>540499</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+<term>
+<id>ocs-loc.indexdata.com/solr/select</id>
+<name>LOC (SOLR)</name>
+<frequency>51829</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+</list>
+<list name="subject">
+<term><name>water</name><frequency>291373</frequency></term>
+<term><name>Temperature</name><frequency>284095</frequency></term>
+<term><name>Salinity</name><frequency>250727</frequency></term>
+<term><name>CTD/Rosette</name><frequency>235255</frequency></term>
+<term><name>Pressure</name><frequency>218869</frequency></term>
+<term><name>CTD</name><frequency>168792</frequency></term>
+<term><name>Oxygen</name><frequency>124141</frequency></term>
+<term><name>MEDAR/MEDATLAS</name><frequency>121785</frequency></term>
+<term><name>Mediterranean Data Archaeology and Rescue</name><frequency>121785</frequency></term>
+<term><name>WOCE</name><frequency>70319</frequency></term>
+<term><name>Water</name><frequency>6982</frequency></term>
+<term><name>Water-supply</name><frequency>5439</frequency></term>
+<term><name>Water resources development</name><frequency>4580</frequency></term>
+<term><name>Groundwater</name><frequency>3065</frequency></term>
+<term><name>Water quality</name><frequency>2536</frequency></term>
+</list>
+<list name="author">
+<term><name>MEDAR Group</name><frequency>119004</frequency></term>
+<term><name>WOCE Hydrographic Programme, WHP</name><frequency>38996</frequency></term>
+<term><name>Schröter, Jen</name><frequency>20168</frequency></term>
+<term><name>Seiß, G</name><frequency>20168</frequency></term>
+<term><name>Olbers, Dirk</name><frequency>20168</frequency></term>
+<term><name>Gouretski, Viktor V</name><frequency>20168</frequency></term>
+<term><name>WOCE Upper Ocean Thermal, UOT</name><frequency>17098</frequency></term>
+<term><name>Anonym</name><frequency>16955</frequency></term>
+<term><name>Victoria. State Rivers and Water Supply Commiss</name><frequency>9949</frequency></term>
+<term><name>BODC</name><frequency>7620</frequency></term>
+<term><name>Waters, Frank</name><frequency>50</frequency></term>
+<term><name>Van de Water, Frederic Franklyn</name><frequency>31</frequency></term>
+<term><name>Eliot, George</name><frequency>31</frequency></term>
+<term><name>Waters, John Frederick</name><frequency>29</frequency></term>
+<term><name>Waters, Clara Erskine Clement</name><frequency>29</frequency></term>
+</list>
+<list name="date">
+<term><name>2006</name><frequency>145562</frequency></term>
+<term><name>2005</name><frequency>95487</frequency></term>
+<term><name>2008</name><frequency>41399</frequency></term>
+<term><name>2007</name><frequency>39680</frequency></term>
+<term><name>2004</name><frequency>34617</frequency></term>
+<term><name>1992</name><frequency>21225</frequency></term>
+<term><name>2009</name><frequency>20604</frequency></term>
+<term><name>2003</name><frequency>18037</frequency></term>
+<term><name>2002</name><frequency>5176</frequency></term>
+<term><name>2001</name><frequency>3852</frequency></term>
+<term><name>1976</name><frequency>1301</frequency></term>
+<term><name>1996</name><frequency>1279</frequency></term>
+<term><name>1971</name><frequency>1275</frequency></term>
+<term><name>1977</name><frequency>1268</frequency></term>
+<term><name>1995</name><frequency>1246</frequency></term>
+</list>
+<list name="medium">
+<term><name>other</name><frequency>513559</frequency></term>
+<term><name>book</name><frequency>51781</frequency></term>
+<term><name>electronicresource</name><frequency>26940</frequency></term>
+<term><name>electron</name><frequency>125</frequency></term>
+<term><name>web</name><frequency>46</frequency></term>
+<term><name>microform</name><frequency>2</frequency></term>
+</list>
+</termlist>
index 03c7c0d..b98d670 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
-<show>
-<status>OK</status>
+<termlist>
 <activeclients>0</activeclients>
-<merged>96</merged>
-<total>1128</total>
-<start>0</start>
-<num>20</num>
-<hit>
-
-<md-title>6502 assembly-language programming for Apple, Commodore, and Atari computers</md-title>
-<md-date>1985</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Instructs those who have already programmed in high-level languages in programming with the more powerful and versatile assembly or machine language</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>6502 assembly-language programming for Apple, Commodore, and Atari computers</md-title>
-<md-date>1985</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Cover title: 6502 assembly language</md-description>
-<md-description>Series statement from jacket</md-description>
-<md-description>Includes index</md-description>
-<md-description>Instructs those who have already programmed in high-level languages in programming with the more powerful and versatile assembly or machine language</md-description></location>
-<relevance>1020000</relevance>
-<recid>title assembly language programming for apple commodore and atari computers author lampton christopher</recid>
-</hit>
-<hit>
-
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>Cataloging based on CIP information</md-description>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Let&apos;s talk Apple Turtle</md-title>
-<md-date>1984</md-date>
-<md-author>Nevile, Liddy</md-author>
-<md-description>Cataloging based on CIP information</md-description>
-<md-description>An introduction to the LOGO computer language using hands-on activities with the Apple computer and hands-off activities which relate to other skills areas in the curriculum</md-description></location>
-<count>2</count>
-<relevance>942857</relevance>
-<recid>title let s talk apple turtle author nevile liddy</recid>
-</hit>
-<hit>
-
-<md-title>Proceedings of the 1999 International Conference on Web-Based Modeling and Simulation</md-title>
-<md-title-remainder>[held as part of] 1999 Western MultiConference, San Francisco, California, January 17-20, 1999, Cathedral Hill Hotel</md-title-remainder>
-<md-date>1999-2000</md-date>
-<md-description>Network modeling -- Civil applications -- Education and training -- Military applications -- Parallel and distributed simulation -- DEVS-based approaches -- Modeling and simulation environments -- High-level architecture -- Visualization and animation -- Real-time applications</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Proceedings of the International Conference on Web-based Modeling and Simulation</md-title>
-<md-date>2000</md-date>
-<md-description>Both conferences held as parts of the 2000 Western MultiConference, San Diego, California, January 23-27, 2000, Catamaran Resort Hotel</md-description>
-<md-description>&quot;Sponsored by the Society for Computer Simulation International&quot;--T.p</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Proceedings of the 1999 International Conference on Web-Based Modeling and Simulation</md-title>
-<md-title-remainder>[held as part of] 1999 Western MultiConference, San Francisco, California, January 17-20, 1999, Cathedral Hill Hotel</md-title-remainder>
-<md-date>1999</md-date>
-<md-description>Network modeling -- Civil applications -- Education and training -- Military applications -- Parallel and distributed simulation -- DEVS-based approaches -- Modeling and simulation environments -- High-level architecture -- Visualization and animation -- Real-time applications</md-description></location>
-<count>2</count>
-<relevance>930000</relevance>
-<recid>title proceedings of the international conference on web based modeling and simulation</recid>
-</hit>
-<hit>
-
-<md-title>Computer art and animation</md-title>
-<md-title-remainder>a user&apos;s guide to Atari logo</md-title-remainder>
-<md-date>1984</md-date>
-<md-author>Thornburg, David D</md-author>
-<md-description>Explains how to use a computer to create graphic designs and animated sequences</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Computer art and animation</md-title>
-<md-title-remainder>a user&apos;s guide to Atari logo</md-title-remainder>
-<md-date>1984</md-date>
-<md-author>Thornburg, David D</md-author>
-<md-description>Includes index</md-description>
-<md-description>Explains how to use a computer to create graphic designs and animated sequences</md-description></location>
-<relevance>923076</relevance>
-<recid>title computer art and animation author thornburg david d</recid>
-</hit>
-<hit>
-
-<md-title>Random alley adventure for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Orkin, Michael</md-author>
-<md-description>Programs written in BASIC for an Atari computer provide experience in games of chance which demonstrate the law of averages</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Random alley adventure for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Orkin, Michael</md-author>
-<md-description>&quot;A Reston Computer Group book.&quot;</md-description>
-<md-description>Programs written in BASIC for an Atari computer provide experience in games of chance which demonstrate the law of averages</md-description></location>
-<relevance>910714</relevance>
-<recid>title random alley adventure for the atari computer author orkin michael</recid>
-</hit>
-<hit>
-
-<md-title>I speak BASIC to my Atari</md-title>
-<md-title-remainder>teacher&apos;s manual</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>I speak BASIC to my Atari</md-title>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description></location>
-<location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>I speak BASIC to my Atari</md-title>
-<md-title-remainder>teacher&apos;s manual</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Jones, Aubrey B</md-author>
-<md-description>An introduction to the operation and applications of computers, with practice exercises</md-description></location>
-<count>2</count>
-<relevance>900000</relevance>
-<recid>title i speak basic to my atari author jones aubrey b</recid>
-</hit>
-<hit>
-
-<md-title>School days for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Passantino, Claire Bailey</md-author>
-<md-description>Presents twenty programs that include games, contests, riddles, songs, and other activities to use with BASIC on the Atari computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>School days for the Atari computer</md-title>
-<md-date>1984</md-date>
-<md-author>Passantino, Claire Bailey</md-author>
-<md-description>Presents twenty programs that include games, contests, riddles, songs, and other activities to use with BASIC on the Atari computer</md-description></location>
-<relevance>865000</relevance>
-<recid>title school days for the atari computer author passantino claire bailey</recid>
-</hit>
-<hit>
-
-<md-title>The Apple LOGO manual</md-title>
-<md-date>1985</md-date>
-<md-description>Instructions for doing computer graphics on an Apple computer in LOGO</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>The Apple LOGO manual</md-title>
-<md-date>1985</md-date>
-<md-description>Includes index</md-description>
-<md-description>Instructions for doing computer graphics on an Apple computer in LOGO</md-description></location>
-<relevance>804545</relevance>
-<recid>title the apple logo manual</recid>
-</hit>
-<hit>
-
-<md-title>Kid-powered Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Explains how to use the computer language LOGO to write fundamental programs and create graphics on the Apple computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Kid-powered Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description>
-<md-description>Explains how to use the computer language LOGO to write fundamental programs and create graphics on the Apple computer</md-description></location>
-<relevance>781578</relevance>
-<recid>title kid powered logo author fiday david</recid>
-</hit>
-<hit>
-
-<md-title>Basic fun with graphics, the Atari computer way</md-title>
-<md-date>1983</md-date>
-<md-author>Zuanich, Margaret Ann</md-author>
-<md-description>Instructions for graphics programming on an Atari computer using BASIC</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Basic fun with graphics, the Atari computer way</md-title>
-<md-date>1983</md-date>
-<md-author>Zuanich, Margaret Ann</md-author>
-<md-description>Instructions for graphics programming on an Atari computer using BASIC</md-description></location>
-<relevance>780000</relevance>
-<recid>title basic fun with graphics the atari computer way author zuanich margaret ann</recid>
-</hit>
-<hit>
-
-<md-title>Turtlesteps, an introduction to Apple Logo and Terrapin Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Sharp, Pamela</md-author>
-<md-description>Introduces computer graphics and beginning programming in Apple Logo and Terrapin Logo</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Turtlesteps, an introduction to Apple Logo and Terrapin Logo</md-title>
-<md-date>1984</md-date>
-<md-author>Sharp, Pamela</md-author>
-<md-description>Includes index</md-description>
-<md-description>Introduces computer graphics and beginning programming in Apple Logo and Terrapin Logo</md-description></location>
-<relevance>775000</relevance>
-<recid>title turtlesteps an introduction to apple logo and terrapin logo author sharp pamela</recid>
-</hit>
-<hit>
-
-<md-title>Graphics and animation on the Atari</md-title>
-<md-title-remainder>800, 400, 1200XL, 800XL, and 600XL</md-title-remainder>
-<md-date>1986</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Instructions for creating simple and advanced graphics using BASIC on the Atari computer. Includes suggestions for projects</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Graphics and animation on the Atari</md-title>
-<md-title-remainder>800, 400, 1200XL, 800XL, and 600XL</md-title-remainder>
-<md-date>1986</md-date>
-<md-author>Lampton, Christopher</md-author>
-<md-description>Includes index</md-description>
-<md-description>Instructions for creating simple and advanced graphics using BASIC on the Atari computer. Includes suggestions for projects</md-description></location>
-<relevance>767647</relevance>
-<recid>title graphics and animation on the atari author lampton christopher</recid>
-</hit>
-<hit>
-
-<md-title>Apple building blocks</md-title>
-<md-title-remainder>featuring Denby, the robot</md-title-remainder>
-<md-date>1985</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Explains how to write fundamental programs for the Apple computer and use it to play forty-six educational games</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Apple building blocks</md-title>
-<md-title-remainder>featuring Denby, the robot</md-title-remainder>
-<md-date>1985</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>On t.p. the circled symbol &quot;R&quot; is superscript following &quot;Apple&quot; in the title</md-description>
-<md-description>Explains how to write fundamental programs for the Apple computer and use it to play forty-six educational games</md-description></location>
-<relevance>765789</relevance>
-<recid>title apple building blocks author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Apple in wonderland</md-title>
-<md-date>1984</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>System requirements for floppy disk: Apple II with Applesoft, II+, IIe, or IIc; DOS 3.3; 1 disk drive and controller card; color TV or monitor recommended</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Apple in wonderland</md-title>
-<md-date>1984</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>System requirements for floppy disk: Apple II with Applesoft, II+, IIe, or IIc; DOS 3.3; 1 disk drive and controller card; color TV or monitor recommended</md-description>
-<md-description>Issued in plastic case</md-description>
-<md-description>Provides programs for twenty-two learning games written in BASIC for an Apple II computer. Includes a floppy disk</md-description></location>
-<relevance>765789</relevance>
-<recid>title apple in wonderland author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Atari in Wonderland</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Contains twenty-two short, simple games to use with an Atari computer on such topics as colors, sounds, multiplication, state names, spelling, fractions, and Spanish and French languages</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Atari in Wonderland</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Contains twenty-two short, simple games to use with an Atari computer on such topics as colors, sounds, multiplication, state names, spelling, fractions, and Spanish and French languages</md-description></location>
-<relevance>685714</relevance>
-<recid>title atari in wonderland author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>BASIC is child&apos;s play, Apple edition</md-title>
-<md-date>1984</md-date>
-<md-author>Grauer, Robert T</md-author>
-<md-description>Offers instructions for computer novices in programming with BASIC on an Apple personal computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>BASIC is child&apos;s play, Apple edition</md-title>
-<md-date>1984</md-date>
-<md-author>Grauer, Robert T</md-author>
-<md-description>Includes index</md-description>
-<md-description>Offers instructions for computer novices in programming with BASIC on an Apple personal computer</md-description></location>
-<relevance>642857</relevance>
-<recid>title basic is child s play apple edition author grauer robert t</recid>
-</hit>
-<hit>
-
-<md-title>The Atari playground</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Twenty-three learning games, grouped by subject, for use on an Atari computer. There are separate instructional sections for parents/teachers and for children</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>The Atari playground</md-title>
-<md-date>1983</md-date>
-<md-author>D&apos;Ignazio, Fred</md-author>
-<md-description>Twenty-three learning games, grouped by subject, for use on an Atari computer. There are separate instructional sections for parents/teachers and for children</md-description></location>
-<relevance>612500</relevance>
-<recid>title the atari playground author d ignazio fred</recid>
-</hit>
-<hit>
-
-<md-title>Computer software</md-title>
-<md-title-remainder>supplying it and finding it</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Tagg, W</md-author><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Computer software</md-title>
-<md-title-remainder>supplying it and finding it</md-title-remainder>
-<md-date>1983</md-date>
-<md-author>Tagg, W</md-author></location>
-<relevance>600000</relevance>
-<recid>title computer software author tagg w</recid>
-</hit>
-<hit>
-
-<md-title>Kid-powered graphics</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>Kid-powered graphics</md-title>
-<md-date>1984</md-date>
-<md-author>Fiday, David</md-author>
-<md-description>Includes index</md-description></location>
-<relevance>600000</relevance>
-<recid>title kid powered graphics author fiday david</recid>
-</hit>
-<hit>
-
-<md-title>BASIC on the ATARI computer for kids</md-title>
-<md-date>1984</md-date>
-<md-author>Wyner, Keith</md-author>
-<md-description>Instructions for the elementary school student in programming BASIC on an Atari computer</md-description><location id="donut:8983/solr/select" name="SOLR Test">
-<md-title>BASIC on the ATARI computer for kids</md-title>
-<md-date>1984</md-date>
-<md-author>Wyner, Keith</md-author>
-<md-description>Includes index</md-description>
-<md-description>Instructions for the elementary school student in programming BASIC on an Atari computer</md-description></location>
-<relevance>558791</relevance>
-<recid>title basic on the atari computer for kids author wyner keith</recid>
-</hit>
-</show>
+<list name="xtargets">
+</list>
+<list name="subject">
+</list>
+<list name="author">
+</list>
+<list name="date">
+</list>
+<list name="medium">
+</list>
+</termlist>
index 099b86e..d3b889f 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<bytarget><status>OK</status>
-<target><id>donut:8983/solr/select</id>
-<name>SOLR Test</name>
-<hits>1128</hits>
-<diagnostic>0</diagnostic>
-<records>100</records>
-<state>Client_Idle</state>
-</target></bytarget>
\ No newline at end of file
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>0</total>
+<start>0</start>
+<num>0</num>
+</show>
index 801e7cf..ab63fe6 100644 (file)
@@ -1,63 +1,2 @@
-<termlist>
-<activeclients>0</activeclients>
-<list name="xtargets">
-<term>
-<id>donut:8983/solr/select</id>
-<name>SOLR Test</name>
-<frequency>1128</frequency>
-<state>Client_Idle</state>
-<diagnostic>0</diagnostic>
-</term>
-</list>
-<list name="author">
-<term><name>D&apos;Ignazio, Fred</name><frequency>4</frequency></term>
-<term><name>Lampton, Christopher</name><frequency>2</frequency></term>
-<term><name>Grauer, Robert T</name><frequency>2</frequency></term>
-<term><name>Carlson, Edward H</name><frequency>2</frequency></term>
-<term><name>Groner, Gabriel F</name><frequency>2</frequency></term>
-<term><name>Jones, Aubrey B</name><frequency>2</frequency></term>
-<term><name>Boren, Sharon</name><frequency>2</frequency></term>
-<term><name>Fiday, David</name><frequency>2</frequency></term>
-<term><name>Nevile, Liddy</name><frequency>2</frequency></term>
-<term><name>Ledin, Jim</name><frequency>1</frequency></term>
-<term><name>Tagg, W</name><frequency>1</frequency></term>
-<term><name>Zaks, Rodnay</name><frequency>1</frequency></term>
-<term><name>Wyner, Keith</name><frequency>1</frequency></term>
-<term><name>Zuanich, Margaret Ann</name><frequency>1</frequency></term>
-<term><name>Salz, Fredrick R</name><frequency>1</frequency></term>
-</list>
-<list name="subject">
-<term><name>Apple computer</name><frequency>40</frequency></term>
-<term><name>BASIC (Computer program language)</name><frequency>38</frequency></term>
-<term><name>Atari computer</name><frequency>35</frequency></term>
-<term><name>Programming (Computers)</name><frequency>30</frequency></term>
-<term><name>Digital computer simulation</name><frequency>20</frequency></term>
-<term><name>Computer graphics</name><frequency>18</frequency></term>
-<term><name>LOGO (Computer program language)</name><frequency>14</frequency></term>
-<term><name>Computer games</name><frequency>14</frequency></term>
-<term><name>Debugging in computer science</name><frequency>8</frequency></term>
-<term><name>Time-sharing computer systems</name><frequency>8</frequency></term>
-<term><name>Virtual computer systems</name><frequency>8</frequency></term>
-<term><name>Interactive computer systems</name><frequency>8</frequency></term>
-<term><name>Embedded computer systems</name><frequency>7</frequency></term>
-<term><name>Computers</name><frequency>6</frequency></term>
-<term><name>Engineering</name><frequency>6</frequency></term>
-</list>
-<list name="date">
-<term><name>1984</name><frequency>23</frequency></term>
-<term><name>2000</name><frequency>18</frequency></term>
-<term><name>1983</name><frequency>9</frequency></term>
-<term><name>2001</name><frequency>7</frequency></term>
-<term><name>1999</name><frequency>6</frequency></term>
-<term><name>1985</name><frequency>6</frequency></term>
-<term><name>1986</name><frequency>4</frequency></term>
-<term><name>1970</name><frequency>4</frequency></term>
-<term><name>1966</name><frequency>2</frequency></term>
-<term><name>1964</name><frequency>2</frequency></term>
-<term><name>1973</name><frequency>2</frequency></term>
-<term><name>1971</name><frequency>1</frequency></term>
-<term><name>1987</name><frequency>1</frequency></term>
-<term><name>1960</name><frequency>1</frequency></term>
-<term><name>1959</name><frequency>1</frequency></term>
-</list>
-</termlist>
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
index 2b3989e..d3b889f 100644 (file)
@@ -1,2 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<init><status>OK</status><session>2</session><protocol>1</protocol></init>
\ No newline at end of file
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>0</total>
+<start>0</start>
+<num>0</num>
+</show>
index 42534e3..b98d670 100644 (file)
@@ -1,2 +1,13 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<settings><status>OK</status></settings>
\ No newline at end of file
+<termlist>
+<activeclients>0</activeclients>
+<list name="xtargets">
+</list>
+<list name="subject">
+</list>
+<list name="author">
+</list>
+<list name="date">
+</list>
+<list name="medium">
+</list>
+</termlist>
index ab63fe6..b98d670 100644 (file)
@@ -1,2 +1,13 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<search><status>OK</status></search>
\ No newline at end of file
+<termlist>
+<activeclients>0</activeclients>
+<list name="xtargets">
+</list>
+<list name="subject">
+</list>
+<list name="author">
+</list>
+<list name="date">
+</list>
+<list name="medium">
+</list>
+</termlist>
index 976696c..406a38d 100644 (file)
@@ -7,7 +7,6 @@
     
     <service id="sru-proxy">
       <include src="dtic-dads-sru-proxy.xml"/>
-      <targetprofiles type="local" src="../zeerex/records/"/>
       <metadata name="url" merge="unique"/>
       <metadata name="title" brief="yes" sortkey="skiparticle" merge="longest" rank="6" mergekey="required" />
       <metadata name="title-remainder" brief="yes" merge="longest" rank="5"/>
       <metadata name="subject" merge="unique" termlist="yes" rank="3"/>
       <metadata name="id"/>
       <metadata name="lccn" merge="unique"/>
-      <metadata name="description" brief="yes" merge="longest" rank="3"/>
-      
+      <metadata name="description" brief="yes" merge="longest" rank="3" />
+
+      <metadata name="journal-title" brief="yes" termlist="yes" merge="all"/>
+
       <metadata name="test-usersetting" brief="yes" setting="postproc"/>
       <metadata name="test" setting="parameter"/>
       <metadata name="test-usersetting-2" brief="yes"/>
     </service>
 
+<!--
     <include src="*_service.xml"/> 
     <include src="no_such_service.xml"/>
-
+-->
   </server>
   
   
index 0c9d239..6f8276e 100644 (file)
@@ -1,4 +1,17 @@
-http://localhost:9763/search.pz2?command=init&clear=1&service=sru-proxy
-http://localhost:9763/search.pz2?session=1&command=settings&pz:sru%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=get&pz%3Aname%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=sru-proxy&pz%3Axslt%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=dads-pz2.xsl&pz%3Aqueryencoding%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=UTF-8&pz%3Aapdulog%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=1&pz%3Asru_version%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=1.1&pz%3Aextra_args%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=%26x-facet_def%3Ddtic_test%26x-noxsl%3D1&pz:query_syntax%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=pqf
+http://localhost:9763/search.pz2?command=init&service=sru-proxy
 http://localhost:9763/search.pz2?session=1&command=search&query=water
 4 http://localhost:9763/search.pz2?session=1&command=show&block=1
+http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Cauthor%2Csubject%2Cmedium%2Cjournal-title
+http://localhost:9763/search.pz2?session=1&command=search&query=water%20and%20su%3D%22Research%22
+4 http://localhost:9763/search.pz2?session=1&command=show&block=1
+http://localhost:9763/search.pz2?session=1&command=settings&pz:sru%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=get&pz%3Aname%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=sru-proxy&pz%3Axslt%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=dads-pz2.xsl&pz%3Aqueryencoding%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=UTF-8&pz%3Aapdulog%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=1&pz%3Asru_version%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=1.1&pz:query_syntax%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=pqf&pz%3Aextra_args%5Bkb.dadsthirdnode.cvt.dk%2Fsru-proxy%5D=%26x-facet_def%3Ddtic_test%26x-noxsl%3D1
+http://localhost:9763/search.pz2?session=1&command=search&query=water
+4 http://localhost:9763/search.pz2?session=1&command=show&block=1
+http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Cauthor%2Csubject%%2Cmedium%2Cjournal-title
+http://localhost:9763/search.pz2?session=1&command=search&query=water%20and%20jt%3D%22Forbes%22
+4 http://localhost:9763/search.pz2?session=1&command=show&block=1
+http://localhost:9763/search.pz2?session=1&command=search&query=water%20and%20au%3D%22Janmaat,%20Johannus%22
+4 http://localhost:9763/search.pz2?session=1&command=show&block=1
+http://localhost:9763/search.pz2?session=1&command=termlist&name=xtargets%2Cauthor%2Csubject%2Cmedium%2Cjournal-title
+http://localhost:9763/search.pz2?session=1&command=search&query=water%20and%20su%3D%22Research%22
+4 http://localhost:9763/search.pz2?session=1&command=show&block=1
diff --git a/test/test_sru-proxy_10.res b/test/test_sru-proxy_10.res
new file mode 100644 (file)
index 0000000..ab0bdca
--- /dev/null
@@ -0,0 +1,65 @@
+<termlist>
+<activeclients>0</activeclients>
+<list name="xtargets">
+<term>
+<id>kb.dadsthirdnode.cvt.dk/sru-proxy</id>
+<name>sru-proxy</name>
+<frequency>2073000</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+</list>
+<list name="author">
+<term><name>Janmaat, Johannus</name><frequency>2</frequency></term>
+<term><name>J. N. C</name><frequency>2</frequency></term>
+<term><name>S. R</name><frequency>2</frequency></term>
+<term><name>M©♭l©♭der, Vona</name><frequency>1</frequency></term>
+<term><name>Guillaumont, Brigitte</name><frequency>1</frequency></term>
+<term><name>Perrot, Thierry</name><frequency>1</frequency></term>
+<term><name>Mouquet, Pascal</name><frequency>1</frequency></term>
+<term><name>Bickel, Samantha L</name><frequency>1</frequency></term>
+<term><name>Tang, Kam W</name><frequency>1</frequency></term>
+<term><name>WESTERVELT, ROBERT</name><frequency>1</frequency></term>
+<term><name>O&apos;NEILL, MOLLY</name><frequency>1</frequency></term>
+<term><name>C. H</name><frequency>1</frequency></term>
+<term><name>CLARK, CHARLES S</name><frequency>1</frequency></term>
+<term><name>SCHMIDT, CHARLES</name><frequency>1</frequency></term>
+<term><name>ERICKSON, BRITT</name><frequency>1</frequency></term>
+</list>
+<list name="subject">
+<term><name>Research</name><frequency>3</frequency></term>
+<term><name>DRINKING water</name><frequency>2</frequency></term>
+<term><name>United States</name><frequency>2</frequency></term>
+<term><name>CHEMISTRY</name><frequency>1</frequency></term>
+<term><name>Experiments</name><frequency>1</frequency></term>
+<term><name>Arsenic content</name><frequency>1</frequency></term>
+<term><name>PETROLEUM industry &amp; trade</name><frequency>1</frequency></term>
+<term><name>NEWS briefs, World</name><frequency>1</frequency></term>
+<term><name>UNITED States. Environmental Protection Agency</name><frequency>1</frequency></term>
+<term><name>METHANE</name><frequency>1</frequency></term>
+<term><name>AMOEBA</name><frequency>1</frequency></term>
+<term><name>CHEMICAL reactors</name><frequency>1</frequency></term>
+<term><name>FACTORIES</name><frequency>1</frequency></term>
+<term><name>JACKSON, Lisa P</name><frequency>1</frequency></term>
+<term><name>MEMBRANES (Biology)</name><frequency>1</frequency></term>
+</list>
+<list name="Cmedium">
+</list>
+<list name="journal-title">
+<term><name>Chemical and Engineering News</name><frequency>16</frequency></term>
+<term><name>Pollution Engineering</name><frequency>6</frequency></term>
+<term><name>Marine Biology</name><frequency>3</frequency></term>
+<term><name>Forbes</name><frequency>3</frequency></term>
+<term><name>Land Economics</name><frequency>3</frequency></term>
+<term><name>Government Executive</name><frequency>2</frequency></term>
+<term><name>Journal of Financial and Quantitative Analysis</name><frequency>2</frequency></term>
+<term><name>American Economic Review</name><frequency>2</frequency></term>
+<term><name>Petroleum Economist - English Edition</name><frequency>2</frequency></term>
+<term><name>Money - Easton</name><frequency>1</frequency></term>
+<term><name>Chemical Week</name><frequency>1</frequency></term>
+<term><name>Interfaces</name><frequency>1</frequency></term>
+<term><name>Interfaces - Baltimore</name><frequency>1</frequency></term>
+<term><name>Vital Speeches of the Day</name><frequency>1</frequency></term>
+<term><name>Marketing (00253650)</name><frequency>1</frequency></term>
+</list>
+</termlist>
diff --git a/test/test_sru-proxy_11.res b/test/test_sru-proxy_11.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_sru-proxy_12.res b/test/test_sru-proxy_12.res
new file mode 100644 (file)
index 0000000..d3b889f
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>0</total>
+<start>0</start>
+<num>0</num>
+</show>
diff --git a/test/test_sru-proxy_13.res b/test/test_sru-proxy_13.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_sru-proxy_14.res b/test/test_sru-proxy_14.res
new file mode 100644 (file)
index 0000000..a801837
--- /dev/null
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>2</merged>
+<total>3</total>
+<start>0</start>
+<num>2</num>
+<hit>
+
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title>
+<md-journal-title>Land Economics</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title></location>
+<location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-journal-title>Land Economics</md-journal-title></location>
+<count>2</count>
+<relevance>745671</relevance>
+<recid>title water markets licenses and conservation some implications author janmaat johannus</recid>
+</hit>
+<hit>
+
+<md-title>PARRYING WATER CONFLICTS IN THE OKANAGAN: The Potential of a Water Market</md-title>
+<md-author>JANMAAT, JOHANNUS ANTHONIUS</md-author>
+<md-journal-title>BC Studies</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>PARRYING WATER CONFLICTS IN THE OKANAGAN: The Potential of a Water Market</md-title>
+<md-author>JANMAAT, JOHANNUS ANTHONIUS</md-author>
+<md-journal-title>BC Studies</md-journal-title></location>
+<relevance>233332</relevance>
+<recid>title parrying water conflicts in the okanagan the potential of a water market author janmaat johannus anthonius</recid>
+</hit>
+</show>
diff --git a/test/test_sru-proxy_15.res b/test/test_sru-proxy_15.res
new file mode 100644 (file)
index 0000000..977384f
--- /dev/null
@@ -0,0 +1,26 @@
+<termlist>
+<activeclients>0</activeclients>
+<list name="xtargets">
+<term>
+<id>kb.dadsthirdnode.cvt.dk/sru-proxy</id>
+<name>sru-proxy</name>
+<frequency>3</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+</list>
+<list name="author">
+<term><name>Janmaat, Johannus</name><frequency>2</frequency></term>
+<term><name>JANMAAT, JOHANNUS ANTHONIUS</name><frequency>1</frequency></term>
+</list>
+<list name="subject">
+<term><name>WATER use</name><frequency>1</frequency></term>
+<term><name>Research</name><frequency>1</frequency></term>
+</list>
+<list name="medium">
+</list>
+<list name="journal-title">
+<term><name>Land Economics</name><frequency>2</frequency></term>
+<term><name>BC Studies</name><frequency>1</frequency></term>
+</list>
+</termlist>
diff --git a/test/test_sru-proxy_16.res b/test/test_sru-proxy_16.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_sru-proxy_17.res b/test/test_sru-proxy_17.res
new file mode 100644 (file)
index 0000000..d3b889f
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>0</total>
+<start>0</start>
+<num>0</num>
+</show>
index 42534e3..ab63fe6 100644 (file)
@@ -1,2 +1,2 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<settings><status>OK</status></settings>
\ No newline at end of file
+<search><status>OK</status></search>
\ No newline at end of file
index ab63fe6..b39dc01 100644 (file)
@@ -1,2 +1,242 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<search><status>OK</status></search>
\ No newline at end of file
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>49</merged>
+<total>2073000</total>
+<start>0</start>
+<num>20</num>
+<hit>
+
+<md-title>Water, Water Everywhere</md-title>
+<md-description>The article focuses on The Global Chemistry Experiment for the International Year of Chemistry (IYC) 2011, which is a set of experiments based on the attraction of water for young people and its chemical properties. Water: A Chemical Solution involves a set of four simple experiments aimed at encouraging students around the world to learn how chemistry contributes to water. Information on the experiments can be obtained from the IYC 2011 Web site</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Water, Water Everywhere</md-title>
+<md-description>The article focuses on The Global Chemistry Experiment for the International Year of Chemistry (IYC) 2011, which is a set of experiments based on the attraction of water for young people and its chemical properties. Water: A Chemical Solution involves a set of four simple experiments aimed at encouraging students around the world to learn how chemistry contributes to water. Information on the experiments can be obtained from the IYC 2011 Web site</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>16846</relevance>
+<recid>title water water everywhere</recid>
+</hit>
+<hit>
+
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title>
+<md-journal-title>Land Economics</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title></location>
+<location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-journal-title>Land Economics</md-journal-title></location>
+<count>2</count>
+<relevance>14111</relevance>
+<recid>title water markets licenses and conservation some implications author janmaat johannus</recid>
+</hit>
+<hit>
+
+<md-title>Newscripts</md-title>
+<md-description>The article offers information on two water products, dehydrated water, available from the Amazon.com Web site, and the HydroPack, a water-filter pouch from Hydration Technology Innovations</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Newscripts</md-title>
+<md-description>The article offers information on two water products, dehydrated water, available from the Amazon.com Web site, and the HydroPack, a water-filter pouch from Hydration Technology Innovations</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>7435</relevance>
+<recid>title newscripts</recid>
+</hit>
+<hit>
+
+<md-title>Epigenetic clues to arsenic toxicity</md-title>
+<md-author>S. R</md-author>
+<md-description>The article reports on a study which determined the association between long-term exposure to low levels of arsenic in drinking water and an increased incidence of heart disease, diabetes and cancer, according to toxicologists led by Rebecca C. Fry of the University of North Carolina in Chapel Hill</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Epigenetic clues to arsenic toxicity</md-title>
+<md-author>S. R</md-author>
+<md-description>The article reports on a study which determined the association between long-term exposure to low levels of arsenic in drinking water and an increased incidence of heart disease, diabetes and cancer, according to toxicologists led by Rebecca C. Fry of the University of North Carolina in Chapel Hill</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>6373</relevance>
+<recid>title epigenetic clues to arsenic toxicity author s r</recid>
+</hit>
+<hit>
+
+<md-title>Deep-water discoveries total 93</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Deep-water discoveries total 93</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title></location>
+<relevance>6123</relevance>
+<recid>title deep water discoveries total</recid>
+</hit>
+<hit>
+
+<md-title>Pemex tests the water</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Pemex tests the water</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title></location>
+<relevance>6123</relevance>
+<recid>title pemex tests the water</recid>
+</hit>
+<hit>
+
+<md-title>Amoebas in drinking water worldwide</md-title>
+<md-author>J. N. C</md-author>
+<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Amoebas in drinking water worldwide</md-title>
+<md-author>J. N. C</md-author>
+<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>5715</relevance>
+<recid>title amoebas in drinking water worldwide author j n c</recid>
+</hit>
+<hit>
+
+<md-title>Hexavalent Chromium in Drinking Water</md-title>
+<md-description>The article reports on the meeting by U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson with 10 U.S. senators in December, 2010 regarding the agency&apos;s risk assessment operations for chromium-6 or hexchrome in drinking water</md-description>
+<md-journal-title>Pollution Engineering</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Hexavalent Chromium in Drinking Water</md-title>
+<md-description>The article reports on the meeting by U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson with 10 U.S. senators in December, 2010 regarding the agency&apos;s risk assessment operations for chromium-6 or hexchrome in drinking water</md-description>
+<md-journal-title>Pollution Engineering</md-journal-title></location>
+<relevance>5229</relevance>
+<recid>title hexavalent chromium in drinking water</recid>
+</hit>
+<hit>
+
+<md-title>Epa addresses chromium(vi) in drinking water</md-title>
+<md-author>B. E. E</md-author>
+<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Epa addresses chromium(vi) in drinking water</md-title>
+<md-author>B. E. E</md-author>
+<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>4143</relevance>
+<recid>title epa addresses chromium vi in drinking water author b e e</recid>
+</hit>
+<hit>
+
+<md-title>Breaking the Deadlock: Improving Water-Release Policies on the Delaware River Through Operations Research</md-title>
+<md-author>Kolesar, Peter</md-author>
+<md-journal-title>Interfaces - Baltimore</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Breaking the Deadlock: Improving Water-Release Policies on the Delaware River Through Operations Research</md-title>
+<md-author>Kolesar, Peter</md-author>
+<md-author>Serio, James</md-author>
+<md-journal-title>Interfaces - Baltimore</md-journal-title></location>
+<relevance>1749</relevance>
+<recid>title breaking the deadlock improving water release policies on the delaware river through operations research author kolesar peter author serio james</recid>
+</hit>
+<hit>
+
+<md-title>Message in Our Bottles</md-title>
+<md-description>The article reviews &quot;Bottled and Sold: The Story Behind Our Obsession With Bottled Water,&quot; by Peter H. Gleick, edited by Rick Docksai</md-description>
+<md-journal-title>Futurist</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Message in Our Bottles</md-title>
+<md-description>The article reviews &quot;Bottled and Sold: The Story Behind Our Obsession With Bottled Water,&quot; by Peter H. Gleick, edited by Rick Docksai</md-description>
+<md-journal-title>Futurist</md-journal-title></location>
+<relevance>1670</relevance>
+<recid>title message in our bottles</recid>
+</hit>
+<hit>
+
+<md-title>DISASTER-PROOF YOUR HOME - VALUE ADDED - Smart ways to prevent wind, water, and ice damage</md-title>
+<md-author>Garskof, Josh</md-author>
+<md-journal-title>Money - Easton</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>DISASTER-PROOF YOUR HOME - VALUE ADDED - Smart ways to prevent wind, water, and ice damage</md-title>
+<md-author>Garskof, Josh</md-author>
+<md-journal-title>Money - Easton</md-journal-title></location>
+<relevance>1632</relevance>
+<recid>title disaster proof your home value added smart ways to prevent wind water and ice damage author garskof josh</recid>
+</hit>
+<hit>
+
+<md-title>EPA REVERSAL ON PERCHLORATE - Agency will now set drinking water limits for the rocket-fuel ingredient</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>EPA REVERSAL ON PERCHLORATE - Agency will now set drinking water limits for the rocket-fuel ingredient</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>1530</relevance>
+<recid>title epa reversal on perchlorate agency will now set drinking water limits for the rocket fuel ingredient</recid>
+</hit>
+<hit>
+
+<md-title>All dried up?</md-title>
+<md-author>VanderMey, Anne</md-author>
+<md-description>The article presents statistics related to Lake Mead in light of water shortages, including the water capacity of a new water intake tunnel to bring water to Las Vegas, Nevada in gallons, the number of people who rely on Lake Mead for water, and the number of feet the water level has dropped in eleven years</md-description>
+<md-journal-title>Fortune</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>All dried up?</md-title>
+<md-author>VanderMey, Anne</md-author>
+<md-description>The article presents statistics related to Lake Mead in light of water shortages, including the water capacity of a new water intake tunnel to bring water to Las Vegas, Nevada in gallons, the number of people who rely on Lake Mead for water, and the number of feet the water level has dropped in eleven years</md-description>
+<md-journal-title>Fortune</md-journal-title></location>
+<relevance>1312</relevance>
+<recid>title all dried up author vandermey anne</recid>
+</hit>
+<hit>
+
+<md-title>COREXIT LINGERS IN DEEP WATER - Key ingredient of oil dispersant injected near gushing BP wellhead persists in Gulf waters</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>COREXIT LINGERS IN DEEP WATER - Key ingredient of oil dispersant injected near gushing BP wellhead persists in Gulf waters</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>1289</relevance>
+<recid>title corexit lingers in deep water key ingredient of oil dispersant injected near gushing bp wellhead persists in gulf waters</recid>
+</hit>
+<hit>
+
+<md-title>PRIVATE EYE - Caribiana can craft only 12 custom skiffs a year, every one of them a heavy-water-shredding knockout</md-title>
+<md-author>Abel, Ann</md-author>
+<md-journal-title>Forbes</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>PRIVATE EYE - Caribiana can craft only 12 custom skiffs a year, every one of them a heavy-water-shredding knockout</md-title>
+<md-author>Abel, Ann</md-author>
+<md-journal-title>Forbes</md-journal-title></location>
+<relevance>1289</relevance>
+<recid>title private eye caribiana can craft only custom skiffs a year every one of them a heavy water shredding knockout author abel ann</recid>
+</hit>
+<hit>
+
+<md-title>Controlling Pump Costs - The largest energy cost at water and wastewater plants is the cost of operating pumps. There are ways to manage such costs and provide many benefits</md-title>
+<md-journal-title>Pollution Engineering</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Controlling Pump Costs - The largest energy cost at water and wastewater plants is the cost of operating pumps. There are ways to manage such costs and provide many benefits</md-title>
+<md-journal-title>Pollution Engineering</md-journal-title></location>
+<relevance>844</relevance>
+<recid>title controlling pump costs the largest energy cost at water and wastewater plants is the cost of operating pumps there are ways to manage such costs and provide many benefits</recid>
+</hit>
+<hit>
+
+<md-title>Some Unsettled Problems of Irrigation</md-title>
+<md-author>Coman, Katharine</md-author>
+<md-description>The lead article in the inaugural issue of the AER examines the common property resource problem as applied to water in the Western United States</md-description>
+<md-journal-title>American Economic Review</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Some Unsettled Problems of Irrigation</md-title>
+<md-author>Coman, Katharine</md-author>
+<md-description>The lead article in the inaugural issue of the AER examines the common property resource problem as applied to water in the Western United States</md-description>
+<md-journal-title>American Economic Review</md-journal-title></location>
+<relevance>489</relevance>
+<recid>title some unsettled problems of irrigation author coman katharine</recid>
+</hit>
+<hit>
+
+<md-title>Institutional Path Dependence in Climate Adaptation: Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation&apos;&apos;</md-title>
+<md-author>Libecap, Gary D</md-author>
+<md-description>Katharine Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation,&apos;&apos; published in March 1911 in the first issue of the American Economic Review, addressed issues of water supply, rights, and organization. These same issues have relevance today, in the face of growing concern about the availability of fresh water worldwide. The central point of this article is that appropriative water rights and irrigation districts that emerged in the American West in the late nineteenth and early twentieth centuries in response to aridity to facilitate agricultural water delivery, use, and trade raise the transaction costs today of water markets. These markets are vital for smooth reallocation of water to higher-valued uses elsewhere in the economy and for flexible response to greater hydrological uncertainty. This institutional path dependence illustrates how past arrangements to meet conditions of the time constrain contemporary economic opportunities. They cannot be easily significantly modified or replaced ex post. (JEL N51, Q15, Q25, Q54)</md-description>
+<md-journal-title>American Economic Review</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Institutional Path Dependence in Climate Adaptation: Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation&apos;&apos;</md-title>
+<md-author>Libecap, Gary D</md-author>
+<md-description>Katharine Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation,&apos;&apos; published in March 1911 in the first issue of the American Economic Review, addressed issues of water supply, rights, and organization. These same issues have relevance today, in the face of growing concern about the availability of fresh water worldwide. The central point of this article is that appropriative water rights and irrigation districts that emerged in the American West in the late nineteenth and early twentieth centuries in response to aridity to facilitate agricultural water delivery, use, and trade raise the transaction costs today of water markets. These markets are vital for smooth reallocation of water to higher-valued uses elsewhere in the economy and for flexible response to greater hydrological uncertainty. This institutional path dependence illustrates how past arrangements to meet conditions of the time constrain contemporary economic opportunities. They cannot be easily significantly modified or replaced ex post. (JEL N51, Q15, Q25, Q54)</md-description>
+<md-journal-title>American Economic Review</md-journal-title></location>
+<relevance>480</relevance>
+<recid>title institutional path dependence in climate adaptation coman s some unsettled problems of irrigation author libecap gary d</recid>
+</hit>
+<hit>
+
+<md-title>Solar fuel, with high efficiency</md-title>
+<md-author>BORMAN, STU</md-author>
+<md-description>The article describes the thermo-chemical reactor developed by solar technology specialist Aldo Steinfeld of ETH which utilizes sunlight for the conversion of carbon dioxide and water into hydrocarbon-fuel precursors at a relatively high efficiency</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="DADS SRU-proxy">
+<md-title>Solar fuel, with high efficiency</md-title>
+<md-author>BORMAN, STU</md-author>
+<md-description>The article describes the thermo-chemical reactor developed by solar technology specialist Aldo Steinfeld of ETH which utilizes sunlight for the conversion of carbon dioxide and water into hydrocarbon-fuel precursors at a relatively high efficiency</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>340</relevance>
+<recid>title solar fuel with high efficiency author borman stu</recid>
+</hit>
+</show>
index 2869f2a..e90d91a 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>
-<show>
-<status>OK</status>
+<termlist>
 <activeclients>0</activeclients>
-<merged>100</merged>
-<total>2069000</total>
-<start>0</start>
-<num>20</num>
-<hit>
-
-<md-title>Any old iron?</md-title>
-<md-description>The article examines research on water pollution control. The use of ferrates, which are iron-oxygen compounds which include non-transition metals, to remove pollutants from water is discussed. The high reactivity of ferrates make them both oxidizing agents and coagulants of other chemicals in water. The company Ferrate Treatment Technologies, which creates ferrates at the site of pollution control projects since they are highly unstable, is discussed</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Any old iron?</md-title>
-<md-description>The article examines research on water pollution control. The use of ferrates, which are iron-oxygen compounds which include non-transition metals, to remove pollutants from water is discussed. The high reactivity of ferrates make them both oxidizing agents and coagulants of other chemicals in water. The company Ferrate Treatment Technologies, which creates ferrates at the site of pollution control projects since they are highly unstable, is discussed</md-description></location>
-<relevance>313235</relevance>
-<recid>title any old iron</recid>
-</hit>
-<hit>
-
-<md-title>EPA Outlines Aggressive Plan To Restore Chesapeake Bay</md-title>
-<md-author>Hunter, Pam</md-author>
-<md-description>The article deals with the Chesapeake Bay Total Maximum Daily Load (TMDL) launched by the U.S. Environmental Protection Agency (EPA) on December 29, 2010. TDML implements a legal framework to make sure that six states and the District of Columbia comply with the requirement set to restore the Chesapeake Bay between Maryland and Virginia by 2025. Furthermore, TDML requires a 25 percent nitrogen reduction, 24 percent phosphorus reduction and 20 percent sediment reduction. EPA intends to oversee every one of the jurisdictions&apos; programs</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>EPA Outlines Aggressive Plan To Restore Chesapeake Bay</md-title>
-<md-author>Hunter, Pam</md-author>
-<md-description>The article deals with the Chesapeake Bay Total Maximum Daily Load (TMDL) launched by the U.S. Environmental Protection Agency (EPA) on December 29, 2010. TDML implements a legal framework to make sure that six states and the District of Columbia comply with the requirement set to restore the Chesapeake Bay between Maryland and Virginia by 2025. Furthermore, TDML requires a 25 percent nitrogen reduction, 24 percent phosphorus reduction and 20 percent sediment reduction. EPA intends to oversee every one of the jurisdictions&apos; programs</md-description></location>
-<relevance>300000</relevance>
-<recid>title epa outlines aggressive plan to restore chesapeake bay author hunter pam</recid>
-</hit>
-<hit>
-
-<md-title>Biscuit factory in hot water</md-title>
-<md-description>The article offers information on the new Spirax Sarco EasiHeat engineered system from Fox&apos;s factory that uses a steam-to-hot water plate heat exchanger to provide domestic hot water on demand</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Biscuit factory in hot water</md-title>
-<md-description>The article offers information on the new Spirax Sarco EasiHeat engineered system from Fox&apos;s factory that uses a steam-to-hot water plate heat exchanger to provide domestic hot water on demand</md-description></location>
-<relevance>288181</relevance>
-<recid>title biscuit factory in hot water</recid>
-</hit>
-<hit>
-
-<md-title>Bottled water recycling rates on the rise</md-title>
-<md-description>The article focuses on the increase of recycling rates for bottled water in the U.S</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Bottled water recycling rates on the rise</md-title>
-<md-description>The article focuses on the increase of recycling rates for bottled water in the U.S</md-description></location>
-<relevance>204464</relevance>
-<recid>title bottled water recycling rates on the rise</recid>
-</hit>
-<hit>
-
-<md-title>Water-cooler monitor</md-title>
-<md-description>The article offers information on the segments of the television program &quot;The Talk.&quot;</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Water-cooler monitor</md-title>
-<md-description>The article offers information on the segments of the television program &quot;The Talk.&quot;</md-description></location>
-<relevance>200000</relevance>
-<recid>title water cooler monitor</recid>
-</hit>
-<hit>
-
-<md-title>Every drop counts</md-title>
-<md-description>The article discusses the importance of water as a significant component for the paper making industry. It says that the focus of the industry is on the comprehensive and intelligent water management solutions because of the rising cost of energy and strict legislation on the environment. It says that the water utilized by paper mills undergo numerous individual process and steps in which water quantity matters</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Every drop counts</md-title>
-<md-description>The article discusses the importance of water as a significant component for the paper making industry. It says that the focus of the industry is on the comprehensive and intelligent water management solutions because of the rising cost of energy and strict legislation on the environment. It says that the water utilized by paper mills undergo numerous individual process and steps in which water quantity matters</md-description></location>
-<relevance>168181</relevance>
-<recid>title every drop counts</recid>
-</hit>
-<hit>
-
-<md-title>Graywater Recycling Turns Runoff Into Green Solution</md-title>
-<md-author>Penny, Janelle</md-author>
-<md-description>The article discusses how the emerging trend of graywater recycling could help cut costs and conserve water. According to Jason Rector, owner of AquaPro, reusing graywater could significantly reduce water consumption for buildings since estimates indicate that 40% to 60% of water in buildings is flushwed down the toilet. Simple graywater systems involve the collection of water from one bathroom sink, filtering it and redirecting it into the tank of another toilet</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Graywater Recycling Turns Runoff Into Green Solution</md-title>
-<md-author>Penny, Janelle</md-author>
-<md-description>The article discusses how the emerging trend of graywater recycling could help cut costs and conserve water. According to Jason Rector, owner of AquaPro, reusing graywater could significantly reduce water consumption for buildings since estimates indicate that 40% to 60% of water in buildings is flushwed down the toilet. Simple graywater systems involve the collection of water from one bathroom sink, filtering it and redirecting it into the tank of another toilet</md-description></location>
-<relevance>167142</relevance>
-<recid>title graywater recycling turns runoff into green solution author penny janelle</recid>
-</hit>
-<hit>
-
-<md-title>Lead in Fixtures May Go Undetected</md-title>
-<md-description>The article focuses on a study, which showed that high levels of lead can leach from some brass devices in plumbing systems into drinking water</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Lead in Fixtures May Go Undetected</md-title>
-<md-description>The article focuses on a study, which showed that high levels of lead can leach from some brass devices in plumbing systems into drinking water</md-description></location>
-<relevance>162000</relevance>
-<recid>title lead in fixtures may go undetected</recid>
-</hit>
-<hit>
-
-<md-title>The drying of the West</md-title>
-<md-description>The article discusses diminishing water supplies in the U.S. Southwest. Drought conditions have reduced Lake Mead to just 40% capacity, and scientists believe global warming will reduce flows on the Colorado River, which feeds Lake Mead, by as much as 30%. Increasing demands on the Colorado by farmers, ranchers, and cities are also taxing Lake Mead</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>The drying of the West</md-title>
-<md-description>The article discusses diminishing water supplies in the U.S. Southwest. Drought conditions have reduced Lake Mead to just 40% capacity, and scientists believe global warming will reduce flows on the Colorado River, which feeds Lake Mead, by as much as 30%. Increasing demands on the Colorado by farmers, ranchers, and cities are also taxing Lake Mead</md-description></location>
-<relevance>155454</relevance>
-<recid>title the drying of the west</recid>
-</hit>
-<hit>
-
-<md-title>A negotiated solution for the Jordan Basin</md-title>
-<md-author>Chóliz, J. S</md-author>
-<md-description>The use of water in the Jordan Basin has been a key factor in the conflict between Israel and the Palestinians, and among Israel and its neighbours. In this paper, we explore possible ways of sharing water through a negotiation game with two players-Arabs and Israelis. We estimate a set of optimum Pareto allocations, as well as identifying a range of negotiated solutions. Our results suggest that viable solutions would improve incomes by some 20% compared to the current status quo. These solutions are close to the long-standing proposal contained in the Johnston Plan. Meanwhile, theoretical fairness criteria, which are more favourable to the Arabs than the Johnston Plan, maybe are not actually better in technical terms and could in any case only be achieved if the Arabs&apos; negotiating position were much stronger than the Israelis&apos;</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>A negotiated solution for the Jordan Basin</md-title>
-<md-author>Atwi, M</md-author>
-<md-author>Chóliz, J. S</md-author>
-<md-description>The use of water in the Jordan Basin has been a key factor in the conflict between Israel and the Palestinians, and among Israel and its neighbours. In this paper, we explore possible ways of sharing water through a negotiation game with two players-Arabs and Israelis. We estimate a set of optimum Pareto allocations, as well as identifying a range of negotiated solutions. Our results suggest that viable solutions would improve incomes by some 20% compared to the current status quo. These solutions are close to the long-standing proposal contained in the Johnston Plan. Meanwhile, theoretical fairness criteria, which are more favourable to the Arabs than the Johnston Plan, maybe are not actually better in technical terms and could in any case only be achieved if the Arabs&apos; negotiating position were much stronger than the Israelis&apos;</md-description></location>
-<relevance>154379</relevance>
-<recid>title a negotiated solution for the jordan basin author atwi m author ch liz j s</recid>
-</hit>
-<hit>
-
-<md-title>Deep-water discoveries total 93</md-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Deep-water discoveries total 93</md-title></location>
-<relevance>150000</relevance>
-<recid>title deep water discoveries total</recid>
-</hit>
-<hit>
-
-<md-title>Pemex tests the water</md-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Pemex tests the water</md-title></location>
-<relevance>150000</relevance>
-<recid>title pemex tests the water</recid>
-</hit>
-<hit>
-
-<md-title>Amoebas in drinking water worldwide</md-title>
-<md-author>J. N. C</md-author>
-<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Amoebas in drinking water worldwide</md-title>
-<md-author>J. N. C</md-author>
-<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description></location>
-<relevance>140000</relevance>
-<recid>title amoebas in drinking water worldwide author j n c</recid>
-</hit>
-<hit>
-
-<md-title>Beyond the water&apos;s edge</md-title>
-<md-description>In this article the author comments on the conduct of U.S. foreign policy by the administration of president Barack Obama. The central focus of the article is on the the Republican Party and its actions regarding foreign policy. A number of topics are addressed including Republican interest in defense spending, the Republican presidential candidates for 2012, and the reduction of U.S. troops in Afghanistan</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Beyond the water&apos;s edge</md-title>
-<md-description>In this article the author comments on the conduct of U.S. foreign policy by the administration of president Barack Obama. The central focus of the article is on the the Republican Party and its actions regarding foreign policy. A number of topics are addressed including Republican interest in defense spending, the Republican presidential candidates for 2012, and the reduction of U.S. troops in Afghanistan</md-description></location>
-<relevance>120000</relevance>
-<recid>title beyond the water s edge</recid>
-</hit>
-<hit>
-
-<md-title>Smoke in the (Tariff) Water</md-title>
-<md-author>Nicita, Alessandro</md-author>
-<md-description>As the economic crisis deepened and widened, fears of a return to the protectionist spiral of the 1930s become more common. However, an important difference between the 1930s and today is the existence of the World Trade Organization and the legal limits it imposes on the protectionist responses members can pursue. The first objective of this paper is to assess the extent to which applied tariffs can be legally raised without violating bound tariff obligations and compare it with what is economically feasible. The second objective is the examination of whether individual countries have taken advantage of these legal tariff hikes as protectionist responses during economic crises, after the creation of the WTO. Results suggest that the policy space left when looking at what is economically possible is indeed quite large. However, in the recent past little of the available policy space has been used by countries suffering from an economic crisis</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Smoke in the (Tariff) Water</md-title>
-<md-author>Foletti, Liliana</md-author>
-<md-author>Fugazza, Marco</md-author>
-<md-author>Nicita, Alessandro</md-author>
-<md-author>Olarreaga, Marcelo</md-author>
-<md-description>As the economic crisis deepened and widened, fears of a return to the protectionist spiral of the 1930s become more common. However, an important difference between the 1930s and today is the existence of the World Trade Organization and the legal limits it imposes on the protectionist responses members can pursue. The first objective of this paper is to assess the extent to which applied tariffs can be legally raised without violating bound tariff obligations and compare it with what is economically feasible. The second objective is the examination of whether individual countries have taken advantage of these legal tariff hikes as protectionist responses during economic crises, after the creation of the WTO. Results suggest that the policy space left when looking at what is economically possible is indeed quite large. However, in the recent past little of the available policy space has been used by countries suffering from an economic crisis</md-description></location>
-<relevance>120000</relevance>
-<recid>title smoke in the tariff water author foletti liliana author fugazza marco author nicita alessandro author olarreaga marcelo</recid>
-</hit>
-<hit>
-
-<md-title>The world&apos;s water-coolers</md-title>
-<md-description>The article focuses on international conferences and congress of rich people and other influential people. The Davos Economic Forum, held annually in Davos, Switzerland is used as an example of such congresses, as is the Bildersberg Group, an annual conference whose proceedings are confidential. It is noted that several participants in such conferences believe they fail in their stated object of improving global governance and management of international economic relations</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>The world&apos;s water-coolers</md-title>
-<md-description>The article focuses on international conferences and congress of rich people and other influential people. The Davos Economic Forum, held annually in Davos, Switzerland is used as an example of such congresses, as is the Bildersberg Group, an annual conference whose proceedings are confidential. It is noted that several participants in such conferences believe they fail in their stated object of improving global governance and management of international economic relations</md-description></location>
-<relevance>120000</relevance>
-<recid>title the world s water coolers</recid>
-</hit>
-<hit>
-
-<md-title>Water purification : Any old iron?</md-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Water purification : Any old iron?</md-title></location>
-<relevance>120000</relevance>
-<recid>title water purification any old iron</recid>
-</hit>
-<hit>
-
-<md-title>New York&apos;s Ultraviolet Titan</md-title>
-<md-author>Bergeron, Angelle</md-author>
-<md-description>The article reports on the Catskill/Delaware Ultraviolet Disinfection Facility in New York City, the largest ultraviolet (UV) water disinfectant plant in the world. The facility will treat water from the Cat/Del watershed to meet federal Environmental Protection Agency surface-water-treatment rule requirements. Companies involved in the project include L.J. Coppola Inc., Welsbach Electric Corp. and SEW</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>New York&apos;s Ultraviolet Titan</md-title>
-<md-author>Bergeron, Angelle</md-author>
-<md-description>The article reports on the Catskill/Delaware Ultraviolet Disinfection Facility in New York City, the largest ultraviolet (UV) water disinfectant plant in the world. The facility will treat water from the Cat/Del watershed to meet federal Environmental Protection Agency surface-water-treatment rule requirements. Companies involved in the project include L.J. Coppola Inc., Welsbach Electric Corp. and SEW</md-description></location>
-<relevance>115000</relevance>
-<recid>title new york s ultraviolet titan author bergeron angelle</recid>
-</hit>
-<hit>
-
-<md-title>Epa addresses chromium(vi) in drinking water</md-title>
-<md-author>B. E. E</md-author>
-<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Epa addresses chromium(vi) in drinking water</md-title>
-<md-author>B. E. E</md-author>
-<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description></location>
-<relevance>101503</relevance>
-<recid>title epa addresses chromium vi in drinking water author b e e</recid>
-</hit>
-<hit>
-
-<md-title>Nanostructured Materials Repel Water Before It Freezes</md-title>
-<md-description>The article offers information on nanostructured materials designed by Harvard University researchers, which repel water droplets before they can freeze</md-description><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
-<md-title>Nanostructured Materials Repel Water Before It Freezes</md-title>
-<md-description>The article offers information on nanostructured materials designed by Harvard University researchers, which repel water droplets before they can freeze</md-description></location>
-<relevance>100714</relevance>
-<recid>title nanostructured materials repel water before it freezes</recid>
-</hit>
-</show>
+<list name="xtargets">
+<term>
+<id>kb.dadsthirdnode.cvt.dk/sru-proxy</id>
+<name>DADS SRU-proxy</name>
+<frequency>2073000</frequency>
+<state>Client_Idle</state>
+<diagnostic>0</diagnostic>
+</term>
+</list>
+<list name="author">
+<term><name>Janmaat, Johannus</name><frequency>2</frequency></term>
+<term><name>J. N. C</name><frequency>2</frequency></term>
+<term><name>S. R</name><frequency>2</frequency></term>
+<term><name>M©♭l©♭der, Vona</name><frequency>1</frequency></term>
+<term><name>Guillaumont, Brigitte</name><frequency>1</frequency></term>
+<term><name>Perrot, Thierry</name><frequency>1</frequency></term>
+<term><name>Mouquet, Pascal</name><frequency>1</frequency></term>
+<term><name>Bickel, Samantha L</name><frequency>1</frequency></term>
+<term><name>Tang, Kam W</name><frequency>1</frequency></term>
+<term><name>WESTERVELT, ROBERT</name><frequency>1</frequency></term>
+<term><name>O&apos;NEILL, MOLLY</name><frequency>1</frequency></term>
+<term><name>C. H</name><frequency>1</frequency></term>
+<term><name>CLARK, CHARLES S</name><frequency>1</frequency></term>
+<term><name>SCHMIDT, CHARLES</name><frequency>1</frequency></term>
+<term><name>ERICKSON, BRITT</name><frequency>1</frequency></term>
+</list>
+<list name="subject">
+<term><name>Research</name><frequency>3</frequency></term>
+<term><name>DRINKING water</name><frequency>2</frequency></term>
+<term><name>United States</name><frequency>2</frequency></term>
+<term><name>CHEMISTRY</name><frequency>1</frequency></term>
+<term><name>Experiments</name><frequency>1</frequency></term>
+<term><name>Arsenic content</name><frequency>1</frequency></term>
+<term><name>PETROLEUM industry &amp; trade</name><frequency>1</frequency></term>
+<term><name>NEWS briefs, World</name><frequency>1</frequency></term>
+<term><name>UNITED States. Environmental Protection Agency</name><frequency>1</frequency></term>
+<term><name>METHANE</name><frequency>1</frequency></term>
+<term><name>AMOEBA</name><frequency>1</frequency></term>
+<term><name>CHEMICAL reactors</name><frequency>1</frequency></term>
+<term><name>FACTORIES</name><frequency>1</frequency></term>
+<term><name>JACKSON, Lisa P</name><frequency>1</frequency></term>
+<term><name>MEMBRANES (Biology)</name><frequency>1</frequency></term>
+</list>
+<list name="medium">
+</list>
+<list name="journal-title">
+<term><name>Chemical and Engineering News</name><frequency>16</frequency></term>
+<term><name>Pollution Engineering</name><frequency>6</frequency></term>
+<term><name>Marine Biology</name><frequency>3</frequency></term>
+<term><name>Forbes</name><frequency>3</frequency></term>
+<term><name>Land Economics</name><frequency>3</frequency></term>
+<term><name>Government Executive</name><frequency>2</frequency></term>
+<term><name>Journal of Financial and Quantitative Analysis</name><frequency>2</frequency></term>
+<term><name>American Economic Review</name><frequency>2</frequency></term>
+<term><name>Petroleum Economist - English Edition</name><frequency>2</frequency></term>
+<term><name>Money - Easton</name><frequency>1</frequency></term>
+<term><name>Chemical Week</name><frequency>1</frequency></term>
+<term><name>Interfaces</name><frequency>1</frequency></term>
+<term><name>Interfaces - Baltimore</name><frequency>1</frequency></term>
+<term><name>Vital Speeches of the Day</name><frequency>1</frequency></term>
+<term><name>Marketing (00253650)</name><frequency>1</frequency></term>
+</list>
+</termlist>
diff --git a/test/test_sru-proxy_5.res b/test/test_sru-proxy_5.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_sru-proxy_6.res b/test/test_sru-proxy_6.res
new file mode 100644 (file)
index 0000000..d3b889f
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>0</merged>
+<total>0</total>
+<start>0</start>
+<num>0</num>
+</show>
diff --git a/test/test_sru-proxy_7.res b/test/test_sru-proxy_7.res
new file mode 100644 (file)
index 0000000..42534e3
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<settings><status>OK</status></settings>
\ No newline at end of file
diff --git a/test/test_sru-proxy_8.res b/test/test_sru-proxy_8.res
new file mode 100644 (file)
index 0000000..ab63fe6
--- /dev/null
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<search><status>OK</status></search>
\ No newline at end of file
diff --git a/test/test_sru-proxy_9.res b/test/test_sru-proxy_9.res
new file mode 100644 (file)
index 0000000..8ab0b99
--- /dev/null
@@ -0,0 +1,242 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<show>
+<status>OK</status>
+<activeclients>0</activeclients>
+<merged>49</merged>
+<total>2073000</total>
+<start>0</start>
+<num>20</num>
+<hit>
+
+<md-title>Water, Water Everywhere</md-title>
+<md-description>The article focuses on The Global Chemistry Experiment for the International Year of Chemistry (IYC) 2011, which is a set of experiments based on the attraction of water for young people and its chemical properties. Water: A Chemical Solution involves a set of four simple experiments aimed at encouraging students around the world to learn how chemistry contributes to water. Information on the experiments can be obtained from the IYC 2011 Web site</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Water, Water Everywhere</md-title>
+<md-description>The article focuses on The Global Chemistry Experiment for the International Year of Chemistry (IYC) 2011, which is a set of experiments based on the attraction of water for young people and its chemical properties. Water: A Chemical Solution involves a set of four simple experiments aimed at encouraging students around the world to learn how chemistry contributes to water. Information on the experiments can be obtained from the IYC 2011 Web site</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>16846</relevance>
+<recid>title water water everywhere</recid>
+</hit>
+<hit>
+
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title>
+<md-journal-title>Land Economics</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-description>While water markets have long been advocated as a tool for both enhancing water use efficiency and enabling conservation purchases, their interaction with water rights and licenses has been little studied. It is shown that when water rights are not tradable, using spot markets to secure conservation needs may harm some water users. Ironically, while a spot market enhances the efficiency of water use, it may also increase the cost of conservation purchases. Further, a self-funding conservation program, where volumetric license carrying charges pay for conservation purchases, creates a transfer from junior water users to senior water users</md-description>
+<md-journal-title>Land Economics</md-journal-title></location>
+<location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Water Markets, Licenses, and Conservation: Some Implications</md-title>
+<md-author>Janmaat, Johannus</md-author>
+<md-journal-title>Land Economics</md-journal-title></location>
+<count>2</count>
+<relevance>14111</relevance>
+<recid>title water markets licenses and conservation some implications author janmaat johannus</recid>
+</hit>
+<hit>
+
+<md-title>Newscripts</md-title>
+<md-description>The article offers information on two water products, dehydrated water, available from the Amazon.com Web site, and the HydroPack, a water-filter pouch from Hydration Technology Innovations</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Newscripts</md-title>
+<md-description>The article offers information on two water products, dehydrated water, available from the Amazon.com Web site, and the HydroPack, a water-filter pouch from Hydration Technology Innovations</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>7435</relevance>
+<recid>title newscripts</recid>
+</hit>
+<hit>
+
+<md-title>Epigenetic clues to arsenic toxicity</md-title>
+<md-author>S. R</md-author>
+<md-description>The article reports on a study which determined the association between long-term exposure to low levels of arsenic in drinking water and an increased incidence of heart disease, diabetes and cancer, according to toxicologists led by Rebecca C. Fry of the University of North Carolina in Chapel Hill</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Epigenetic clues to arsenic toxicity</md-title>
+<md-author>S. R</md-author>
+<md-description>The article reports on a study which determined the association between long-term exposure to low levels of arsenic in drinking water and an increased incidence of heart disease, diabetes and cancer, according to toxicologists led by Rebecca C. Fry of the University of North Carolina in Chapel Hill</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>6373</relevance>
+<recid>title epigenetic clues to arsenic toxicity author s r</recid>
+</hit>
+<hit>
+
+<md-title>Deep-water discoveries total 93</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Deep-water discoveries total 93</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title></location>
+<relevance>6123</relevance>
+<recid>title deep water discoveries total</recid>
+</hit>
+<hit>
+
+<md-title>Pemex tests the water</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Pemex tests the water</md-title>
+<md-journal-title>Petroleum Economist - English Edition</md-journal-title></location>
+<relevance>6123</relevance>
+<recid>title pemex tests the water</recid>
+</hit>
+<hit>
+
+<md-title>Amoebas in drinking water worldwide</md-title>
+<md-author>J. N. C</md-author>
+<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Amoebas in drinking water worldwide</md-title>
+<md-author>J. N. C</md-author>
+<md-description>The article focuses on a study which concluded that some amoeba species called free-living amoebas (FLAs) survive water treatment and quickly multiply in drinking water distribution and storage systems</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>5715</relevance>
+<recid>title amoebas in drinking water worldwide author j n c</recid>
+</hit>
+<hit>
+
+<md-title>Hexavalent Chromium in Drinking Water</md-title>
+<md-description>The article reports on the meeting by U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson with 10 U.S. senators in December, 2010 regarding the agency&apos;s risk assessment operations for chromium-6 or hexchrome in drinking water</md-description>
+<md-journal-title>Pollution Engineering</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Hexavalent Chromium in Drinking Water</md-title>
+<md-description>The article reports on the meeting by U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson with 10 U.S. senators in December, 2010 regarding the agency&apos;s risk assessment operations for chromium-6 or hexchrome in drinking water</md-description>
+<md-journal-title>Pollution Engineering</md-journal-title></location>
+<relevance>5229</relevance>
+<recid>title hexavalent chromium in drinking water</recid>
+</hit>
+<hit>
+
+<md-title>Epa addresses chromium(vi) in drinking water</md-title>
+<md-author>B. E. E</md-author>
+<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Epa addresses chromium(vi) in drinking water</md-title>
+<md-author>B. E. E</md-author>
+<md-description>The article discusses the plan of U.S. Environmental Protection Agency (EPA) Administrator Lisa P. Jackson to issue guidance to all U.S. drinking water utilities for the development and implementation of programs monitoring chromium in drinking water</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>4143</relevance>
+<recid>title epa addresses chromium vi in drinking water author b e e</recid>
+</hit>
+<hit>
+
+<md-title>Breaking the Deadlock: Improving Water-Release Policies on the Delaware River Through Operations Research</md-title>
+<md-author>Kolesar, Peter</md-author>
+<md-journal-title>Interfaces - Baltimore</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Breaking the Deadlock: Improving Water-Release Policies on the Delaware River Through Operations Research</md-title>
+<md-author>Kolesar, Peter</md-author>
+<md-author>Serio, James</md-author>
+<md-journal-title>Interfaces - Baltimore</md-journal-title></location>
+<relevance>1749</relevance>
+<recid>title breaking the deadlock improving water release policies on the delaware river through operations research author kolesar peter author serio james</recid>
+</hit>
+<hit>
+
+<md-title>Message in Our Bottles</md-title>
+<md-description>The article reviews &quot;Bottled and Sold: The Story Behind Our Obsession With Bottled Water,&quot; by Peter H. Gleick, edited by Rick Docksai</md-description>
+<md-journal-title>Futurist</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Message in Our Bottles</md-title>
+<md-description>The article reviews &quot;Bottled and Sold: The Story Behind Our Obsession With Bottled Water,&quot; by Peter H. Gleick, edited by Rick Docksai</md-description>
+<md-journal-title>Futurist</md-journal-title></location>
+<relevance>1670</relevance>
+<recid>title message in our bottles</recid>
+</hit>
+<hit>
+
+<md-title>DISASTER-PROOF YOUR HOME - VALUE ADDED - Smart ways to prevent wind, water, and ice damage</md-title>
+<md-author>Garskof, Josh</md-author>
+<md-journal-title>Money - Easton</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>DISASTER-PROOF YOUR HOME - VALUE ADDED - Smart ways to prevent wind, water, and ice damage</md-title>
+<md-author>Garskof, Josh</md-author>
+<md-journal-title>Money - Easton</md-journal-title></location>
+<relevance>1632</relevance>
+<recid>title disaster proof your home value added smart ways to prevent wind water and ice damage author garskof josh</recid>
+</hit>
+<hit>
+
+<md-title>EPA REVERSAL ON PERCHLORATE - Agency will now set drinking water limits for the rocket-fuel ingredient</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>EPA REVERSAL ON PERCHLORATE - Agency will now set drinking water limits for the rocket-fuel ingredient</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>1530</relevance>
+<recid>title epa reversal on perchlorate agency will now set drinking water limits for the rocket fuel ingredient</recid>
+</hit>
+<hit>
+
+<md-title>All dried up?</md-title>
+<md-author>VanderMey, Anne</md-author>
+<md-description>The article presents statistics related to Lake Mead in light of water shortages, including the water capacity of a new water intake tunnel to bring water to Las Vegas, Nevada in gallons, the number of people who rely on Lake Mead for water, and the number of feet the water level has dropped in eleven years</md-description>
+<md-journal-title>Fortune</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>All dried up?</md-title>
+<md-author>VanderMey, Anne</md-author>
+<md-description>The article presents statistics related to Lake Mead in light of water shortages, including the water capacity of a new water intake tunnel to bring water to Las Vegas, Nevada in gallons, the number of people who rely on Lake Mead for water, and the number of feet the water level has dropped in eleven years</md-description>
+<md-journal-title>Fortune</md-journal-title></location>
+<relevance>1312</relevance>
+<recid>title all dried up author vandermey anne</recid>
+</hit>
+<hit>
+
+<md-title>COREXIT LINGERS IN DEEP WATER - Key ingredient of oil dispersant injected near gushing BP wellhead persists in Gulf waters</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>COREXIT LINGERS IN DEEP WATER - Key ingredient of oil dispersant injected near gushing BP wellhead persists in Gulf waters</md-title>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>1289</relevance>
+<recid>title corexit lingers in deep water key ingredient of oil dispersant injected near gushing bp wellhead persists in gulf waters</recid>
+</hit>
+<hit>
+
+<md-title>PRIVATE EYE - Caribiana can craft only 12 custom skiffs a year, every one of them a heavy-water-shredding knockout</md-title>
+<md-author>Abel, Ann</md-author>
+<md-journal-title>Forbes</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>PRIVATE EYE - Caribiana can craft only 12 custom skiffs a year, every one of them a heavy-water-shredding knockout</md-title>
+<md-author>Abel, Ann</md-author>
+<md-journal-title>Forbes</md-journal-title></location>
+<relevance>1289</relevance>
+<recid>title private eye caribiana can craft only custom skiffs a year every one of them a heavy water shredding knockout author abel ann</recid>
+</hit>
+<hit>
+
+<md-title>Controlling Pump Costs - The largest energy cost at water and wastewater plants is the cost of operating pumps. There are ways to manage such costs and provide many benefits</md-title>
+<md-journal-title>Pollution Engineering</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Controlling Pump Costs - The largest energy cost at water and wastewater plants is the cost of operating pumps. There are ways to manage such costs and provide many benefits</md-title>
+<md-journal-title>Pollution Engineering</md-journal-title></location>
+<relevance>844</relevance>
+<recid>title controlling pump costs the largest energy cost at water and wastewater plants is the cost of operating pumps there are ways to manage such costs and provide many benefits</recid>
+</hit>
+<hit>
+
+<md-title>Some Unsettled Problems of Irrigation</md-title>
+<md-author>Coman, Katharine</md-author>
+<md-description>The lead article in the inaugural issue of the AER examines the common property resource problem as applied to water in the Western United States</md-description>
+<md-journal-title>American Economic Review</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Some Unsettled Problems of Irrigation</md-title>
+<md-author>Coman, Katharine</md-author>
+<md-description>The lead article in the inaugural issue of the AER examines the common property resource problem as applied to water in the Western United States</md-description>
+<md-journal-title>American Economic Review</md-journal-title></location>
+<relevance>489</relevance>
+<recid>title some unsettled problems of irrigation author coman katharine</recid>
+</hit>
+<hit>
+
+<md-title>Institutional Path Dependence in Climate Adaptation: Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation&apos;&apos;</md-title>
+<md-author>Libecap, Gary D</md-author>
+<md-description>Katharine Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation,&apos;&apos; published in March 1911 in the first issue of the American Economic Review, addressed issues of water supply, rights, and organization. These same issues have relevance today, in the face of growing concern about the availability of fresh water worldwide. The central point of this article is that appropriative water rights and irrigation districts that emerged in the American West in the late nineteenth and early twentieth centuries in response to aridity to facilitate agricultural water delivery, use, and trade raise the transaction costs today of water markets. These markets are vital for smooth reallocation of water to higher-valued uses elsewhere in the economy and for flexible response to greater hydrological uncertainty. This institutional path dependence illustrates how past arrangements to meet conditions of the time constrain contemporary economic opportunities. They cannot be easily significantly modified or replaced ex post. (JEL N51, Q15, Q25, Q54)</md-description>
+<md-journal-title>American Economic Review</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Institutional Path Dependence in Climate Adaptation: Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation&apos;&apos;</md-title>
+<md-author>Libecap, Gary D</md-author>
+<md-description>Katharine Coman&apos;s &apos;&apos;Some Unsettled Problems of Irrigation,&apos;&apos; published in March 1911 in the first issue of the American Economic Review, addressed issues of water supply, rights, and organization. These same issues have relevance today, in the face of growing concern about the availability of fresh water worldwide. The central point of this article is that appropriative water rights and irrigation districts that emerged in the American West in the late nineteenth and early twentieth centuries in response to aridity to facilitate agricultural water delivery, use, and trade raise the transaction costs today of water markets. These markets are vital for smooth reallocation of water to higher-valued uses elsewhere in the economy and for flexible response to greater hydrological uncertainty. This institutional path dependence illustrates how past arrangements to meet conditions of the time constrain contemporary economic opportunities. They cannot be easily significantly modified or replaced ex post. (JEL N51, Q15, Q25, Q54)</md-description>
+<md-journal-title>American Economic Review</md-journal-title></location>
+<relevance>480</relevance>
+<recid>title institutional path dependence in climate adaptation coman s some unsettled problems of irrigation author libecap gary d</recid>
+</hit>
+<hit>
+
+<md-title>Solar fuel, with high efficiency</md-title>
+<md-author>BORMAN, STU</md-author>
+<md-description>The article describes the thermo-chemical reactor developed by solar technology specialist Aldo Steinfeld of ETH which utilizes sunlight for the conversion of carbon dioxide and water into hydrocarbon-fuel precursors at a relatively high efficiency</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title><location id="kb.dadsthirdnode.cvt.dk/sru-proxy" name="sru-proxy">
+<md-title>Solar fuel, with high efficiency</md-title>
+<md-author>BORMAN, STU</md-author>
+<md-description>The article describes the thermo-chemical reactor developed by solar technology specialist Aldo Steinfeld of ETH which utilizes sunlight for the conversion of carbon dioxide and water into hydrocarbon-fuel precursors at a relatively high efficiency</md-description>
+<md-journal-title>Chemical and Engineering News</md-journal-title></location>
+<relevance>340</relevance>
+<recid>title solar fuel with high efficiency author borman stu</recid>
+</hit>
+</show>