Hardcoded motd in index.html. Cleared in onFormSubmit. This should be read from a...
authorSebastian Hammer <quinn@indexdata.com>
Mon, 30 Apr 2007 03:35:57 +0000 (03:35 +0000)
committerSebastian Hammer <quinn@indexdata.com>
Mon, 30 Apr 2007 03:35:57 +0000 (03:35 +0000)
or something, but what?

www/masterkey/css/styles.css
www/masterkey/index.html
www/masterkey/js/client.js

index 65a540e..6fdfd5c 100755 (executable)
@@ -183,6 +183,12 @@ background-color: #ffffff;
 color: #002863;
 }
 
+div.motd {
+float: right;
+width: 754px;
+}
+
+
 input.button {
 color: #ffffff;
 font: bold 11px verdana;
index c7fcde9..98c56fa 100755 (executable)
       </form>
       </div>
       <div class="main">
+       <div class="motd" id="motd">
+<b>About This Service</b>
+
+<p>
+This is a pre-release demonstration of Index Data's soon-to-be-released hosted metasearch service, MasterKey.  MasterKey is based on pazpar2, Index Data's second generation metasearch engine. 
+
+<p>
+The MasterKey hosted metasearch service is now, and will continue to be, freely usable for searching selected open content online resources and library catalogs.  Commercial resources and additional catalogs can be added to the service using the fee-based version of MasterKey.  For cost quotes or additional information on the fee-based service, write to info@indexdata.com or call 860-389-1568.
+
+<p>
+<b>Masterkey Features in the Development Queue</b>
+
+<ul>
+<li>Additional target selection capabilities<br>
+<li>Enhanced authentication functionality<br>
+<li>New search features<br>
+</ul>
+
+All comments and/or suggestions for improvements and developmental priorities are welcome You can sign on to the MasterKey listserv at lists.indexdata.com/masterkey to engage in a public dialog about this new product. 
+<p>
+
+<b>About pazpar2</b>
+
+<p>
+pazpar2 (pronounced "Passe-partout") uses Ajax and other technologies to improve the speed and functionality of simultaneous multi-target search and retrieval. It enables fast sorting and merging across multiple target databases, as well as faceted search limiting and search re-directing. Index Data expects to release pazpar2 as open source software in Spring 2007. At that point, the search engine and a simple interface will be released under the open source General Public License.
+<p>
+
+As with all Index Data's open source distributions, pazpar2 will be both freely downloadable and fully backed by the best commercial support in the library market. Institutional users will pay only for optional installation, customization and support services, if they choose to obtain them, but the software itself will be freely usable and will not require ongoing license fees.
+<p>
+
+A listserv for pazpar2 will be announced when the software is formally released.
+<p>
+
+Index Data means business for open source and open standards.
+       </div>
         <div class="leftbar" style="display: none">
           <div class="head">
             <div class="margin">
             <div id="breadcrumb"></div>
             <br />
             <br />
-          <div class="records"></div>
+          <div class="records">
+         </div>
           <div class="bottom">
             <div class="pages">&nbsp;</div>
           </div>
index b91e372..2d262b1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-** $Id: client.js,v 1.20 2007-04-20 13:56:20 jakub Exp $
+** $Id: client.js,v 1.21 2007-04-30 03:35:57 quinn Exp $
 ** MasterKey - pazpar2's javascript client .
 */
 
@@ -60,6 +60,7 @@ function onFormSubmitEventHandler() {
     curQuery.clearFilter();
     fireSearch();
     drawBreadcrumb();
+    $('div.motd').empty();
     $('div.content').show();
     $("div.leftbar").show();
     return false;