middleman 2.0.9.pre.2-x86-mingw32 → 2.0.9.pre.3-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +9 -0
- data/features/builder.feature +6 -0
- data/features/data.feature +16 -1
- data/features/fonts.feature +11 -0
- data/features/relative_assets.feature +8 -2
- data/features/step_definitions/middleman_steps.rb +9 -2
- data/fixtures/data-app/config.rb +3 -0
- data/fixtures/data-app/data/pages.yml +6 -0
- data/fixtures/data-app/source/index.html.haml +1 -0
- data/fixtures/data-app/source/layout.haml +3 -0
- data/fixtures/fonts-app/config.rb +0 -0
- data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
- data/fixtures/fonts-app/source/stylesheets/fonts.css.sass +3 -0
- data/fixtures/glob-app/config.rb +1 -0
- data/fixtures/glob-app/source/index.html.haml +6 -0
- data/fixtures/glob-app/source/stylesheets/site.css.sass +1 -0
- data/fixtures/test-app/config.rb +1 -0
- data/fixtures/test-app/data/test2.json +4 -0
- data/fixtures/test-app/source/data3.html.erb +1 -0
- data/lib/middleman/base.rb +8 -3
- data/lib/middleman/builder.rb +61 -22
- data/lib/middleman/cli.rb +2 -1
- data/lib/middleman/core_extensions/assets.rb +1 -1
- data/lib/middleman/core_extensions/compass.rb +6 -2
- data/lib/middleman/core_extensions/data.rb +20 -3
- data/lib/middleman/templates/html5.rb +1 -0
- data/lib/middleman/templates/mobile.rb +17 -0
- data/lib/middleman/templates/mobile/source/404.html +38 -0
- data/lib/middleman/templates/mobile/source/README.markdown +64 -0
- data/lib/middleman/templates/mobile/source/crossdomain.xml +25 -0
- data/lib/middleman/templates/mobile/source/css/style.css +236 -0
- data/lib/middleman/templates/mobile/source/default.appcache +17 -0
- data/lib/middleman/templates/mobile/source/humans.txt +43 -0
- data/lib/middleman/templates/mobile/source/img/h/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/h/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon-precomposed.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/img/l/splash.png +0 -0
- data/lib/middleman/templates/mobile/source/img/m/apple-touch-icon.png +0 -0
- data/lib/middleman/templates/mobile/source/index.html +95 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.js +8316 -0
- data/lib/middleman/templates/mobile/source/js/libs/jquery-1.5.1.min.js +16 -0
- data/lib/middleman/templates/mobile/source/js/libs/modernizr-custom.js +14 -0
- data/lib/middleman/templates/mobile/source/js/libs/respond.min.js +7 -0
- data/lib/middleman/templates/mobile/source/js/mylibs/helper.js +147 -0
- data/lib/middleman/templates/mobile/source/js/script.js +0 -0
- data/lib/middleman/templates/mobile/source/robots.txt +5 -0
- data/lib/middleman/templates/mobile/source/sitemap.xml +10 -0
- data/lib/middleman/templates/mobile/source/test/index.html +31 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.css +148 -0
- data/lib/middleman/templates/mobile/source/test/qunit/qunit.js +1265 -0
- data/lib/middleman/templates/mobile/source/test/tests.js +26 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/Readme.PDF +0 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx1.snippet +31 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/aspx2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/ga.aspx +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/aspx/sample.aspx +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/ga.jsp +225 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp1.snippet +35 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/jsp2.snippet +2 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/jsp/sample.jsp +51 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/ga.php +176 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php1.snippet +30 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/php2.snippet +4 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/php/sample.php +44 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/ga.pl +195 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl1.snippet +27 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/perl2.snippet +1 -0
- data/lib/middleman/templates/mobile/source/tools/googleanalyticsformobile/pl/sample.pl +38 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/COPYING +202 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/bookmark_bubble.js +559 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.html +43 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/example/example.js +57 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/arrow.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/close.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/generate_base64_images +33 -0
- data/lib/middleman/templates/mobile/source/tools/mobile-bookmark-bubble/images/icon_calendar.png +0 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/README +27 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/databasefactory.js +45 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker.js +324 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworker_test.html +393 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbworkerstarter.js +32 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears.js +595 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_gears_test.html +404 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5.js +203 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapper_html5_test.html +468 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi.js +202 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/dbwrapperapi_test.html +51 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset.js +71 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_resultset_test.html +86 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction.js +196 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gears_transaction_test.html +221 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils.js +94 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/gearsutils_test.html +84 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/global_functions.js +72 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/index.html +347 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/simplenotes.js +503 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/styles.css +66 -0
- data/lib/middleman/templates/mobile/source/tools/wspl/simplenotes/template.js +75 -0
- data/lib/middleman/version.rb +1 -1
- data/middleman-x86-mingw32.gemspec +0 -1
- data/middleman.gemspec +3 -2
- metadata +103 -6
- data/lib/middleman/config.ru +0 -2
- data/lib/middleman/features/tiny_src.rb +0 -11
@@ -0,0 +1,26 @@
|
|
1
|
+
// documentation on writing tests here: http://docs.jquery.com/QUnit
|
2
|
+
// example tests: https://github.com/jquery/qunit/blob/master/test/same.js
|
3
|
+
|
4
|
+
// below are some general tests but feel free to delete them.
|
5
|
+
|
6
|
+
module("example tests");
|
7
|
+
test('HTML5 Boilerplate is sweet',function(){
|
8
|
+
expect(1);
|
9
|
+
equals('boilerplate'.replace('boilerplate','sweet'),'sweet','Yes. HTML5 Boilerplate is, in fact, sweet');
|
10
|
+
|
11
|
+
})
|
12
|
+
|
13
|
+
// these test things from plugins.js
|
14
|
+
test('Environment is good',function(){
|
15
|
+
expect(3);
|
16
|
+
ok( !!window.log, 'log function present');
|
17
|
+
|
18
|
+
var history = log.history && log.history.length || 0;
|
19
|
+
log('logging from the test suite.')
|
20
|
+
equals( log.history.length - history, 1, 'log history keeps track' )
|
21
|
+
|
22
|
+
ok( !!window.Modernizr, 'Modernizr global is present')
|
23
|
+
})
|
24
|
+
|
25
|
+
|
26
|
+
|
Binary file
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<%@ Page Language="C#" %>
|
2
|
+
<script language="C#" runat="server">
|
3
|
+
// Copyright 2009 Google Inc. All Rights Reserved.
|
4
|
+
private const string GaAccount = "ACCOUNT ID GOES HERE";
|
5
|
+
private const string GaPixel = "ga.aspx";
|
6
|
+
|
7
|
+
private string GoogleAnalyticsGetImageUrl() {
|
8
|
+
System.Text.StringBuilder url = new System.Text.StringBuilder();
|
9
|
+
url.Append(GaPixel + "?");
|
10
|
+
url.Append("utmac=").Append(GaAccount);
|
11
|
+
|
12
|
+
Random RandomClass = new Random();
|
13
|
+
url.Append("&utmn=").Append(RandomClass.Next(0x7fffffff));
|
14
|
+
|
15
|
+
string referer = "-";
|
16
|
+
if (Request.UrlReferrer != null
|
17
|
+
&& "" != Request.UrlReferrer.ToString()) {
|
18
|
+
referer = Request.UrlReferrer.ToString();
|
19
|
+
}
|
20
|
+
url.Append("&utmr=").Append(HttpUtility.UrlEncode(referer));
|
21
|
+
|
22
|
+
if (HttpContext.Current.Request.Url != null) {
|
23
|
+
url.Append("&utmp=").Append(HttpUtility.UrlEncode(Request.Url.PathAndQuery));
|
24
|
+
}
|
25
|
+
|
26
|
+
url.Append("&guid=ON");
|
27
|
+
|
28
|
+
return url.ToString();
|
29
|
+
}
|
30
|
+
</script>
|
31
|
+
|
@@ -0,0 +1,195 @@
|
|
1
|
+
<% @Page Language="C#" ContentType="image/gif"%><%
|
2
|
+
@Import Namespace="System.Net" %><%
|
3
|
+
@Import Namespace="System.Security.Cryptography" %><%
|
4
|
+
@Import Namespace="System.Text" %><script runat="server" language="c#">
|
5
|
+
/**
|
6
|
+
Copyright 2009 Google Inc. All Rights Reserved.
|
7
|
+
**/
|
8
|
+
|
9
|
+
// Tracker version.
|
10
|
+
private const string Version = "4.4sa";
|
11
|
+
|
12
|
+
private const string CookieName = "__utmmobile";
|
13
|
+
|
14
|
+
// The path the cookie will be available to, edit this to use a different
|
15
|
+
// cookie path.
|
16
|
+
private const string CookiePath = "/";
|
17
|
+
|
18
|
+
// Two years in seconds.
|
19
|
+
private readonly TimeSpan CookieUserPersistence = TimeSpan.FromSeconds(63072000);
|
20
|
+
|
21
|
+
// 1x1 transparent GIF
|
22
|
+
private readonly byte[] GifData = {
|
23
|
+
0x47, 0x49, 0x46, 0x38, 0x39, 0x61,
|
24
|
+
0x01, 0x00, 0x01, 0x00, 0x80, 0xff,
|
25
|
+
0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
|
26
|
+
0x00, 0x2c, 0x00, 0x00, 0x00, 0x00,
|
27
|
+
0x01, 0x00, 0x01, 0x00, 0x00, 0x02,
|
28
|
+
0x02, 0x44, 0x01, 0x00, 0x3b
|
29
|
+
};
|
30
|
+
|
31
|
+
private static readonly Regex IpAddressMatcher =
|
32
|
+
new Regex(@"^([^.]+\.[^.]+\.[^.]+\.).*");
|
33
|
+
|
34
|
+
// A string is empty in our terms, if it is null, empty or a dash.
|
35
|
+
private static bool IsEmpty(string input) {
|
36
|
+
return input == null || "-" == input || "" == input;
|
37
|
+
}
|
38
|
+
|
39
|
+
// The last octect of the IP address is removed to anonymize the user.
|
40
|
+
private static string GetIP(string remoteAddress) {
|
41
|
+
if (IsEmpty(remoteAddress)) {
|
42
|
+
return "";
|
43
|
+
}
|
44
|
+
// Capture the first three octects of the IP address and replace the forth
|
45
|
+
// with 0, e.g. 124.455.3.123 becomes 124.455.3.0
|
46
|
+
Match m = IpAddressMatcher.Match(remoteAddress);
|
47
|
+
if (m.Success) {
|
48
|
+
return m.Groups[1] + "0";
|
49
|
+
} else {
|
50
|
+
return "";
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
// Generate a visitor id for this hit.
|
55
|
+
// If there is a visitor id in the cookie, use that, otherwise
|
56
|
+
// use the guid if we have one, otherwise use a random number.
|
57
|
+
private static string GetVisitorId(
|
58
|
+
string guid, string account, string userAgent, HttpCookie cookie) {
|
59
|
+
|
60
|
+
// If there is a value in the cookie, don't change it.
|
61
|
+
if (cookie != null && cookie.Value != null) {
|
62
|
+
return cookie.Value;
|
63
|
+
}
|
64
|
+
|
65
|
+
String message;
|
66
|
+
if (!IsEmpty(guid)) {
|
67
|
+
// Create the visitor id using the guid.
|
68
|
+
message = guid + account;
|
69
|
+
} else {
|
70
|
+
// otherwise this is a new user, create a new random id.
|
71
|
+
message = userAgent + GetRandomNumber() + Guid.NewGuid().ToString();
|
72
|
+
}
|
73
|
+
|
74
|
+
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
|
75
|
+
byte[] messageBytes = Encoding.UTF8.GetBytes(message);
|
76
|
+
byte[] sum = md5.ComputeHash(messageBytes);
|
77
|
+
|
78
|
+
string md5String = BitConverter.ToString(sum);
|
79
|
+
md5String = md5String.Replace("-","");
|
80
|
+
|
81
|
+
md5String = md5String.PadLeft(32, '0');
|
82
|
+
|
83
|
+
return "0x" + md5String.Substring(0, 16);
|
84
|
+
}
|
85
|
+
|
86
|
+
// Get a random number string.
|
87
|
+
private static String GetRandomNumber() {
|
88
|
+
Random RandomClass = new Random();
|
89
|
+
return RandomClass.Next(0x7fffffff).ToString();
|
90
|
+
}
|
91
|
+
|
92
|
+
// Writes the bytes of a 1x1 transparent gif into the response.
|
93
|
+
private void WriteGifData() {
|
94
|
+
Response.AddHeader(
|
95
|
+
"Cache-Control",
|
96
|
+
"private, no-cache, no-cache=Set-Cookie, proxy-revalidate");
|
97
|
+
Response.AddHeader("Pragma", "no-cache");
|
98
|
+
Response.AddHeader("Expires", "Wed, 17 Sep 1975 21:32:10 GMT");
|
99
|
+
Response.Buffer = false;
|
100
|
+
Response.OutputStream.Write(GifData, 0, GifData.Length);
|
101
|
+
}
|
102
|
+
|
103
|
+
// Make a tracking request to Google Analytics from this server.
|
104
|
+
// Copies the headers from the original request to the new one.
|
105
|
+
// If request containg utmdebug parameter, exceptions encountered
|
106
|
+
// communicating with Google Analytics are thown.
|
107
|
+
private void SendRequestToGoogleAnalytics(string utmUrl) {
|
108
|
+
try {
|
109
|
+
WebRequest connection = WebRequest.Create(utmUrl);
|
110
|
+
|
111
|
+
((HttpWebRequest)connection).UserAgent = Request.UserAgent;
|
112
|
+
connection.Headers.Add("Accepts-Language",
|
113
|
+
Request.Headers.Get("Accepts-Language"));
|
114
|
+
|
115
|
+
using (WebResponse resp = connection.GetResponse()) {
|
116
|
+
// Ignore response
|
117
|
+
}
|
118
|
+
} catch (Exception ex) {
|
119
|
+
if (Request.QueryString.Get("utmdebug") != null) {
|
120
|
+
throw new Exception("Error contacting Google Analytics", ex);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
// Track a page view, updates all the cookies and campaign tracker,
|
126
|
+
// makes a server side request to Google Analytics and writes the transparent
|
127
|
+
// gif byte data to the response.
|
128
|
+
private void TrackPageView() {
|
129
|
+
TimeSpan timeSpan = (DateTime.Now - new DateTime(1970, 1, 1).ToLocalTime());
|
130
|
+
string timeStamp = timeSpan.TotalSeconds.ToString();
|
131
|
+
string domainName = Request.ServerVariables["SERVER_NAME"];
|
132
|
+
if (IsEmpty(domainName)) {
|
133
|
+
domainName = "";
|
134
|
+
}
|
135
|
+
|
136
|
+
// Get the referrer from the utmr parameter, this is the referrer to the
|
137
|
+
// page that contains the tracking pixel, not the referrer for tracking
|
138
|
+
// pixel.
|
139
|
+
string documentReferer = Request.QueryString.Get("utmr");
|
140
|
+
if (IsEmpty(documentReferer)) {
|
141
|
+
documentReferer = "-";
|
142
|
+
} else {
|
143
|
+
documentReferer = HttpUtility.UrlDecode(documentReferer);
|
144
|
+
}
|
145
|
+
string documentPath = Request.QueryString.Get("utmp");
|
146
|
+
if (IsEmpty(documentPath)) {
|
147
|
+
documentPath = "";
|
148
|
+
} else {
|
149
|
+
documentPath = HttpUtility.UrlDecode(documentPath);
|
150
|
+
}
|
151
|
+
|
152
|
+
string account = Request.QueryString.Get("utmac");
|
153
|
+
string userAgent = Request.UserAgent;
|
154
|
+
if (IsEmpty(userAgent)) {
|
155
|
+
userAgent = "";
|
156
|
+
}
|
157
|
+
|
158
|
+
// Try and get visitor cookie from the request.
|
159
|
+
HttpCookie cookie = Request.Cookies.Get(CookieName);
|
160
|
+
|
161
|
+
string visitorId = GetVisitorId(
|
162
|
+
Request.Headers.Get("X-DCMGUID"), account, userAgent, cookie);
|
163
|
+
|
164
|
+
// Always try and add the cookie to the response.
|
165
|
+
HttpCookie newCookie = new HttpCookie(CookieName);
|
166
|
+
newCookie.Value = visitorId;
|
167
|
+
newCookie.Expires = DateTime.Now + CookieUserPersistence;
|
168
|
+
newCookie.Path = CookiePath;
|
169
|
+
Response.Cookies.Add(newCookie);
|
170
|
+
|
171
|
+
string utmGifLocation = "http://www.google-analytics.com/__utm.gif";
|
172
|
+
|
173
|
+
// Construct the gif hit url.
|
174
|
+
string utmUrl = utmGifLocation + "?" +
|
175
|
+
"utmwv=" + Version +
|
176
|
+
"&utmn=" + GetRandomNumber() +
|
177
|
+
"&utmhn=" + HttpUtility.UrlEncode(domainName) +
|
178
|
+
"&utmr=" + HttpUtility.UrlEncode(documentReferer) +
|
179
|
+
"&utmp=" + HttpUtility.UrlEncode(documentPath) +
|
180
|
+
"&utmac=" + account +
|
181
|
+
"&utmcc=__utma%3D999.999.999.999.999.1%3B" +
|
182
|
+
"&utmvid=" + visitorId +
|
183
|
+
"&utmip=" + GetIP(Request.ServerVariables["REMOTE_ADDR"]);
|
184
|
+
|
185
|
+
SendRequestToGoogleAnalytics(utmUrl);
|
186
|
+
|
187
|
+
// If the debug parameter is on, add a header to the response that contains
|
188
|
+
// the url that was used to contact Google Analytics.
|
189
|
+
if (Request.QueryString.Get("utmdebug") != null) {
|
190
|
+
Response.AddHeader("X-GA-MOBILE-URL", utmUrl);
|
191
|
+
}
|
192
|
+
// Finally write the gif data to the response.
|
193
|
+
WriteGifData();
|
194
|
+
}
|
195
|
+
</script><% TrackPageView(); %>
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<%@ Page Language="C#" %>
|
2
|
+
<script language="C#" runat="server">
|
3
|
+
private const string GaAccount = "MO-3845491-5";
|
4
|
+
private const string GaPixel = "ga.aspx";
|
5
|
+
|
6
|
+
private string GoogleAnalyticsGetImageUrl() {
|
7
|
+
System.Text.StringBuilder url = new System.Text.StringBuilder();
|
8
|
+
url.Append(GaPixel + "?");
|
9
|
+
url.Append("utmac=").Append(GaAccount);
|
10
|
+
|
11
|
+
Random RandomClass = new Random();
|
12
|
+
url.Append("&utmn=").Append(RandomClass.Next(0x7fffffff));
|
13
|
+
|
14
|
+
string referer = "-";
|
15
|
+
if (Request.UrlReferrer != null
|
16
|
+
&& "" != Request.UrlReferrer.ToString()) {
|
17
|
+
referer = Request.UrlReferrer.ToString();
|
18
|
+
}
|
19
|
+
url.Append("&utmr=").Append(HttpUtility.UrlEncode(referer));
|
20
|
+
|
21
|
+
if (HttpContext.Current.Request.Url != null) {
|
22
|
+
url.Append("&utmp=").Append(HttpUtility.UrlEncode(Request.Url.PathAndQuery));
|
23
|
+
}
|
24
|
+
|
25
|
+
url.Append("&guid=ON");
|
26
|
+
|
27
|
+
return url.ToString();
|
28
|
+
}
|
29
|
+
</script>
|
30
|
+
<html>
|
31
|
+
<head>
|
32
|
+
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
33
|
+
<title>Sample Mobile Analytics Page</title>
|
34
|
+
</head>
|
35
|
+
<body>
|
36
|
+
|
37
|
+
Publisher's content here.
|
38
|
+
<%
|
39
|
+
string googleAnalyticsImageUrl = GoogleAnalyticsGetImageUrl();
|
40
|
+
%>
|
41
|
+
<img src="<%= googleAnalyticsImageUrl %>" />
|
42
|
+
Testing: <%= googleAnalyticsImageUrl %>
|
43
|
+
</body>
|
44
|
+
</html>
|
@@ -0,0 +1,225 @@
|
|
1
|
+
<%@ page language="java"
|
2
|
+
contentType="image/gif"
|
3
|
+
import="java.io.ByteArrayOutputStream,
|
4
|
+
java.io.IOException,
|
5
|
+
java.io.OutputStream,
|
6
|
+
java.io.UnsupportedEncodingException,
|
7
|
+
java.math.BigInteger,
|
8
|
+
java.net.HttpURLConnection,
|
9
|
+
java.net.URLConnection,
|
10
|
+
java.net.URL,
|
11
|
+
java.net.URLEncoder,
|
12
|
+
java.net.URLDecoder,
|
13
|
+
java.security.MessageDigest,
|
14
|
+
java.security.NoSuchAlgorithmException,
|
15
|
+
javax.servlet.http.Cookie,
|
16
|
+
java.util.regex.Pattern,
|
17
|
+
java.util.regex.Matcher,
|
18
|
+
java.util.UUID" %><%!
|
19
|
+
|
20
|
+
/**
|
21
|
+
Copyright 2009 Google Inc. All Rights Reserved.
|
22
|
+
**/
|
23
|
+
|
24
|
+
// Tracker version.
|
25
|
+
private static final String version = "4.4sj";
|
26
|
+
|
27
|
+
private static final String COOKIE_NAME = "__utmmobile";
|
28
|
+
|
29
|
+
// The path the cookie will be available to, edit this to use a different
|
30
|
+
// cookie path.
|
31
|
+
private static final String COOKIE_PATH = "/";
|
32
|
+
|
33
|
+
// Two years in seconds.
|
34
|
+
private static final int COOKIE_USER_PERSISTENCE = 63072000;
|
35
|
+
|
36
|
+
// 1x1 transparent GIF
|
37
|
+
private static final byte[] GIF_DATA = new byte[] {
|
38
|
+
(byte)0x47, (byte)0x49, (byte)0x46, (byte)0x38, (byte)0x39, (byte)0x61,
|
39
|
+
(byte)0x01, (byte)0x00, (byte)0x01, (byte)0x00, (byte)0x80, (byte)0xff,
|
40
|
+
(byte)0x00, (byte)0xff, (byte)0xff, (byte)0xff, (byte)0x00, (byte)0x00,
|
41
|
+
(byte)0x00, (byte)0x2c, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,
|
42
|
+
(byte)0x01, (byte)0x00, (byte)0x01, (byte)0x00, (byte)0x00, (byte)0x02,
|
43
|
+
(byte)0x02, (byte)0x44, (byte)0x01, (byte)0x00, (byte)0x3b
|
44
|
+
};
|
45
|
+
|
46
|
+
// A string is empty in our terms, if it is null, empty or a dash.
|
47
|
+
private static boolean isEmpty(String in) {
|
48
|
+
return in == null || "-".equals(in) || "".equals(in);
|
49
|
+
}
|
50
|
+
|
51
|
+
// The last octect of the IP address is removed to anonymize the user.
|
52
|
+
private static String getIP(String remoteAddress) {
|
53
|
+
if (isEmpty(remoteAddress)) {
|
54
|
+
return "";
|
55
|
+
}
|
56
|
+
// Capture the first three octects of the IP address and replace the forth
|
57
|
+
// with 0, e.g. 124.455.3.123 becomes 124.455.3.0
|
58
|
+
String regex = "^([^.]+\\.[^.]+\\.[^.]+\\.).*";
|
59
|
+
Pattern getFirstBitOfIPAddress = Pattern.compile(regex);
|
60
|
+
Matcher m = getFirstBitOfIPAddress.matcher(remoteAddress);
|
61
|
+
if (m.matches()) {
|
62
|
+
return m.group(1) + "0";
|
63
|
+
} else {
|
64
|
+
return "";
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
// Generate a visitor id for this hit.
|
69
|
+
// If there is a visitor id in the cookie, use that, otherwise
|
70
|
+
// use the guid if we have one, otherwise use a random number.
|
71
|
+
private static String getVisitorId(
|
72
|
+
String guid, String account, String userAgent, Cookie cookie)
|
73
|
+
throws NoSuchAlgorithmException, UnsupportedEncodingException {
|
74
|
+
|
75
|
+
// If there is a value in the cookie, don't change it.
|
76
|
+
if (cookie != null && cookie.getValue() != null) {
|
77
|
+
return cookie.getValue();
|
78
|
+
}
|
79
|
+
|
80
|
+
String message;
|
81
|
+
if (!isEmpty(guid)) {
|
82
|
+
// Create the visitor id using the guid.
|
83
|
+
message = guid + account;
|
84
|
+
} else {
|
85
|
+
// otherwise this is a new user, create a new random id.
|
86
|
+
message = userAgent + getRandomNumber() + UUID.randomUUID().toString();
|
87
|
+
}
|
88
|
+
|
89
|
+
MessageDigest m = MessageDigest.getInstance("MD5");
|
90
|
+
m.update(message.getBytes("UTF-8"), 0, message.length());
|
91
|
+
byte[] sum = m.digest();
|
92
|
+
BigInteger messageAsNumber = new BigInteger(1, sum);
|
93
|
+
String md5String = messageAsNumber.toString(16);
|
94
|
+
|
95
|
+
// Pad to make sure id is 32 characters long.
|
96
|
+
while (md5String.length() < 32) {
|
97
|
+
md5String = "0" + md5String;
|
98
|
+
}
|
99
|
+
|
100
|
+
return "0x" + md5String.substring(0, 16);
|
101
|
+
}
|
102
|
+
|
103
|
+
// Get a random number string.
|
104
|
+
private static String getRandomNumber() {
|
105
|
+
return Integer.toString((int) (Math.random() * 0x7fffffff));
|
106
|
+
}
|
107
|
+
|
108
|
+
// Writes the bytes of a 1x1 transparent gif into the response.
|
109
|
+
private void writeGifData(HttpServletResponse response) throws IOException {
|
110
|
+
response.addHeader(
|
111
|
+
"Cache-Control",
|
112
|
+
"private, no-cache, no-cache=Set-Cookie, proxy-revalidate");
|
113
|
+
response.addHeader("Pragma", "no-cache");
|
114
|
+
response.addHeader("Expires", "Wed, 17 Sep 1975 21:32:10 GMT");
|
115
|
+
ServletOutputStream output = response.getOutputStream();
|
116
|
+
output.write(GIF_DATA);
|
117
|
+
output.flush();
|
118
|
+
}
|
119
|
+
|
120
|
+
// Make a tracking request to Google Analytics from this server.
|
121
|
+
// Copies the headers from the original request to the new one.
|
122
|
+
// If request containg utmdebug parameter, exceptions encountered
|
123
|
+
// communicating with Google Analytics are thown.
|
124
|
+
private void sendRequestToGoogleAnalytics(
|
125
|
+
String utmUrl, HttpServletRequest request) throws Exception {
|
126
|
+
try {
|
127
|
+
URL url = new URL(utmUrl);
|
128
|
+
URLConnection connection = url.openConnection();
|
129
|
+
connection.setUseCaches(false);
|
130
|
+
|
131
|
+
connection.addRequestProperty("User-Agent",
|
132
|
+
request.getHeader("User-Agent"));
|
133
|
+
connection.addRequestProperty("Accepts-Language",
|
134
|
+
request.getHeader("Accepts-Language"));
|
135
|
+
|
136
|
+
connection.getContent();
|
137
|
+
} catch (Exception e) {
|
138
|
+
if (request.getParameter("utmdebug") != null) {
|
139
|
+
throw new Exception(e);
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
// Track a page view, updates all the cookies and campaign tracker,
|
145
|
+
// makes a server side request to Google Analytics and writes the transparent
|
146
|
+
// gif byte data to the response.
|
147
|
+
private void trackPageView(
|
148
|
+
HttpServletRequest request, HttpServletResponse response)
|
149
|
+
throws Exception {
|
150
|
+
String timeStamp = Long.toString(System.currentTimeMillis() / 1000);
|
151
|
+
String domainName = request.getServerName();
|
152
|
+
if (isEmpty(domainName)) {
|
153
|
+
domainName = "";
|
154
|
+
}
|
155
|
+
|
156
|
+
// Get the referrer from the utmr parameter, this is the referrer to the
|
157
|
+
// page that contains the tracking pixel, not the referrer for tracking
|
158
|
+
// pixel.
|
159
|
+
String documentReferer = request.getParameter("utmr");
|
160
|
+
if (isEmpty(documentReferer)) {
|
161
|
+
documentReferer = "-";
|
162
|
+
} else {
|
163
|
+
documentReferer = URLDecoder.decode(documentReferer, "UTF-8");
|
164
|
+
}
|
165
|
+
String documentPath = request.getParameter("utmp");
|
166
|
+
if (isEmpty(documentPath)) {
|
167
|
+
documentPath = "";
|
168
|
+
} else {
|
169
|
+
documentPath = URLDecoder.decode(documentPath, "UTF-8");
|
170
|
+
}
|
171
|
+
|
172
|
+
String account = request.getParameter("utmac");
|
173
|
+
String userAgent = request.getHeader("User-Agent");
|
174
|
+
if (isEmpty(userAgent)) {
|
175
|
+
userAgent = "";
|
176
|
+
}
|
177
|
+
|
178
|
+
// Try and get visitor cookie from the request.
|
179
|
+
Cookie[] cookies = request.getCookies();
|
180
|
+
Cookie cookie = null;
|
181
|
+
if (cookies != null) {
|
182
|
+
for(int i = 0; i < cookies.length; i++) {
|
183
|
+
if (cookies[i].getName().equals(COOKIE_NAME)) {
|
184
|
+
cookie = cookies[i];
|
185
|
+
}
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
String visitorId = getVisitorId(
|
190
|
+
request.getHeader("X-DCMGUID"), account, userAgent, cookie);
|
191
|
+
|
192
|
+
// Always try and add the cookie to the response.
|
193
|
+
Cookie newCookie = new Cookie(COOKIE_NAME, visitorId);
|
194
|
+
newCookie.setMaxAge(COOKIE_USER_PERSISTENCE);
|
195
|
+
newCookie.setPath(COOKIE_PATH);
|
196
|
+
response.addCookie(newCookie);
|
197
|
+
|
198
|
+
String utmGifLocation = "http://www.google-analytics.com/__utm.gif";
|
199
|
+
|
200
|
+
// Construct the gif hit url.
|
201
|
+
String utmUrl = utmGifLocation + "?" +
|
202
|
+
"utmwv=" + version +
|
203
|
+
"&utmn=" + getRandomNumber() +
|
204
|
+
"&utmhn=" + URLEncoder.encode(domainName, "UTF-8") +
|
205
|
+
"&utmr=" + URLEncoder.encode(documentReferer, "UTF-8") +
|
206
|
+
"&utmp=" + URLEncoder.encode(documentPath, "UTF-8") +
|
207
|
+
"&utmac=" + account +
|
208
|
+
"&utmcc=__utma%3D999.999.999.999.999.1%3B" +
|
209
|
+
"&utmvid=" + visitorId +
|
210
|
+
"&utmip=" + getIP(request.getRemoteAddr());
|
211
|
+
|
212
|
+
sendRequestToGoogleAnalytics(utmUrl, request);
|
213
|
+
|
214
|
+
// If the debug parameter is on, add a header to the response that contains
|
215
|
+
// the url that was used to contact Google Analytics.
|
216
|
+
if (request.getParameter("utmdebug") != null) {
|
217
|
+
response.setHeader("X-GA-MOBILE-URL", utmUrl);
|
218
|
+
}
|
219
|
+
// Finally write the gif data to the response.
|
220
|
+
writeGifData(response);
|
221
|
+
}
|
222
|
+
%><%
|
223
|
+
// Let exceptions bubble up to container, for better debugging.
|
224
|
+
trackPageView(request, response);
|
225
|
+
%>
|