From d255e37d7ec595da13750773a4c0f9eea9a5feb7 Mon Sep 17 00:00:00 2001 From: dartar Date: Sat, 13 Sep 2014 23:15:38 -0700 Subject: [PATCH 01/12] pretty print JSON --- inc/chart.inc.php | 150 ++++++++++++++++++++++++-------------------- inc/commons.inc.php | 126 +++++++++++++++++++++++++------------ inc/json.inc.php | 2 +- inc/lang.inc.php | 134 ++++++++++++++++++++++++++------------- 4 files changed, 258 insertions(+), 154 deletions(-) diff --git a/inc/chart.inc.php b/inc/chart.inc.php index 7d45a30..cc1ebb1 100644 --- a/inc/chart.inc.php +++ b/inc/chart.inc.php @@ -3,74 +3,25 @@ * ColumnChart handler */ -echo << - - Wikipedia Cite-o-Meter: Statistics for $doi[$doip] - - - - - - + + + Wikipedia Cite-o-Meter: Statistics for $doi[$doip] + + + +

Wikipedia Cite-o-Meter

Statistics for $doi[$doip] ($doip)

[stats] [data] [json] [about]

@@ -82,10 +33,71 @@ function drawChart2() {

Citations for $doi[$doip] ($doip) in the top 100 Wikipedias

-
-
+
$footer - - + + + EOF; ?> diff --git a/inc/commons.inc.php b/inc/commons.inc.php index 20b9cb4..64b82dc 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -18,55 +18,101 @@ //sort array by citation count arsort($ps); -//take top 100 non-null values + +//only take top 100 records with non-zero values $max = 100; $ps = array_slice(array_filter($ps, function ($v){ return ($v>0);}),0,$max); $cl = count($ps); -echo << - - Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikimedia Commons - - - - - -

Wikipedia Cite-o-Meter

-EOF; + echo <<Top 100 publishers by citations in Wikimedia Commons -
-$footer - + + + Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikimedia Commons + + + + +

Wikipedia Cite-o-Meter

+

Top 100 publishers by citations in Wikimedia Commons

+
+ $footer + + EOF; ?> diff --git a/inc/json.inc.php b/inc/json.inc.php index f975cd0..772b5ea 100644 --- a/inc/json.inc.php +++ b/inc/json.inc.php @@ -14,5 +14,5 @@ 'total_commons_citations' => $totalcommons, 'wp' => $t ); -echo json_encode($jout); +echo json_encode($jout,JSON_PRETTY_PRINT); ?> \ No newline at end of file diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 9d8a598..0ad4dae 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -3,7 +3,7 @@ * Top publishers by project */ -//build array from cached data +//aggregate citation counts from cached data $ps = array(); $list = glob("./data/*.txt"); foreach ($list as $l) @@ -18,70 +18,116 @@ //sort array by citation count arsort($ps); -//take top 100 non-null values + +//only take top 100 records with non-zero values $max = 100; $ps = array_slice(array_filter($ps, function ($v){ return ($v>0);}),0,$max); $cl = count($ps); -echo << - - Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikipedia:$lang - - - - - -

Wikipedia Cite-o-Meter

-EOF; - -echo << + + + Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikipedia:$lang + + + + +

Wikipedia Cite-o-Meter

+
Top publishers in Wikipedia
-
-

Top 100 publishers by citations in Wikipedia:$lang

-
-$footer - + +

Top 100 publishers by citations in Wikipedia: $lang

+
+ $footer + + EOF; ?> From b539ced2b290ad6aed2719ae8d7999c91af26a92 Mon Sep 17 00:00:00 2001 From: dartar Date: Sat, 13 Sep 2014 23:23:22 -0700 Subject: [PATCH 02/12] fix github ribbon --- inc/default.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/default.inc.php b/inc/default.inc.php index fec840a..2cea38b 100644 --- a/inc/default.inc.php +++ b/inc/default.inc.php @@ -10,7 +10,7 @@ - Fork me on GitHub + Fork me on GitHub

Wikipedia Cite-o-Meter

Find citations by publisher in the top 100 Wikipedias (read more)

From 8d76a6a7b3ad20f05df8bdb6fedb7c64e4f6c2e3 Mon Sep 17 00:00:00 2001 From: "tools.cite-o-meter" Date: Sun, 14 Sep 2014 06:44:56 +0000 Subject: [PATCH 03/12] Rolling back pretty print JSON --- inc/commons.inc.php | 5 ++--- inc/json.inc.php | 5 +++-- inc/lang.inc.php | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index 64b82dc..7e1c8ef 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -32,11 +32,10 @@ $r[$i]["n"] = $c; $i++; } -$output = json_encode($r,JSON_PRETTY_PRINT); +//$output = json_encode($r,JSON_PRETTY_PRINT); +$output = json_encode($r); $maxv = $pf[0]; - - echo << diff --git a/inc/json.inc.php b/inc/json.inc.php index 772b5ea..32f46ad 100644 --- a/inc/json.inc.php +++ b/inc/json.inc.php @@ -14,5 +14,6 @@ 'total_commons_citations' => $totalcommons, 'wp' => $t ); -echo json_encode($jout,JSON_PRETTY_PRINT); -?> \ No newline at end of file +//echo json_encode($jout,JSON_PRETTY_PRINT); +echo json_encode($jout); +?> diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 0ad4dae..6627191 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -32,7 +32,8 @@ $r[$i]["n"] = $c; $i++; } -$output = json_encode($r,JSON_PRETTY_PRINT); +//$output = json_encode($r,JSON_PRETTY_PRINT); +$output = json_encode($r); $maxv = $pf[0]; echo << Date: Sat, 13 Sep 2014 23:48:57 -0700 Subject: [PATCH 04/12] Rolling back JSON pretty print --- inc/commons.inc.php | 3 ++- inc/json.inc.php | 4 +++- inc/lang.inc.php | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index 64b82dc..ef46108 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -32,7 +32,8 @@ $r[$i]["n"] = $c; $i++; } -$output = json_encode($r,JSON_PRETTY_PRINT); +//$output = json_encode($r,JSON_PRETTY_PRINT); +$output = json_encode($r); $maxv = $pf[0]; diff --git a/inc/json.inc.php b/inc/json.inc.php index 772b5ea..e7cd5a4 100644 --- a/inc/json.inc.php +++ b/inc/json.inc.php @@ -14,5 +14,7 @@ 'total_commons_citations' => $totalcommons, 'wp' => $t ); -echo json_encode($jout,JSON_PRETTY_PRINT); + +//echo json_encode($jout,JSON_PRETTY_PRINT); +echo json_encode($jout); ?> \ No newline at end of file diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 0ad4dae..6627191 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -32,7 +32,8 @@ $r[$i]["n"] = $c; $i++; } -$output = json_encode($r,JSON_PRETTY_PRINT); +//$output = json_encode($r,JSON_PRETTY_PRINT); +$output = json_encode($r); $maxv = $pf[0]; echo << Date: Sat, 13 Sep 2014 23:59:55 -0700 Subject: [PATCH 05/12] filter empty records --- inc/commons.inc.php | 8 +++++--- inc/lang.inc.php | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index ef46108..c4136c0 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -28,9 +28,11 @@ $r = array(); $i = 0; foreach ($ps as $pf => $c){ - $r[$i]["label"] = $doi[$pf]; - $r[$i]["n"] = $c; - $i++; + if ($c > 0){ + $r[$i]["label"] = $doi[$pf]; + $r[$i]["n"] = $c; + $i++; + } } //$output = json_encode($r,JSON_PRETTY_PRINT); $output = json_encode($r); diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 6627191..0dc8b86 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -28,9 +28,11 @@ $r = array(); $i = 0; foreach ($ps as $pf => $c){ - $r[$i]["label"] = $doi[$pf]; - $r[$i]["n"] = $c; - $i++; + if ($c > 0){ + $r[$i]["label"] = $doi[$pf]; + $r[$i]["n"] = $c; + $i++; + } } //$output = json_encode($r,JSON_PRETTY_PRINT); $output = json_encode($r); From 78f5cc34b37ae574aa8f39fc6af227dff1bbd1e1 Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 00:24:14 -0700 Subject: [PATCH 06/12] Fixed obsolete references to legacy repository --- inc/about.inc.php | 4 ++-- inc/default.inc.php | 2 +- index.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/about.inc.php b/inc/about.inc.php index 99c9b10..ed93835 100644 --- a/inc/about.inc.php +++ b/inc/about.inc.php @@ -9,7 +9,7 @@ - Fork me on GitHub + Fork me on GitHub

Wikipedia Cite-o-Meter

About

@@ -17,7 +17,7 @@

A Digital Object Identifier (DOI) is a string used to uniquely identify objects such as electronic documents. DOIs are the de facto standard for uniquely identifying scholarly publications such as journal articles. A DOI (such as 10.1371/journal.pone.0011273) is composed of two parts — a prefix (10.1371) and a suffix (journal.pone.0011273). An article is uniquely identified by a DOI, which can be looked up using the DOI resolver. The example article is located at http://dx.doi.org/10.1371/journal.pone.0011273.

-

The DOI prefix is specific to a DOI registrant - the organization that handles the assignments of DOI suffixes for items published under that prefix. Most scholarly publishers operate as a single registrant, yet due to mergers and acquisitions, some publishers run several DOI prefixes. The DOI prefix 10.1371 is handled by the Public Library of Science (PLoS), and it is the only DOI prefix handled by PLoS. As a result, Cite-o-Meter statistics for this prefix provide a lower bound for citations to PLoS articles in Wikipedia.

+

The DOI prefix is specific to a DOI registrant - the organization that handles the assignments of DOI suffixes for items published under that prefix. Most scholarly publishers operate as a single registrant, yet due to mergers and acquisitions, some publishers run several DOI prefixes. The DOI prefix 10.1371 is handled by the Public Library of Science (PLoS), and it is the only DOI prefix handled by PLoS. As a result, Cite-o-Meter statistics for this prefix provide a lower bound for citations to PLoS articles in Wikipedia.

Data and license

Cite-o-Meter data is available in the form of graphs, tabular data and machine-readable JSON and is released under a CC0 license.

diff --git a/inc/default.inc.php b/inc/default.inc.php index 2cea38b..047fb66 100644 --- a/inc/default.inc.php +++ b/inc/default.inc.php @@ -10,7 +10,7 @@ - Fork me on GitHub + Fork me on GitHub

Wikipedia Cite-o-Meter

Find citations by publisher in the top 100 Wikipedias (read more)

diff --git a/index.php b/index.php index 0b56609..9fae3c7 100644 --- a/index.php +++ b/index.php @@ -9,7 +9,7 @@ $commons_search = 'http://commons.wikimedia.org/w/index.php?title=Special%3ASearch&redirs=1&fulltext=Search&ns6=1&title=Special%3ASearch&search='; $wc_url = $_SERVER['PHP_SELF']; $langs = array('en','de','fr','it','pl','es','ru','ja','nl','pt','sv','zh','ca','uk','no','fi','vi','cs','hu','ko','tr','id','ro','fa','ar','da','eo','sr','lt','sk','he','ms','bg','sl','vo','eu','war','hr','hi','et','az','kk','gl','simple','nn','new','th','el','roa-rup','la','tl','ht','ka','mk','te','sh','pms','ceb','be-x-old','br','ta','jv','lv','mr','sq','cy','lb','be','is','bs','oc','yo','an','bpy','mg','bn','io','sw','fy','lmo','gu','ml','pnb','af','nds','scn','ur','qu','ku','zh-yue','ne','diq','hy','ast','su','nap','ga','cv','bat-smg','tt'); -$footer = ' '."\n"; +$footer = ' '."\n"; function getPage($proxy, $url, $referer, $agent, $header, $timeout) { $ch = curl_init(); From bb19bb66dfc4ea9f6eacff93de5c3ddf371056d4 Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 08:12:18 -0700 Subject: [PATCH 07/12] Adding DOI prefixes to disambiguate between publishers --- inc/commons.inc.php | 2 +- inc/lang.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index c4136c0..06289c7 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -29,7 +29,7 @@ $i = 0; foreach ($ps as $pf => $c){ if ($c > 0){ - $r[$i]["label"] = $doi[$pf]; + $r[$i]["label"] = "[".$pf."] ".$doi[$pf]; $r[$i]["n"] = $c; $i++; } diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 0dc8b86..5872954 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -29,7 +29,7 @@ $i = 0; foreach ($ps as $pf => $c){ if ($c > 0){ - $r[$i]["label"] = $doi[$pf]; + $r[$i]["label"] = "[".$pf."] ".$doi[$pf]; $r[$i]["n"] = $c; $i++; } From 1e518f59b67261e6dddddc61f197bb434855ace9 Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 11:11:10 -0700 Subject: [PATCH 08/12] default hover style for links and chart elements --- style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 311b2bc..b538cf8 100644 --- a/style.css +++ b/style.css @@ -58,10 +58,9 @@ ul#stats li { #footer a { color: #000; - text-decoration: none; } -h1 a, h2 a, ul#stats li a { +a { text-decoration: none; } @@ -104,4 +103,8 @@ tt { .right { float: right; -} \ No newline at end of file +} + +a:hover, rect:hover { + opacity: .7; +} From 4b583dbc04a64c0f9486699b0e5b41da05a6b253 Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 11:31:46 -0700 Subject: [PATCH 09/12] make labels and chart elements clickable --- inc/chart.inc.php | 10 +++++++--- inc/commons.inc.php | 9 +++++++-- inc/lang.inc.php | 9 +++++++-- style.css | 2 +- 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/inc/chart.inc.php b/inc/chart.inc.php index cc1ebb1..3e40e6a 100644 --- a/inc/chart.inc.php +++ b/inc/chart.inc.php @@ -64,8 +64,10 @@ var g = svg.selectAll(".bar") .data(data.sort(function(a,b) {return b.n - a.n;}), function(d) {return d.label;}) .enter(); - - g.append("rect") + + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://" + d.label + ".wikipedia.org/w/index.php?title=Special:Search&search=$doip";}) + .append("svg:rect") .attr("class", "bar") .attr("x", function(d, i) {return barHorizontalPadding;}) .attr("y", function(d, i) {return dy*i;}) @@ -78,7 +80,9 @@ .attr("width", function(d, i) {return dx*d.n}) .style("fill", "#933") - g.append("text") + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://" + d.label + ".wikipedia.org/w/index.php?title=Special:Search&search=$doip";}) + .append("svg:text") .attr("x", 0) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label;}) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index 06289c7..fcfe7d4 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -31,6 +31,7 @@ if ($c > 0){ $r[$i]["label"] = "[".$pf."] ".$doi[$pf]; $r[$i]["n"] = $c; + $r[$i]["doip"] = $pf; $i++; } } @@ -83,7 +84,9 @@ .data(data.sort(function(a,b) {return b.n - a.n;}), function(d) {return d.label;}) .enter(); - g.append("rect") + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://commons.wikimedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) + .append("rect") .attr("class", "bar") .attr("x", function(d, i) {return barHorizontalPadding;}) .attr("y", function(d, i) {return dy*i;}) @@ -96,7 +99,9 @@ .attr("width", function(d, i) {return dx*d.n}) .style("fill", "#933") - g.append("text") + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://commons.wikimedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) + .append("text") .attr("x", 0) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label.substring(0,maxLabelLength);}) diff --git a/inc/lang.inc.php b/inc/lang.inc.php index 5872954..dee07d2 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -31,6 +31,7 @@ if ($c > 0){ $r[$i]["label"] = "[".$pf."] ".$doi[$pf]; $r[$i]["n"] = $c; + $r[$i]["doip"] = $pf; $i++; } } @@ -98,7 +99,9 @@ .data(data.sort(function(a,b) {return b.n - a.n;}), function(d) {return d.label;}) .enter(); - g.append("rect") + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://$lang.wikipedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) + .append("rect") .attr("class", "bar") .attr("x", function(d, i) {return barHorizontalPadding;}) .attr("y", function(d, i) {return dy*i;}) @@ -111,7 +114,9 @@ .attr("width", function(d, i) {return dx*d.n}) .style("fill", "#933") - g.append("text") + g.append("svg:a") + .attr("xlink:href", function(d) {return "http://$lang.wikipedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) + .append("text") .attr("x", 0) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label.substring(0,maxLabelLength);}) diff --git a/style.css b/style.css index b538cf8..5d6651d 100644 --- a/style.css +++ b/style.css @@ -106,5 +106,5 @@ tt { } a:hover, rect:hover { - opacity: .7; + opacity: .5; } From 38684bfbf6ea2c4166db60bdac4edb4f78be3eb4 Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 11:40:17 -0700 Subject: [PATCH 10/12] less emphasis to chart hovers --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 5d6651d..1d1d9f6 100644 --- a/style.css +++ b/style.css @@ -105,6 +105,10 @@ tt { float: right; } -a:hover, rect:hover { +a:hover { opacity: .5; } + +rect:hover { + opacity: .95; +} From 88593364a4cd3c5608e697b8605c16a732c2db7b Mon Sep 17 00:00:00 2001 From: dartar Date: Sun, 14 Sep 2014 14:42:05 -0700 Subject: [PATCH 11/12] Minor style tweaks --- inc/chart.inc.php | 10 ++++++++-- inc/commons.inc.php | 10 ++++++++-- inc/lang.inc.php | 12 +++++++++--- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/inc/chart.inc.php b/inc/chart.inc.php index 3e40e6a..d674eac 100644 --- a/inc/chart.inc.php +++ b/inc/chart.inc.php @@ -83,11 +83,17 @@ g.append("svg:a") .attr("xlink:href", function(d) {return "http://" + d.label + ".wikipedia.org/w/index.php?title=Special:Search&search=$doip";}) .append("svg:text") - .attr("x", 0) + .attr("x", 10) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label;}) .attr("font-size", "14px") - .style("font-weight", "normal"); + .style("font-weight", "normal") + .attr("opacity", 0) + .transition() + .delay(function(d, i) { return i * 80; }) + .duration(300) + .attr("x", 0) + .attr("opacity", 1) g.append("text") .attr("x", function(d, i) {return barHorizontalPadding +10}) diff --git a/inc/commons.inc.php b/inc/commons.inc.php index fcfe7d4..f9785f9 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -102,11 +102,17 @@ g.append("svg:a") .attr("xlink:href", function(d) {return "http://commons.wikimedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) .append("text") - .attr("x", 0) + .attr("x", 10) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label.substring(0,maxLabelLength);}) .attr("font-size", "14px") - .style("font-weight", "normal"); + .style("font-weight", "normal") + .attr("opacity", 0) + .transition() + .delay(function(d, i) { return i * 80; }) + .duration(300) + .attr("x", 0) + .attr("opacity", 1); g.append("text") .attr("x", function(d, i) {return barHorizontalPadding +10}) diff --git a/inc/lang.inc.php b/inc/lang.inc.php index dee07d2..c600523 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -112,16 +112,22 @@ .delay(function(d, i) { return i * 80; }) .duration(300) .attr("width", function(d, i) {return dx*d.n}) - .style("fill", "#933") + .style("fill", "#933"); g.append("svg:a") .attr("xlink:href", function(d) {return "http://$lang.wikipedia.org/w/index.php?title=Special:Search&search=" + d.doip;}) .append("text") - .attr("x", 0) + .attr("x", 10) .attr("y", function(d, i) {return dy*i + 10;}) .text( function(d) {return d.label.substring(0,maxLabelLength);}) .attr("font-size", "14px") - .style("font-weight", "normal"); + .style("font-weight", "normal") + .attr("opacity", 0) + .transition() + .delay(function(d, i) { return i * 80; }) + .duration(300) + .attr("x", 0) + .attr("opacity", 1); g.append("text") .attr("x", function(d, i) {return barHorizontalPadding +10}) From 9c9f98bd935dacd5be7aa7a88d7d46db4bd39155 Mon Sep 17 00:00:00 2001 From: wrought Date: Sun, 19 Oct 2014 21:39:05 -0700 Subject: [PATCH 12/12] moves script source from d3js to cdnjs. avoids 'insecure content' or 'mixed content' blocks preventing d3.js from load in some browsers --- inc/chart.inc.php | 2 +- inc/commons.inc.php | 2 +- inc/lang.inc.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/chart.inc.php b/inc/chart.inc.php index d674eac..48144cc 100644 --- a/inc/chart.inc.php +++ b/inc/chart.inc.php @@ -19,7 +19,7 @@ Wikipedia Cite-o-Meter: Statistics for $doi[$doip] - +

Wikipedia Cite-o-Meter

diff --git a/inc/commons.inc.php b/inc/commons.inc.php index 0167890..a89f12c 100644 --- a/inc/commons.inc.php +++ b/inc/commons.inc.php @@ -44,7 +44,7 @@ Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikimedia Commons - +

Wikipedia Cite-o-Meter

diff --git a/inc/lang.inc.php b/inc/lang.inc.php index c600523..58f82ef 100644 --- a/inc/lang.inc.php +++ b/inc/lang.inc.php @@ -44,7 +44,7 @@ Wikipedia Cite-o-Meter: Top $max publishers by citations in Wikipedia:$lang - +

Wikipedia Cite-o-Meter