Sha256: 2584acf126f19861af5f3bf1b7c333ab17f9137e77d335336962bbd1cc88cff7

Contents?: true

Size: 586 Bytes

Versions: 127

Compression:

Stored size: 586 Bytes

Contents

#  Copyright 2009 Google Inc. All Rights Reserved.

use URI::Escape;

use constant GA_ACCOUNT => 'ACCOUNT ID GOES HERE';
use constant GA_PIXEL => 'ga.pl';

sub google_analytics_get_image_url {
  my $url = '';
  $url .= GA_PIXEL . '?';
  $url .= 'utmac=' . GA_ACCOUNT;
  $url .= '&utmn=' . int(rand(0x7fffffff));

  my $referer = $ENV{'HTTP_REFERER'};
  my $query = $ENV{'QUERY_STRING'};
  my $path = $ENV{'REQUEST_URI'};

  if ($referer eq "") {
    $referer = '-';
  }

  $url .= '&utmr=' . uri_escape($referer);
  $url .= '&utmp=' . uri_escape($path);
  $url .= '&guid=ON';

  $url;
}

Version data entries

127 entries across 127 versions & 5 rubygems

Version Path
middleman-core-3.4.1 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.4.0 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.12 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.11 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.10 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.9 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.8 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.7 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.6 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.5 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-cj-3.3.6 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-cj-3.3.5 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-cj-3.3.4 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.4 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.3 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.2 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.1 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.3.0 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.2.2 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet
middleman-core-3.2.1 lib/middleman-core/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet