X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=mkdru.theme.js;h=1871750510b759d719d82e831a591cf0b916c2a2;hb=3161ac887437e9bf2379ea4f6b1621fb94d477ba;hp=7d92e61cb3725e5124162f591787a0e98f9d283f;hpb=66f3bea850ee445427da4ec46e18d4374dd3e953;p=mkdru-moved-to-drupal.org.git diff --git a/mkdru.theme.js b/mkdru.theme.js index 7d92e61..1871750 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; }; @@ -110,32 +110,30 @@ Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) { + clients + Drupal.t(' targets'); }; -Drupal.theme.prototype.mkdruFacet = function (terms, facet, max) { +Drupal.theme.prototype.mkdruFacet = function (terms, facet, max, selections) { var html = ""; for (var i = 0; i < terms.length && i < max; i++ ) { - html += Drupal.theme('mkdruFacetTerm', terms[i], facet); + var term = terms[i]; + html += '
'; } - return html; -}; - -Drupal.theme.prototype.mkdruFacetTerm = function (term, facet) { - var html = '
'+sel[i]+' (0)
'; + } + } } - html += '">' + term.name + ' (' + term.freq + ')
'; return html; }; -Drupal.theme.prototype.mkdruFacetLimit = function (term, link) { - if (term) { - return '

' + Drupal.t('Only displaying ') + term.name + '

' - + '

' + Drupal.t('Show all...') + '

'; - } -}; \ No newline at end of file +Drupal.theme.prototype.mkdruFacetContainer = function (facets, facetCfg) { + return ""; +};