Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-12-14 18:57:40 +0300
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-12-14 18:57:40 +0300
commit47a2ecd21a3d7a352a6c65c2334b6fd8a4296f5a (patch)
tree90a9f51b80a64e3b52e50f158270d4c979d8b383 /plugins
parent778c09540f19812342f274b0632846d596468bc4 (diff)
Plugins page: use redirectToUrl on external links
Diffstat (limited to 'plugins')
-rw-r--r--plugins/API/API.php3
-rw-r--r--plugins/CorePluginsAdmin/templates/manage.tpl2
-rw-r--r--plugins/ExampleAPI/ExampleAPI.php3
-rw-r--r--plugins/MultiSites/MultiSites.php6
4 files changed, 8 insertions, 6 deletions
diff --git a/plugins/API/API.php b/plugins/API/API.php
index 4b0d33bf0f..86ca6a9b02 100644
--- a/plugins/API/API.php
+++ b/plugins/API/API.php
@@ -20,7 +20,8 @@ class Piwik_API extends Piwik_Plugin
{
return array(
'name' => 'API',
- 'description' => 'All the data in Piwik is available through simple APIs. This plugin is the web service entry point, that you can call to get your Web Analytics data in xml, json, php, csv, etc. Discover the <a href="http://dev.piwik.org/trac/wiki/API/Reference">Piwik APIs</a>.',
+ 'description' => 'All the data in Piwik is available through simple APIs. This plugin is the web service entry point, that you can call to get your Web Analytics data in xml, json, php, csv, etc.</a>.',
+ 'homepage' => 'misc/redirectToUrl.php?url=http://dev.piwik.org/trac/wiki/API/Reference',
'author' => 'Piwik',
'author_homepage' => 'http://piwik.org/',
'version' => Piwik_Version::VERSION,
diff --git a/plugins/CorePluginsAdmin/templates/manage.tpl b/plugins/CorePluginsAdmin/templates/manage.tpl
index c77eea691e..f2bef2ed0e 100644
--- a/plugins/CorePluginsAdmin/templates/manage.tpl
+++ b/plugins/CorePluginsAdmin/templates/manage.tpl
@@ -30,7 +30,7 @@
<td class="desc">
{$plugin.info.description|nl2br}
&nbsp;<cite>By
- {if isset($plugin.info.author_homepage)}<a title="Author Homepage" href="{$plugin.info.author_homepage}">{/if}
+ {if isset($plugin.info.author_homepage)}<a title="Author Homepage" href="misc/redirectToUrl.php?url={$plugin.info.author_homepage}">{/if}
{$plugin.info.author}{if isset($plugin.info.author_homepage)}</a>{/if}.</cite>
</td>
<td class="status">
diff --git a/plugins/ExampleAPI/ExampleAPI.php b/plugins/ExampleAPI/ExampleAPI.php
index 0b04ea68ad..68aa95af2f 100644
--- a/plugins/ExampleAPI/ExampleAPI.php
+++ b/plugins/ExampleAPI/ExampleAPI.php
@@ -25,7 +25,8 @@ class Piwik_ExampleAPI extends Piwik_Plugin
{
return array(
'name' => 'Example API',
- 'description' => 'Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding? Visit the <a href="index.php?module=API&action=listAllAPI#ExampleAPI">ExampleAPI example methods</a>.',
+ 'description' => 'Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding?',
+ 'homepage' => 'index.php?module=API&action=listAllAPI#ExampleAPI',
'author' => 'Piwik',
'author_homepage' => 'http://piwik.org/',
'version' => '0.1',
diff --git a/plugins/MultiSites/MultiSites.php b/plugins/MultiSites/MultiSites.php
index 53beb6ea55..381e934437 100644
--- a/plugins/MultiSites/MultiSites.php
+++ b/plugins/MultiSites/MultiSites.php
@@ -20,9 +20,9 @@ class Piwik_MultiSites extends Piwik_Plugin
{
return array(
'name' => 'MultiSites',
- 'description' => 'Displays multi-site executive summary/statistics. Developed by Brand New Media LLC. Currently maintained as a core Piwik plugin.',
- 'author' => 'Piwik',
- 'author_homepage' => "http://piwik.org/",
+ 'description' => 'Displays multi-site executive summary/statistics. Currently maintained as a core Piwik plugin.',
+ 'author' => 'Brand New Media LLC',
+ 'author_homepage' => "http://blogvertising.pl/",
'version' => Piwik_Version::VERSION,
);
}