Rename member variable m_curDetRecData to m_currentRecordData.
[mkws-moved-to-github.git] / tools / htdocs / mkws.js
index ffac9fc..8c102b5 100644 (file)
@@ -233,9 +233,9 @@ function team($, teamName) {
     var m_perpage; // will be set below
     var m_filters = [];
     var m_totalRecordCount = 0;
-    var m_curPage = 1;
-    var m_curDetRecId = '';
-    var m_curDetRecData = null;
+    var m_currentPage = 1;
+    var m_currentRecordId = '';
+    var m_currentRecordData = null;
     var m_debugTime = {
        // Timestamps for logging
        "start": $.now(),
@@ -352,9 +352,9 @@ function team($, teamName) {
            html.push('<div class="record" id="mkwsRecdiv_' + teamName + '_' + hit.recid + '" >',
                      renderSummary(hit),
                      '</div>');
-           if (hit.recid == m_curDetRecId) {
-               if (m_curDetRecData)
-                   html.push(renderDetails(m_curDetRecData));
+           if (hit.recid == m_currentRecordId) {
+               if (m_currentRecordData)
+                   html.push(renderDetails(m_currentRecordData));
            }
        }
        results.html(html.join(''));
@@ -368,10 +368,10 @@ function team($, teamName) {
        // in case on_show was faster to redraw element
        var detRecordDiv = document.getElementById('mkwsDet_' + teamName + '_' + data.recid);
        if (detRecordDiv) return;
-       m_curDetRecData = data;
+       m_currentRecordData = data;
        // Can't use jQuery's $('#x') syntax to find this ID, because it contains spaces.
-       var recordDiv = document.getElementById('mkwsRecdiv_' + teamName + '_' + m_curDetRecData.recid);
-       var html = renderDetails(m_curDetRecData);
+       var recordDiv = document.getElementById('mkwsRecdiv_' + teamName + '_' + m_currentRecordData.recid);
+       var html = renderDetails(m_currentRecordData);
        $(recordDiv).append(html);
     }
 
@@ -422,8 +422,8 @@ function team($, teamName) {
        var onsides = 6;
        var pages = Math.ceil(m_totalRecordCount / m_perpage);
 
-       var firstClkbl = (m_curPage - onsides > 0)
-            ? m_curPage - onsides
+       var firstClkbl = (m_currentPage - onsides > 0)
+            ? m_currentPage - onsides
             : 1;
 
        var lastClkbl = firstClkbl + 2*onsides < pages
@@ -431,14 +431,14 @@ function team($, teamName) {
             : pages;
 
        var prev = '<span class="mkwsPrev">&#60;&#60; ' + M('Prev') + '</span><b> | </b>';
-       if (m_curPage > 1)
+       if (m_currentPage > 1)
             prev = '<a href="#" class="mkwsPrev" onclick="mkws.pagerPrev(\'' + m_teamName + '\');">'
             +'&#60;&#60; ' + M('Prev') + '</a><b> | </b>';
 
        var middle = '';
        for(var i = firstClkbl; i <= lastClkbl; i++) {
             var numLabel = i;
-            if(i == m_curPage)
+            if(i == m_currentPage)
                numLabel = '<b>' + i + '</b>';
 
             middle += '<a href="#" onclick="mkws.showPage(\'' + m_teamName + '\', ' + i + ')"> '
@@ -446,7 +446,7 @@ function team($, teamName) {
        }
 
        var next = '<b> | </b><span class="mkwsNext">' + M('Next') + ' &#62;&#62;</span>';
-       if (pages - m_curPage > 0)
+       if (pages - m_currentPage > 0)
             next = '<b> | </b><a href="#" class="mkwsNext" onclick="mkws.pagerNext(\'' + m_teamName + '\')">'
             + M('Next') + ' &#62;&#62;</a>';
 
@@ -534,7 +534,7 @@ function team($, teamName) {
 
     function resetPage()
     {
-       m_curPage = 1;
+       m_currentPage = 1;
        m_totalRecordCount = 0;
     }
 
@@ -677,23 +677,23 @@ function team($, teamName) {
 
     that.showPage = function (pageNum)
     {
-       m_curPage = pageNum;
-       m_paz.showPage(m_curPage - 1);
+       m_currentPage = pageNum;
+       m_paz.showPage(m_currentPage - 1);
     }
 
 
     // simple paging functions
     that.pagerNext = function () {
-       if (m_totalRecordCount - m_perpage*m_curPage > 0) {
+       if (m_totalRecordCount - m_perpage*m_currentPage > 0) {
             m_paz.showNext();
-            m_curPage++;
+            m_currentPage++;
        }
     }
 
 
     that.pagerPrev = function () {
        if (m_paz.showPrev() != false)
-            m_curPage--;
+            m_currentPage--;
     }
 
 
@@ -736,19 +736,19 @@ function team($, teamName) {
     // detailed record drawing
     that.showDetails = function (prefixRecId) {
        var recId = prefixRecId.replace('mkwsRec_', '');
-       var oldRecId = m_curDetRecId;
-       m_curDetRecId = recId;
+       var oldRecordId = m_currentRecordId;
+       m_currentRecordId = recId;
 
        // remove current detailed view if any
-       var detRecordDiv = document.getElementById('mkwsDet_' + m_teamName + '_' + oldRecId);
+       var detRecordDiv = document.getElementById('mkwsDet_' + m_teamName + '_' + oldRecordId);
        // lovin DOM!
        if (detRecordDiv)
            detRecordDiv.parentNode.removeChild(detRecordDiv);
 
        // if the same clicked, just hide
-       if (recId == oldRecId) {
-            m_curDetRecId = '';
-            m_curDetRecData = null;
+       if (recId == oldRecordId) {
+            m_currentRecordId = '';
+            m_currentRecordData = null;
             return;
        }
        // request the record