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:
authormattab <matthieu.aubry@gmail.com>2014-07-09 18:34:59 +0400
committermattab <matthieu.aubry@gmail.com>2014-07-09 18:34:59 +0400
commit2d3963b954364784f8ab2d7f186bc2ff62b844a0 (patch)
tree28607a2ef126937af1f36431e9838ee41f93f19c
parent917ec780e616c7184a5e8b284bea11f29660f41c (diff)
Refs #5273 Replace Trac ticket URL to Github
-rw-r--r--config/global.ini.php2
-rw-r--r--core/ArchiveProcessor.php2
-rw-r--r--core/Common.php2
-rw-r--r--core/DataAccess/ArchiveWriter.php2
-rw-r--r--core/Db/Schema/Mysql.php2
-rw-r--r--core/Plugin/ControllerAdmin.php4
-rw-r--r--core/Updates/0.6-rc1.php4
-rw-r--r--core/Updates/1.2-rc1.php2
-rw-r--r--misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php2
-rwxr-xr-xmisc/package/build.sh2
-rw-r--r--plugins/API/ProcessedReport.php2
-rw-r--r--plugins/CoreConsole/Commands/CoreArchiver.php2
-rw-r--r--plugins/CoreHome/angularjs/anchorLinkFix.js2
-rw-r--r--plugins/CoreHome/stylesheets/cloud.less2
-rw-r--r--plugins/ImageGraph/StaticGraph/GridGraph.php2
-rw-r--r--plugins/Live/javascripts/visitorLog.js2
-rw-r--r--plugins/MultiSites/angularjs/dashboard/dashboard-model.js2
-rw-r--r--tests/PHPUnit/Core/ReleaseCheckListTest.php2
-rw-r--r--tests/PHPUnit/Integration/Core/ArchiveProcessingTest.php2
-rwxr-xr-xtests/PHPUnit/Integration/TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php2
-rw-r--r--tests/resources/extractSearchEngineInformationFromUrlTests.yml2
21 files changed, 23 insertions, 23 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 93699eb726..234b4c669d 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -539,7 +539,7 @@ bulk_requests_use_transaction = 1
; Comma separated list of known Referrer Spammers, ie. bot visits that set a fake Referrer field.
; All Visits with a Referrer URL host set to one of these will be excluded.
-; If you find new spam entries in Referrers>Websites, please report them here: http://dev.piwik.org/trac/ticket/5099
+; If you find new spam entries in Referrers>Websites, please report them here: https://github.com/piwik/piwik/issues/5099
referrer_urls_spam = "semalt.com"
; DO NOT USE THIS SETTING ON PUBLICLY AVAILABLE PIWIK SERVER
diff --git a/core/ArchiveProcessor.php b/core/ArchiveProcessor.php
index c15ea5dd54..10374f18c4 100644
--- a/core/ArchiveProcessor.php
+++ b/core/ArchiveProcessor.php
@@ -337,7 +337,7 @@ class ArchiveProcessor
}
if ($dataTable instanceof Map) {
- // see http://dev.piwik.org/trac/ticket/4377
+ // see https://github.com/piwik/piwik/issues/4377
$self = $this;
$dataTable->filter(function ($table) use ($self, $columnsToRenameAfterAggregation) {
$self->renameColumnsAfterAggregation($table, $columnsToRenameAfterAggregation);
diff --git a/core/Common.php b/core/Common.php
index 64bf6926a1..7ac908ad1e 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -1066,7 +1066,7 @@ class Common
/**
* Marks an orphaned object for garbage collection.
*
- * For more information: {@link http://dev.piwik.org/trac/ticket/374}
+ * For more information: {@link https://github.com/piwik/piwik/issues/374}
* @param $var The object to destroy.
* @api
*/
diff --git a/core/DataAccess/ArchiveWriter.php b/core/DataAccess/ArchiveWriter.php
index ad51698d83..f4c8424855 100644
--- a/core/DataAccess/ArchiveWriter.php
+++ b/core/DataAccess/ArchiveWriter.php
@@ -266,7 +266,7 @@ class ArchiveWriter
$tableName = $this->getTableNameToInsert($value);
- // duplicate idarchives are Ignored, see http://dev.piwik.org/trac/ticket/987
+ // duplicate idarchives are Ignored, see https://github.com/piwik/piwik/issues/987
$query = "INSERT IGNORE INTO " . $tableName . "
(" . implode(", ", $this->getInsertFields()) . ")
VALUES (?,?,?,?,?,?,?,?)";
diff --git a/core/Db/Schema/Mysql.php b/core/Db/Schema/Mysql.php
index cfcf02a94b..ea51164215 100644
--- a/core/Db/Schema/Mysql.php
+++ b/core/Db/Schema/Mysql.php
@@ -454,7 +454,7 @@ class Mysql implements SchemaInterface
Db::exec($statement);
} catch (Exception $e) {
// mysql code error 1050:table already exists
- // see bug #153 http://dev.piwik.org/trac/ticket/153
+ // see bug #153 https://github.com/piwik/piwik/issues/153
if (!Db::get()->isErrNo($e, '1050')) {
throw $e;
}
diff --git a/core/Plugin/ControllerAdmin.php b/core/Plugin/ControllerAdmin.php
index 0212a3769c..a8e9b7b1dd 100644
--- a/core/Plugin/ControllerAdmin.php
+++ b/core/Plugin/ControllerAdmin.php
@@ -102,7 +102,7 @@ abstract class ControllerAdmin extends Controller
}
/**
- * See http://dev.piwik.org/trac/ticket/4439#comment:8 and https://github.com/eaccelerator/eaccelerator/issues/12
+ * See https://github.com/piwik/piwik/issues/4439#comment:8 and https://github.com/eaccelerator/eaccelerator/issues/12
*
* Eaccelerator does not support closures and is known to be not comptabile with Piwik. Therefore we are disabling
* it automatically. At this point it looks like Eaccelerator is no longer under development and the bug has not
@@ -125,7 +125,7 @@ abstract class ControllerAdmin extends Controller
$message = sprintf("You are using the PHP accelerator & optimizer eAccelerator which is known to be not compatible with Piwik.
We have disabled eAccelerator, which might affect the performance of Piwik.
Read the %srelated ticket%s for more information and how to fix this problem.",
- '<a target="_blank" href="http://dev.piwik.org/trac/ticket/4439">', '</a>');
+ '<a target="_blank" href="https://github.com/piwik/piwik/issues/4439">', '</a>');
$notification = new Notification($message);
$notification->context = Notification::CONTEXT_WARNING;
diff --git a/core/Updates/0.6-rc1.php b/core/Updates/0.6-rc1.php
index cac08f47d6..5286e7371a 100644
--- a/core/Updates/0.6-rc1.php
+++ b/core/Updates/0.6-rc1.php
@@ -42,8 +42,8 @@ class Updates_0_6_rc1 extends Updates
{
// first we disable the plugins and keep an array of warnings messages
$pluginsToDisableMessage = array(
- 'SearchEnginePosition' => "SearchEnginePosition plugin was disabled, because it is not compatible with the new Piwik 0.6. \n You can download the latest version of the plugin, compatible with Piwik 0.6.\n<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/ticket/502'>Click here.</a>",
- 'GeoIP' => "GeoIP plugin was disabled, because it is not compatible with the new Piwik 0.6. \nYou can download the latest version of the plugin, compatible with Piwik 0.6.\n<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/ticket/45'>Click here.</a>"
+ 'SearchEnginePosition' => "SearchEnginePosition plugin was disabled, because it is not compatible with the new Piwik 0.6. \n You can download the latest version of the plugin, compatible with Piwik 0.6.\n<a target='_blank' href='?module=Proxy&action=redirect&url=https://github.com/piwik/piwik/issues/502'>Click here.</a>",
+ 'GeoIP' => "GeoIP plugin was disabled, because it is not compatible with the new Piwik 0.6. \nYou can download the latest version of the plugin, compatible with Piwik 0.6.\n<a target='_blank' href='?module=Proxy&action=redirect&url=https://github.com/piwik/piwik/issues/45'>Click here.</a>"
);
$disabledPlugins = array();
foreach ($pluginsToDisableMessage as $pluginToDisable => $warningMessage) {
diff --git a/core/Updates/1.2-rc1.php b/core/Updates/1.2-rc1.php
index 7d9a200a75..1e1862a432 100644
--- a/core/Updates/1.2-rc1.php
+++ b/core/Updates/1.2-rc1.php
@@ -123,7 +123,7 @@ class Updates_1_2_rc1 extends Updates
{
// first we disable the plugins and keep an array of warnings messages
$pluginsToDisableMessage = array(
- 'GeoIP' => "GeoIP plugin was disabled, because it is not compatible with the new Piwik 1.2. \nYou can download the latest version of the plugin, compatible with Piwik 1.2.\n<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/ticket/45'>Click here.</a>",
+ 'GeoIP' => "GeoIP plugin was disabled, because it is not compatible with the new Piwik 1.2. \nYou can download the latest version of the plugin, compatible with Piwik 1.2.\n<a target='_blank' href='?module=Proxy&action=redirect&url=https://github.com/piwik/piwik/issues/45'>Click here.</a>",
'EntryPage' => "EntryPage plugin is not compatible with this version of Piwik, it was disabled.",
);
$disabledPlugins = array();
diff --git a/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php b/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php
index 70040f497e..b8030333a2 100644
--- a/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php
+++ b/misc/others/test_cookies_GenerateHundredsWebsitesAndVisits.php
@@ -1,6 +1,6 @@
<?php
// Script that creates 100 websites, then outputs a IMG that records a pageview in each website
-// Used initially to test how to handle cookies for this use case (see http://dev.piwik.org/trac/ticket/409)
+// Used initially to test how to handle cookies for this use case (see https://github.com/piwik/piwik/issues/409)
use Piwik\Common;
use Piwik\FrontController;
use Piwik\Piwik;
diff --git a/misc/package/build.sh b/misc/package/build.sh
index de6ae59d99..35b230f47a 100755
--- a/misc/package/build.sh
+++ b/misc/package/build.sh
@@ -104,7 +104,7 @@ fi
echo "Starting build...."
############################
-# Setting umask so it works for most users, see http://dev.piwik.org/trac/ticket/3869
+# Setting umask so it works for most users, see https://github.com/piwik/piwik/issues/3869
UMASK=`umask`
umask 0022
diff --git a/plugins/API/ProcessedReport.php b/plugins/API/ProcessedReport.php
index 4ffdb697ee..bf8488c410 100644
--- a/plugins/API/ProcessedReport.php
+++ b/plugins/API/ProcessedReport.php
@@ -667,7 +667,7 @@ class ProcessedReport
// generate 'human readable' metric values
// if we handle MultiSites.getAll we do not always have the same idSite but different ones for
- // each site, see http://dev.piwik.org/trac/ticket/5006
+ // each site, see https://github.com/piwik/piwik/issues/5006
$idSiteForRow = $idSite;
if ($row->getMetadata('idsite') && is_numeric($row->getMetadata('idsite'))) {
$idSiteForRow = (int) $row->getMetadata('idsite');
diff --git a/plugins/CoreConsole/Commands/CoreArchiver.php b/plugins/CoreConsole/Commands/CoreArchiver.php
index 570b1dc74d..89b6bd9a9b 100644
--- a/plugins/CoreConsole/Commands/CoreArchiver.php
+++ b/plugins/CoreConsole/Commands/CoreArchiver.php
@@ -31,7 +31,7 @@ class CoreArchiver extends ConsoleCommand
}
if (is_string($url) && $url && in_array($url, array('http://', 'https://'))) {
- // see http://dev.piwik.org/trac/ticket/5180 and http://forum.piwik.org/read.php?2,115274
+ // see https://github.com/piwik/piwik/issues/5180 and http://forum.piwik.org/read.php?2,115274
throw new \InvalidArgumentException('No valid URL given. If you have specified a valid URL try --piwik-domain instead of --url');
}
diff --git a/plugins/CoreHome/angularjs/anchorLinkFix.js b/plugins/CoreHome/angularjs/anchorLinkFix.js
index 9764d362ba..59d8114a56 100644
--- a/plugins/CoreHome/angularjs/anchorLinkFix.js
+++ b/plugins/CoreHome/angularjs/anchorLinkFix.js
@@ -6,7 +6,7 @@
*/
/**
- * See http://dev.piwik.org/trac/ticket/4795 "linking to #hash tag does not work after merging AngularJS"
+ * See https://github.com/piwik/piwik/issues/4795 "linking to #hash tag does not work after merging AngularJS"
*/
(function () {
diff --git a/plugins/CoreHome/stylesheets/cloud.less b/plugins/CoreHome/stylesheets/cloud.less
index fc71f9650d..a0750c6497 100644
--- a/plugins/CoreHome/stylesheets/cloud.less
+++ b/plugins/CoreHome/stylesheets/cloud.less
@@ -1,6 +1,6 @@
@-moz-document url-prefix() {
// see bug in Firefox 30+
- // http://dev.piwik.org/trac/ticket/5242
+ // https://github.com/piwik/piwik/issues/5242
// https://bugzilla.mozilla.org/show_bug.cgi?id=1012640
.tagCloud + .dataTableFeatures {
clear: left;
diff --git a/plugins/ImageGraph/StaticGraph/GridGraph.php b/plugins/ImageGraph/StaticGraph/GridGraph.php
index b136f80ed0..3eeb1393db 100644
--- a/plugins/ImageGraph/StaticGraph/GridGraph.php
+++ b/plugins/ImageGraph/StaticGraph/GridGraph.php
@@ -416,7 +416,7 @@ abstract class GridGraph extends StaticGraph
// can not currently be used because pChart's label design is not flexible enough
// e.g: it is not possible to remove the box border & the square icon
// it would require modifying pChart code base which we try to avoid
- // see http://dev.piwik.org/trac/ticket/3396
+ // see https://github.com/piwik/piwik/issues/3396
// protected function displayMinMaxValues()
// {
// if($displayMinMax)
diff --git a/plugins/Live/javascripts/visitorLog.js b/plugins/Live/javascripts/visitorLog.js
index 0b5f8fefbb..3f30f9e9ab 100644
--- a/plugins/Live/javascripts/visitorLog.js
+++ b/plugins/Live/javascripts/visitorLog.js
@@ -64,7 +64,7 @@
var tooltipIsOpened = false;
$('a', $this).on('focus', function () {
- // see http://dev.piwik.org/trac/ticket/4099
+ // see https://github.com/piwik/piwik/issues/4099
if (tooltipIsOpened) {
$this.tooltip('close');
}
diff --git a/plugins/MultiSites/angularjs/dashboard/dashboard-model.js b/plugins/MultiSites/angularjs/dashboard/dashboard-model.js
index 802e1dfe8f..52c66bd687 100644
--- a/plugins/MultiSites/angularjs/dashboard/dashboard-model.js
+++ b/plugins/MultiSites/angularjs/dashboard/dashboard-model.js
@@ -97,7 +97,7 @@ angular.module('piwikApp').factory('multisitesDashboardModel', function (piwikAp
site.idsite = reportMetadata[index].idsite;
site.group = reportMetadata[index].group;
site.main_url = reportMetadata[index].main_url;
- // casting evolution to int fixes sorting, see: http://dev.piwik.org/trac/ticket/4885
+ // casting evolution to int fixes sorting, see: https://github.com/piwik/piwik/issues/4885
site.visits_evolution = parseInt(site.visits_evolution, 10);
site.pageviews_evolution = parseInt(site.pageviews_evolution, 10);
site.revenue_evolution = parseInt(site.revenue_evolution, 10);
diff --git a/tests/PHPUnit/Core/ReleaseCheckListTest.php b/tests/PHPUnit/Core/ReleaseCheckListTest.php
index 67dc9efe28..97aeace84a 100644
--- a/tests/PHPUnit/Core/ReleaseCheckListTest.php
+++ b/tests/PHPUnit/Core/ReleaseCheckListTest.php
@@ -306,7 +306,7 @@ class ReleaseCheckListTest extends PHPUnit_Framework_TestCase
public function testPiwikJavaScript()
{
// check source against Snort rule 8443
- // @see http://dev.piwik.org/trac/ticket/2203
+ // @see https://github.com/piwik/piwik/issues/2203
$pattern = '/\x5b\x5c{2}.*\x5c{2}[\x22\x27]/';
$contents = file_get_contents(PIWIK_DOCUMENT_ROOT . '/js/piwik.js');
diff --git a/tests/PHPUnit/Integration/Core/ArchiveProcessingTest.php b/tests/PHPUnit/Integration/Core/ArchiveProcessingTest.php
index e970ec9769..a87ee6dd8f 100644
--- a/tests/PHPUnit/Integration/Core/ArchiveProcessingTest.php
+++ b/tests/PHPUnit/Integration/Core/ArchiveProcessingTest.php
@@ -335,7 +335,7 @@ class Core_ArchiveProcessingTest extends DatabaseTestCase
. ' The error Messages from MySQL were: '
. $didWeUseBulk
. "\n\n Learn more how to enable LOAD LOCAL DATA INFILE see the Mysql doc (http://dev.mysql.com/doc/refman/5.0/en/load-data-local.html) "
- . "\n or ask in this Piwik ticket (http://dev.piwik.org/trac/ticket/3605)"
+ . "\n or ask in this Piwik ticket (https://github.com/piwik/piwik/issues/3605)"
);
}
return $didWeUseBulk;
diff --git a/tests/PHPUnit/Integration/TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php b/tests/PHPUnit/Integration/TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php
index cc142c27be..b5101d08a0 100755
--- a/tests/PHPUnit/Integration/TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php
+++ b/tests/PHPUnit/Integration/TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php
@@ -60,7 +60,7 @@ class TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest extends Integrati
'testSuffix' => '_disabledAfter')),
- // Testing this particular bug: http://dev.piwik.org/trac/ticket/4532
+ // Testing this particular bug: https://github.com/piwik/piwik/issues/4532
// ENABLE ARCHIVING and Process this custom date range.
array('VisitsSummary.get', array('idSite' => 'all',
'date' => $dateRange,
diff --git a/tests/resources/extractSearchEngineInformationFromUrlTests.yml b/tests/resources/extractSearchEngineInformationFromUrlTests.yml
index 60daf9da83..5be88676d4 100644
--- a/tests/resources/extractSearchEngineInformationFromUrlTests.yml
+++ b/tests/resources/extractSearchEngineInformationFromUrlTests.yml
@@ -32,7 +32,7 @@
keywords: '<> &test; piwik &quot;'
# testing Baidu special case (several variable names possible, and custom encoding)
-# see http://dev.piwik.org/trac/ticket/589
+# see https://github.com/piwik/piwik/issues/589
# keyword is in "wd"
- url: 'http://www.baidu.com/s?ie=gb2312&bs=%BF%D5%BC%E4+hao123+%7C+%B8%FC%B6%E0%3E%3E&sr=&z=&cl=3&f=8&tn=baidu&wd=%BF%D5%BC%E4+%BA%C3123+%7C+%B8%FC%B6%E0%3E%3E&ct=0'