X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=mkdru.theme.js;h=5af43eed99464e33e8cbfe354ed1a7edf632bdb6;hb=d576c9a086d8a41794f70ae5f142768aba2de9a4;hp=6f77dda1133cd1136f642e78f968d00c4198f603;hpb=af0fd36a81cdfb1dd5fbe480765440a54db8891b;p=mkdru-moved-to-drupal.org.git diff --git a/mkdru.theme.js b/mkdru.theme.js index 6f77dda..5af43ee 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -17,7 +17,7 @@ Drupal.theme.prototype.mkdruResult = function(hit, num, detailLink) { return html; }; -Drupal.theme.prototype.mkdruDetail = function(data) { +Drupal.theme.prototype.mkdruDetail = function(data, linkBack) { var html = ''; if (data["md-title"] != undefined) { html += ''; html += '
' + Drupal.t("Title") + ': ' @@ -48,7 +48,7 @@ Drupal.theme.prototype.mkdruDetail = function(data) { + data["location"][0]["@name"] + " (" + data["location"][0]["@id"] + ")" + '
'; - html += 'Return to result list...'; + html += 'Return to result list...'; return html; }; @@ -100,10 +100,43 @@ Drupal.theme.prototype.mkdruPager = function (pages, start, current, total, prev return html; }; -Drupal.theme.prototype.mkdruTerm = function (term, freq, linkClass, id) { - var html = '' + term + ' (' + freq + ')
'; +Drupal.theme.prototype.mkdruCounts = function(first, last, available, total) { + if (last > 0) + return first + Drupal.t(' to ') + last + Drupal.t(' of ') + available + + Drupal.t(' available (') + total + Drupal.t(' found)'); + else + return Drupal.t('No results'); +}; + +Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) { + return Drupal.t('Waiting on ') + activeClients + Drupal.t(' out of ') + + clients + Drupal.t(' targets'); +}; + +Drupal.theme.prototype.mkdruFacet = function (terms, facet, max, selections) { + var html = ""; + for (var i = 0; i < terms.length && i < max; i++ ) { + var term = terms[i]; + html += '
'; + } + //TODO, meed to look up target name from ID + if (terms.length == 0 && selections && selections.length) { + for (var i=0; i'+selections[i]+'
(0)
'; + } + } + } return html; -}; \ No newline at end of file +}; + +Drupal.theme.prototype.mkdruFacetContainer = function (facetCfg) { + return ""; +};