-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(https): Changed even more links from http to https
fix #42
- Loading branch information
1 parent
569836b
commit f72cedd
Showing
84 changed files
with
306 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* http://timpietrusky.com | ||
* https://timpietrusky.com | ||
* @author Tim Pietrusky | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ | |
* | ||
* Google Analytics is a registered trademark of Google Inc. | ||
* | ||
* @link http://code.google.com/p/php-ga | ||
* @link https://code.google.com/p/php-ga | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.html | ||
* @license https://www.gnu.org/licenses/lgpl.html | ||
* @author Thomas Bachem <[email protected]> | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com) | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (https://unitedprototype.com) | ||
*/ | ||
|
||
namespace UnitedPrototype\GoogleAnalytics; | ||
|
@@ -166,18 +166,18 @@ public function __construct($type) { | |
$this->type = $type; | ||
|
||
switch($type) { | ||
// See http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#375 | ||
// See https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#375 | ||
case self::TYPE_DIRECT: | ||
$this->name = '(direct)'; | ||
$this->source = '(direct)'; | ||
$this->medium = '(none)'; | ||
break; | ||
// See http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#340 | ||
// See https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#340 | ||
case self::TYPE_REFERRAL: | ||
$this->name = '(referral)'; | ||
$this->medium = 'referral'; | ||
break; | ||
// See http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#280 | ||
// See https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#280 | ||
case self::TYPE_ORGANIC: | ||
$this->name = '(organic)'; | ||
$this->medium = 'organic'; | ||
|
@@ -188,7 +188,7 @@ public function __construct($type) { | |
} | ||
|
||
/** | ||
* @link http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#333 | ||
* @link https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignManager.as#333 | ||
* @param string $url | ||
* @return \UnitedPrototype\GoogleAnalytics\Campaign | ||
*/ | ||
|
@@ -202,7 +202,7 @@ public static function createFromReferrer($url) { | |
} | ||
|
||
/** | ||
* @link http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignTracker.as#153 | ||
* @link https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/campaign/CampaignTracker.as#153 | ||
*/ | ||
public function validate() { | ||
// NOTE: gaforflash states that id and gClickId must also be specified, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ | |
* | ||
* Google Analytics is a registered trademark of Google Inc. | ||
* | ||
* @link http://code.google.com/p/php-ga | ||
* @link https://code.google.com/p/php-ga | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.html | ||
* @license https://www.gnu.org/licenses/lgpl.html | ||
* @author Thomas Bachem <[email protected]> | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com) | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (https://unitedprototype.com) | ||
*/ | ||
|
||
namespace UnitedPrototype\GoogleAnalytics; | ||
|
@@ -32,7 +32,7 @@ | |
* Note: Doesn't necessarily have to be consistent across requests, as it doesn't | ||
* alter the actual tracking result. | ||
* | ||
* @link http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/core/GIFRequest.as | ||
* @link https://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/core/GIFRequest.as | ||
*/ | ||
class Config { | ||
|
||
|
@@ -127,7 +127,7 @@ class Config { | |
* the last IP address block, will be mapped to "aip" parameter | ||
* | ||
* @see Internals\ParameterHolder::$aip | ||
* @link http://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp | ||
* @link https://code.google.com/apis/analytics/docs/gaJS/gaJSApi_gat.html#_gat._anonymizeIp | ||
* @var bool | ||
*/ | ||
protected $anonymizeIpAddresses = false; | ||
|
@@ -138,7 +138,7 @@ class Config { | |
* the Site Speed metrics are derived. | ||
* | ||
* @see Page::$loadTime | ||
* @link http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._setSiteSpeedSampleRate | ||
* @link https://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._setSiteSpeedSampleRate | ||
* @var int | ||
*/ | ||
protected $sitespeedSampleRate = 1; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,19 +19,19 @@ | |
* | ||
* Google Analytics is a registered trademark of Google Inc. | ||
* | ||
* @link http://code.google.com/p/php-ga | ||
* @link https://code.google.com/p/php-ga | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.html | ||
* @license https://www.gnu.org/licenses/lgpl.html | ||
* @author Thomas Bachem <[email protected]> | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com) | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (https://unitedprototype.com) | ||
*/ | ||
|
||
namespace UnitedPrototype\GoogleAnalytics; | ||
|
||
use UnitedPrototype\GoogleAnalytics\Internals\Util; | ||
|
||
/** | ||
* @link http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html | ||
* @link https://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html | ||
*/ | ||
class CustomVariable { | ||
|
||
|
@@ -45,7 +45,7 @@ class CustomVariable { | |
* in custom variable names and values properly, so spaces will show up | ||
* as "%20" in the interface etc. | ||
* | ||
* @link http://www.google.com/support/forum/p/Google%20Analytics/thread?tid=2cdb3ec0be32e078 | ||
* @link https://www.google.com/support/forum/p/Google%20Analytics/thread?tid=2cdb3ec0be32e078 | ||
* @var string | ||
*/ | ||
protected $name; | ||
|
@@ -55,7 +55,7 @@ class CustomVariable { | |
* in custom variable names and values properly, so spaces will show up | ||
* as "%20" in the interface etc. | ||
* | ||
* @link http://www.google.com/support/forum/p/Google%20Analytics/thread?tid=2cdb3ec0be32e078 | ||
* @link https://www.google.com/support/forum/p/Google%20Analytics/thread?tid=2cdb3ec0be32e078 | ||
* @var mixed | ||
*/ | ||
protected $value; | ||
|
@@ -98,10 +98,10 @@ public function __construct($index = null, $name = null, $value = null, $scope = | |
public function validate() { | ||
// According to the GA documentation, there is a limit to the combined size of | ||
// name and value of 64 bytes after URL encoding, | ||
// see http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#varTypes | ||
// and http://xahlee.org/js/google_analytics_tracker_2010-07-01_expanded.js line 563 | ||
// see https://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#varTypes | ||
// and https://xahlee.org/js/google_analytics_tracker_2010-07-01_expanded.js line 563 | ||
// This limit was increased to 128 bytes BEFORE encoding with the 2012-01 release of ga.js however, | ||
// see http://code.google.com/apis/analytics/community/gajs_changelog.html | ||
// see https://code.google.com/apis/analytics/community/gajs_changelog.html | ||
if(strlen($this->name . $this->value) > 128) { | ||
Tracker::_raiseError('Custom Variable combined name and value length must not be larger than 128 bytes.', __METHOD__); | ||
} | ||
|
@@ -115,13 +115,13 @@ public function getIndex() { | |
} | ||
|
||
/** | ||
* @link http://code.google.com/intl/de-DE/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#usage | ||
* @link https://code.google.com/intl/de-DE/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#usage | ||
* @param int $index | ||
*/ | ||
public function setIndex($index) { | ||
// Custom Variables are limited to five slots officially, but there seems to be a | ||
// trick to allow for more of them which we could investigate at a later time (see | ||
// http://analyticsimpact.com/2010/05/24/get-more-than-5-custom-variables-in-google-analytics/) | ||
// https://analyticsimpact.com/2010/05/24/get-more-than-5-custom-variables-in-google-analytics/) | ||
if($index < 1 || $index > 5) { | ||
Tracker::_raiseError('Custom Variable index has to be between 1 and 5.', __METHOD__); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,18 +19,18 @@ | |
* | ||
* Google Analytics is a registered trademark of Google Inc. | ||
* | ||
* @link http://code.google.com/p/php-ga | ||
* @link https://code.google.com/p/php-ga | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.html | ||
* @license https://www.gnu.org/licenses/lgpl.html | ||
* @author Thomas Bachem <[email protected]> | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com) | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (https://unitedprototype.com) | ||
*/ | ||
|
||
namespace UnitedPrototype\GoogleAnalytics; | ||
|
||
/** | ||
* @link http://code.google.com/apis/analytics/docs/tracking/eventTrackerOverview.html | ||
* @link http://code.google.com/apis/analytics/docs/gaJS/gaJSApiEventTracking.html | ||
* @link https://code.google.com/apis/analytics/docs/tracking/eventTrackerOverview.html | ||
* @link https://code.google.com/apis/analytics/docs/gaJS/gaJSApiEventTracking.html | ||
*/ | ||
class Event { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ | |
* | ||
* Google Analytics is a registered trademark of Google Inc. | ||
* | ||
* @link http://code.google.com/p/php-ga | ||
* @link https://code.google.com/p/php-ga | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.html | ||
* @license https://www.gnu.org/licenses/lgpl.html | ||
* @author Thomas Bachem <[email protected]> | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com) | ||
* @copyright Copyright (c) 2010 United Prototype GmbH (https://unitedprototype.com) | ||
*/ | ||
|
||
namespace UnitedPrototype\GoogleAnalytics; | ||
|
Oops, something went wrong.