Rename '#ranking' to '#mkwsRanking'
authorMike Taylor <mike@indexdata.com>
Mon, 1 Jul 2013 22:23:59 +0000 (23:23 +0100)
committerMike Taylor <mike@indexdata.com>
Mon, 1 Jul 2013 22:23:59 +0000 (23:23 +0100)
experiments/spclient/html-structure.txt
experiments/spclient/mkws.js
experiments/spclient/mkwsStyle.css

index 0acca43..9f85610 100644 (file)
@@ -11,7 +11,7 @@ identifier and .CLASS indicates an instance of a class.
 
 #mkwsSearch
   form
-    input#query type=text
+    input#mkwsQuery type=text
     input#mkwsButton type=submit
 
 #mkwsBlanket
@@ -28,7 +28,7 @@ identifier and .CLASS indicates an instance of a class.
               div.termtitle
               ( a span br )*
         td
-          div#ranking
+          div#mkwsRanking
             form#select
               select#sort
               select#perpage
index a6dbbdd..b7b6d55 100644 (file)
@@ -242,7 +242,7 @@ function my_onbytarget(data) {
 function domReady ()
 {
     document.search.onsubmit = onFormSubmitEventHandler;
-    document.search.query.value = '';
+    document.search.mkwsQuery.value = '';
     document.select.sort.onchange = onSelectDdChange;
     document.select.perpage.onchange = onSelectDdChange;
 }
@@ -275,7 +275,7 @@ function resetPage()
 
 function triggerSearch ()
 {
-    my_paz.search(document.search.query.value, recPerPage, curSort, curFilter);
+    my_paz.search(document.search.mkwsQuery.value, recPerPage, curSort, curFilter);
 }
 
 function loadSelect ()
@@ -532,11 +532,11 @@ function mkws_html_all(config) {
        mkws_html_lang(mkws_config);
 
     // For some reason, doing this programmatically results in
-    // document.search.query being undefined, hence the raw HTML.
+    // document.search.mkwsQuery being undefined, hence the raw HTML.
     debug("HTML search form");
     $("#mkwsSearch").html('\
     <form name="search" action="" >\
-      <input id="query" type="text" size="' + mkws_config.query_width + '" />\
+      <input id="mkwsQuery" type="text" size="' + mkws_config.query_width + '" />\
       <input id="mkwsButton" type="submit" value="' + M('Search') + '" />\
     </form>');
 
@@ -548,7 +548,7 @@ function mkws_html_all(config) {
             <div id="mkwsTermlists"></div>\
           </td>\
           <td valign="top">\
-            <div id="ranking">\
+            <div id="mkwsRanking">\
               <form name="select" id="select" action="" >\
         ' + M('Sort by') + ' ' + mkws_html_sort(config) + '\
         ' + M('and show') + ' ' + mkws_html_perpage(config) + '\
index f5209f1..2912ce2 100644 (file)
@@ -81,7 +81,7 @@
     cursor: pointer;
 }
 
-#mkwsSearch input#query {
+#mkwsSearch input#mkwsQuery {
     border: 2px inset #e0f0ff;
     padding: 3px;
     font-size: 12px;