update Piwik to version 2.16 (fixes #91)

This commit is contained in:
oliver 2016-04-10 18:55:57 +02:00
commit d885a4baa9
5833 changed files with 418860 additions and 226988 deletions

View file

@ -5,7 +5,7 @@
<div align="left" class="mediumtext">
{{ 'Installation_SetupWebSiteURL'|translate|capitalize }}
<input type="text" id="seoUrl" size="15" value="{{ urlToRank }}" class="textbox"/>
<span style="padding-left:2px;">
<span style="padding-left:2px;">
<input type="submit" id="rankbutton" value="{{ 'SEO_Rank'|translate }}"/>
</span>
</div>
@ -18,29 +18,26 @@
{{ 'General_Error'|translate }}
{% else %}
{% set cleanUrl %}
<a href="http://{{ urlToRank }}" target="_blank">{{ urlToRank }}</a>
<a href="http://{{ urlToRank }}" rel="noreferrer" target="_blank">{{ urlToRank }}</a>
{% endset %}
{{ 'SEO_SEORankingsFor'|translate(cleanUrl)|raw }}
<table cellspacing="2" style="margin:auto;line-height:1.5em;padding-top:10px;">
{% for rank in ranks %}
<tr>
{% set seoLink %}{% if rank.logo_link is defined %}<a class="linkContent" href="?module=Proxy&action=redirect&url={{ rank.logo_link|url_encode }}"
{% set seoLink %}{% if rank.logo_link is not empty %}<a class="linkContent" href="?module=Proxy&action=redirect&url={{ rank.logo_link|url_encode }}"
target="_blank"
{% if rank.logo_tooltip is not empty %}title="{{ rank.logo_tooltip }}"{% endif %}>{% endif %}{% endset %}
{% set majesticLink %}{{ seoLink }}Majestic</a>{% endset %}
<td>{% if rank.logo_link is defined %}{{ seoLink|raw }}{% endif %}<img
<td>{% if rank.logo_link is not empty %}{{ seoLink|raw }}{% endif %}<img
style='vertical-align:middle;margin-right:6px;' src='{{ rank.logo }}' border='0'
alt="{{ rank.label }}">{% if rank.logo_link is defined %}</a>{% endif %} {{ rank.label|replace({"Majestic":
majesticLink})|raw }}
alt="{{ rank.label }}">{% if rank.logo_link is not empty %}</a>{% endif %} {{ rank.label|raw }}
</td>
<td>
<div style="margin-left:15px;">
{% if rank.logo_link is defined %}{{ seoLink|raw }}{% endif %}
{% if rank.logo_link is not empty %}{{ seoLink|raw }}{% endif %}
{% if rank.rank %}{{ rank.rank|raw }}{% else %}-{% endif %}
{% if rank.id=='pagerank' %} /10
{% elseif rank.id=='google-index' or rank.id=='bing-index' %} {{ 'General_Pages'|translate }}
{% endif %}
{% if rank.logo_link is defined %}</a>{% endif %}
{{ rank.rank_suffix }}
{% if rank.logo_link is not empty %}</a>{% endif %}
</div>
</td>
</tr>