sitespeed.io 30.7.0 → 30.8.0
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.
- package/CHANGELOG.md +10 -0
- package/lib/cli/cli.js +2 -2
- package/lib/plugins/compare/helper.js +17 -0
- package/lib/plugins/compare/index.js +10 -4
- package/lib/plugins/compare/pug/index.pug +14 -2
- package/lib/plugins/compare/statistical.py +8 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/wpr-record.log +0 -102
- package/wpr-replay.log +0 -96
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 30.8.0 - 2023-12-07
|
|
4
|
+
### Added
|
|
5
|
+
* Use Cliffs delta to know the size of the significant change [#4024](https://github.com/sitespeedio/sitespeed.io/pull/4024).
|
|
6
|
+
* Show if the graph has a siginficant change or not in the compare plugin [#4025](https://github.com/sitespeedio/sitespeed.io/pull/4025).
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## 30.7.1 - 2023-12-07
|
|
10
|
+
### Fixed
|
|
11
|
+
* The old settings for MannWhitneyU tests where confusing. We compared the the baseline is less than the current tests. This PR switched so we instead look if the current tests are greater than the baseline. We also added some better explaining text on result page[#4023](https://github.com/sitespeedio/sitespeed.io/pull/4023).
|
|
12
|
+
|
|
3
13
|
## 30.7.0 - 2023-11-30
|
|
4
14
|
### Added
|
|
5
15
|
* Show Axe individual issues on the page summary (not only on each individual run) [#4019](https://github.com/sitespeedio/sitespeed.io/pull/4019). Thank you [shaqb](https://github.com/shaqb) for pointing that out. The total number of issues is also sent to Graphite under *statistics.axe.violationIssues*.
|
package/lib/cli/cli.js
CHANGED
|
@@ -1899,9 +1899,9 @@ export async function parseCommandLine() {
|
|
|
1899
1899
|
})
|
|
1900
1900
|
.option('compare.alternative', {
|
|
1901
1901
|
choices: ['less', ' greater', 'two-sided'],
|
|
1902
|
-
default: '
|
|
1902
|
+
default: 'greater',
|
|
1903
1903
|
describe:
|
|
1904
|
-
'Specifies the alternative hypothesis to be tested.
|
|
1904
|
+
'Specifies the alternative hypothesis to be tested. Default is greater than means current data is greater than the baseline. two-sided means we look for different both ways and less means current is less than baseline. ',
|
|
1905
1905
|
group: 'compare'
|
|
1906
1906
|
})
|
|
1907
1907
|
.option('compare.wilcoxon.correction', {
|
|
@@ -355,3 +355,20 @@ export function getMetrics(data) {
|
|
|
355
355
|
...getCDPPerformance(data)
|
|
356
356
|
};
|
|
357
357
|
}
|
|
358
|
+
|
|
359
|
+
export function cliffsDelta(x, y) {
|
|
360
|
+
const n_x = x.length;
|
|
361
|
+
const n_y = y.length;
|
|
362
|
+
let n_gt = 0; // Count of x[i] > y[j]
|
|
363
|
+
let n_lt = 0; // Count of x[i] < y[j]
|
|
364
|
+
|
|
365
|
+
// Compare each pair of values (one from x, one from y)
|
|
366
|
+
for (let xi of x) {
|
|
367
|
+
for (let yi of y) {
|
|
368
|
+
if (xi > yi) n_gt++;
|
|
369
|
+
if (xi < yi) n_lt++;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
return (n_gt - n_lt) / (n_x * n_y);
|
|
374
|
+
}
|
|
@@ -7,7 +7,12 @@ import intel from 'intel';
|
|
|
7
7
|
import merge from 'lodash.merge';
|
|
8
8
|
import dayjs from 'dayjs';
|
|
9
9
|
|
|
10
|
-
import {
|
|
10
|
+
import {
|
|
11
|
+
getStatistics,
|
|
12
|
+
runStatisticalTests,
|
|
13
|
+
getMetrics,
|
|
14
|
+
cliffsDelta
|
|
15
|
+
} from './helper.js';
|
|
11
16
|
import { getBaseline, saveBaseline } from './baseline.js';
|
|
12
17
|
|
|
13
18
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
@@ -143,8 +148,8 @@ export default class ComparePlugin extends SitespeedioPlugin {
|
|
|
143
148
|
baselineMetric.getValues()
|
|
144
149
|
);
|
|
145
150
|
metricsInputData.metrics[group][metricName] = {
|
|
146
|
-
|
|
147
|
-
|
|
151
|
+
baseline: baselineStats.data,
|
|
152
|
+
current: currentStats.data
|
|
148
153
|
};
|
|
149
154
|
} else {
|
|
150
155
|
log.info(
|
|
@@ -182,7 +187,8 @@ export default class ComparePlugin extends SitespeedioPlugin {
|
|
|
182
187
|
median: baselineStats.median(),
|
|
183
188
|
values: baselineStats.data
|
|
184
189
|
},
|
|
185
|
-
statisticalTestU: result['p-value']
|
|
190
|
+
statisticalTestU: result['p-value'],
|
|
191
|
+
cliffsDelta: cliffsDelta(currentStats.data, baselineStats.data)
|
|
186
192
|
};
|
|
187
193
|
}
|
|
188
194
|
}
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
- var createGraphLink = function(metricGroup, metricName) {
|
|
3
3
|
- return '#chart-' + metricGroup.replace(/\./g, '_') + '_' + metricName.replace(/\./g, '_');
|
|
4
4
|
- }
|
|
5
|
+
- var cliffDeltaHelper = function(delta) {
|
|
6
|
+
- if (delta < 0.3) return `Small effect (${h.decimals(delta)})`;
|
|
7
|
+
- if (delta < 0.5) return `Medium effect (${h.decimals(delta)})`;
|
|
8
|
+
- if (delta >= 0.5) return `Large effect (${h.decimals(delta)})`;
|
|
9
|
+
- }
|
|
5
10
|
|
|
6
11
|
h1 Compare
|
|
7
12
|
|
|
@@ -17,6 +22,12 @@ p
|
|
|
17
22
|
h2 Settings
|
|
18
23
|
p
|
|
19
24
|
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
|
|
25
|
+
if compare.meta.testOptions.alternative === 'less'
|
|
26
|
+
| This means that we test if the current test is significant less that the baseline tests.
|
|
27
|
+
else if compare.meta.testOptions.alternative === 'greater'
|
|
28
|
+
| This means that we test if the current test is siginficant higher than the baseline tests.
|
|
29
|
+
else if compare.meta.testOptions.alternative === 'two-sided'
|
|
30
|
+
| This means that we test the baseline vs the current tests both ways, if there are any change in both directions.
|
|
20
31
|
if compare.meta.testOptions.testType === 'mannwhitneyu'
|
|
21
32
|
| For more information on the settings of the Mann-Whitney U test, please refer to the
|
|
22
33
|
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html') official documentation.
|
|
@@ -76,7 +87,8 @@ table
|
|
|
76
87
|
if values.statisticalTestU === "N/A"
|
|
77
88
|
td No Test Conducted
|
|
78
89
|
else
|
|
79
|
-
td #{values.statisticalTestU < 0.05 ? 'Yes' : 'No'}
|
|
90
|
+
td #{values.statisticalTestU < 0.05 ? 'Yes - ' + cliffDeltaHelper(values.cliffsDelta) : 'No'}
|
|
91
|
+
|
|
80
92
|
|
|
81
93
|
h2 Graphs
|
|
82
94
|
|
|
@@ -84,7 +96,7 @@ each metricGroup, groupName in compare.metrics
|
|
|
84
96
|
each values, metricName in metricGroup
|
|
85
97
|
- var fullMetricName = groupName + '.' + metricName
|
|
86
98
|
- var metricId = fullMetricName.replace(/\./g, '_')
|
|
87
|
-
h3 #{fullMetricName}
|
|
99
|
+
h3 #{fullMetricName} #{values.statisticalTestU === "N/A"? '' : values.statisticalTestU < 0.05 ? '(significant change)' : ''}
|
|
88
100
|
.ct-chart(id=`chart-${metricId}`)
|
|
89
101
|
.ct-legend
|
|
90
102
|
span.ct-legend-item
|
|
@@ -2,22 +2,25 @@ import sys
|
|
|
2
2
|
import json
|
|
3
3
|
from scipy.stats import wilcoxon, mannwhitneyu
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
def has_variability(sample):
|
|
6
7
|
"""Check if the sample has more than one unique value."""
|
|
7
8
|
return len(set(sample)) > 1
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
|
|
11
|
+
def perform_test(test_type, baseline, current, **kwargs):
|
|
10
12
|
"""Perform the statistical test based on the test type."""
|
|
11
|
-
if not has_variability(
|
|
13
|
+
if not has_variability(baseline) or not has_variability(current):
|
|
12
14
|
return None, "No variability"
|
|
13
15
|
|
|
14
16
|
if test_type == 'wilcoxon':
|
|
15
|
-
return wilcoxon(
|
|
17
|
+
return wilcoxon(current, baseline, **kwargs)
|
|
16
18
|
elif test_type == 'mannwhitneyu':
|
|
17
|
-
return mannwhitneyu(
|
|
19
|
+
return mannwhitneyu(current, baseline, **kwargs)
|
|
18
20
|
else:
|
|
19
21
|
raise ValueError("Invalid test type. Choose 'wilcoxon' or 'mannwhitneyu'.")
|
|
20
22
|
|
|
23
|
+
|
|
21
24
|
input_data = json.loads(sys.stdin.read())
|
|
22
25
|
options = input_data['options']
|
|
23
26
|
test_type = options.pop('test_type')
|
|
@@ -27,7 +30,7 @@ final_results = {}
|
|
|
27
30
|
for group_name, metrics in input_data['metrics'].items():
|
|
28
31
|
group_results = {}
|
|
29
32
|
for metric_name, metric_data in metrics.items():
|
|
30
|
-
stat, p = perform_test(test_type, metric_data['
|
|
33
|
+
stat, p = perform_test(test_type, metric_data['baseline'], metric_data['current'], **options)
|
|
31
34
|
if p == "No variability":
|
|
32
35
|
group_results[metric_name] = {'statistic': "N/A", 'p-value': "N/A"}
|
|
33
36
|
else:
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.8.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "30.
|
|
9
|
+
"version": "30.8.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "6.9.5",
|
package/package.json
CHANGED
package/wpr-record.log
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
2023/11/03 08:52:26 Loading cert from /webpagereplay/certs/wpr_cert.pem
|
|
2
|
-
2023/11/03 08:52:26 Loading key from /webpagereplay/certs/wpr_key.pem
|
|
3
|
-
2023/11/03 08:52:26 Opened archive /tmp/archive.wprgo
|
|
4
|
-
2023/11/03 08:52:26 Loading script from /webpagereplay/scripts/deterministic.js
|
|
5
|
-
2023/11/03 08:52:26 Use Ctrl-C to exit.
|
|
6
|
-
2023/11/03 08:52:26 Starting server on https://127.0.0.1:443
|
|
7
|
-
2023/11/03 08:52:26 Starting server on http://127.0.0.1:80
|
|
8
|
-
2023/11/03 08:52:33 ServeHTTP(https://accounts.google.com/ListAccounts?gpsia=1&source=ChromiumBrowser&json=standard): serving 200, 43 bytes
|
|
9
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/wiki/Barack_Obama): serving 200, 287175 bytes
|
|
10
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022): serving 200, 2569 bytes
|
|
11
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg): serving 200, 2604 bytes
|
|
12
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=codex-search-styles%7Cext.cite.styles%7Cext.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cwikibase.client.init&only=styles&skin=vector-2022): serving 200, 16908 bytes
|
|
13
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022): serving 200, 19875 bytes
|
|
14
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg): serving 200, 3264 bytes
|
|
15
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/icons/wikipedia.png): serving 200, 13444 bytes
|
|
16
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=menu&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 195 bytes
|
|
17
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=ellipsis&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 191 bytes
|
|
18
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=expand&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 198 bytes
|
|
19
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down.svg?9426f): serving 200, 195 bytes
|
|
20
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down-progressive.svg?f0b59): serving 200, 193 bytes
|
|
21
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=language&variant=progressive&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 454 bytes
|
|
22
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515): serving 200, 154 bytes
|
|
23
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/link-external-small-ltr-progressive.svg?30a3a): serving 200, 246 bytes
|
|
24
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e): serving 200, 247 bytes
|
|
25
|
-
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=ext.phonos.icons&image=volumeUp&format=original&lang=en&skin=vector-2022&version=4cpix): serving 200, 292 bytes
|
|
26
|
-
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54248: EOF
|
|
27
|
-
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54232: EOF
|
|
28
|
-
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54278: EOF
|
|
29
|
-
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54276: EOF
|
|
30
|
-
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54282: EOF
|
|
31
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.svg/30px-Balance%2C_by_David.svg.png): serving 200, 400 bytes
|
|
32
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg): serving 200, 22389 bytes
|
|
33
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg): serving 200, 272 bytes
|
|
34
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png): serving 200, 514 bytes
|
|
35
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jpg/300px-PPACA_Premium_Chart.jpg): serving 200, 14571 bytes
|
|
36
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/21px-Wikinews-logo.svg.png): serving 200, 616 bytes
|
|
37
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/21px-Wikidata-logo.svg.png): serving 200, 170 bytes
|
|
38
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/16px-Wikiquote-logo.svg.png): serving 200, 520 bytes
|
|
39
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png): serving 200, 328 bytes
|
|
40
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg/220px-Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg): serving 200, 13036 bytes
|
|
41
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/1/1b/Semi-protection-shackle.svg/20px-Semi-protection-shackle.svg.png): serving 200, 342 bytes
|
|
42
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.svg/16px-Nuvola_apps_kaboodle.svg.png): serving 200, 530 bytes
|
|
43
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jpg/220px-BarackObamaportrait.jpg): serving 200, 12331 bytes
|
|
44
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/18px-Wikisource-logo.svg.png): serving 200, 768 bytes
|
|
45
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg): serving 200, 851 bytes
|
|
46
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/28px-A_coloured_voting_box.svg.png): serving 200, 1000 bytes
|
|
47
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_Rating-Barack_Obama.svg/275px-Gallup_Poll-Approval_Rating-Barack_Obama.svg.png): serving 200, 11454 bytes
|
|
48
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg/220px-Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg): serving 200, 12034 bytes
|
|
49
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/16px-Symbol_category_class.svg.png): serving 200, 528 bytes
|
|
50
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/100px-Seal_of_the_President_of_the_United_States.svg.png): serving 200, 10948 bytes
|
|
51
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.svg.png): serving 200, 1078 bytes
|
|
52
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_States_Senate.svg/80px-Seal_of_the_United_States_Senate.svg.png): serving 200, 12640 bytes
|
|
53
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852067439422%29.jpg/220px-P20220405AS-1082_%2852067439422%29.jpg): serving 200, 16872 bytes
|
|
54
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/20px-Wiki_letter_w_cropped.svg.png): serving 200, 604 bytes
|
|
55
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_Chicago%2C_Illinois.svg/28px-Seal_of_Chicago%2C_Illinois.svg.png): serving 200, 2524 bytes
|
|
56
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/75px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200, 4983 bytes
|
|
57
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_children.jpg/220px-Ann_Dunham_with_father_and_children.jpg): serving 200, 16628 bytes
|
|
58
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/70px-Seal_of_the_President_of_the_United_States.svg.png): serving 200, 10733 bytes
|
|
59
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_record.jpg/220px-Barry_Soetoro_school_record.jpg): serving 200, 22497 bytes
|
|
60
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature.svg/128px-Barack_Obama_signature.svg.png): serving 200, 1617 bytes
|
|
61
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/220px-Obamamiltondavis1.jpg): serving 200, 15266 bytes
|
|
62
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg/220px-US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg): serving 200, 15561 bytes
|
|
63
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg): serving 200, 318 bytes
|
|
64
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png): serving 200, 416 bytes
|
|
65
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/32px-Flag_of_the_United_States.svg.png): serving 200, 324 bytes
|
|
66
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_in_the_Green_Room.jpg/220px-Obama_family_portrait_in_the_Green_Room.jpg): serving 200, 12240 bytes
|
|
67
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg/220px-Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg): serving 200, 11008 bytes
|
|
68
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png): serving 200, 225 bytes
|
|
69
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png): serving 200, 178 bytes
|
|
70
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg): serving 200, 382 bytes
|
|
71
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png): serving 200, 282 bytes
|
|
72
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Flag_of_Hawaii.svg/32px-Flag_of_Hawaii.svg.png): serving 200, 300 bytes
|
|
73
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.svg/290px-ElectoralCollege2012.svg.png): serving 200, 27954 bytes
|
|
74
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/19px-Wiktionary-logo-v2.svg.png): serving 200, 528 bytes
|
|
75
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_official_portrait.jpg/140px-Michelle_Obama_2013_official_portrait.jpg): serving 200, 11164 bytes
|
|
76
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/32px-Flag_of_Illinois.svg.png): serving 200, 910 bytes
|
|
77
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg/220px-Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg): serving 200, 13904 bytes
|
|
78
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg/220px-Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg): serving 200, 13330 bytes
|
|
79
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_2017.jpg/220px-Obama_Macri_October_2017.jpg): serving 200, 12236 bytes
|
|
80
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_updates_on_bin_Laden.jpg/220px-Obama_and_Biden_await_updates_on_bin_Laden.jpg): serving 200, 16643 bytes
|
|
81
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/100px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200, 5966 bytes
|
|
82
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg/220px-Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg): serving 200, 14478 bytes
|
|
83
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._President_-_v1.png/352px-Job_Growth_by_U.S._President_-_v1.png): serving 200, 32500 bytes
|
|
84
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_Barack_Obama.jpg/220px-Official_portrait_of_Barack_Obama.jpg): serving 200, 18151 bytes
|
|
85
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/220px-Obama-venice-la.jpg): serving 200, 15631 bytes
|
|
86
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.svg/290px-ElectoralCollege2008.svg.png): serving 200, 29556 bytes
|
|
87
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png/220px-Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png): serving 200, 13167 bytes
|
|
88
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statistics.svg/332px-US_Employment_Statistics.svg.png): serving 200, 22201 bytes
|
|
89
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png/220px-U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png): serving 200, 15037 bytes
|
|
90
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/P050609PS-0531_%283508804772%29.jpg/220px-P050609PS-0531_%283508804772%29.jpg): serving 200, 11561 bytes
|
|
91
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_Inauguration_Day_2013.jpg/220px-Obamas_at_church_on_Inauguration_Day_2013.jpg): serving 200, 12927 bytes
|
|
92
|
-
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%283594694537%29.jpg/220px-P06409PS-0571_%283594694537%29.jpg): serving 200, 15120 bytes
|
|
93
|
-
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.visualEditor.core.utils.parsing%7Cext.visualEditor.desktopArticleTarget.init%7Cext.visualEditor.progressBarWidget%2CsupportCheck%2CtargetLoader%2CtempWikitextEditorWidget%2Ctrack%2Cve&skin=vector-2022&version=1q4ht): serving 200, 16349 bytes
|
|
94
|
-
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.gadget.ReferenceTooltips%2Cswitcher&skin=vector-2022&version=141l3): serving 200, 6659 bytes
|
|
95
|
-
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%2Ccompactlinks%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Chead%7Cmmv.bootstrap.autostart%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022&skin=vector-2022&version=wxewo): serving 200, 193792 bytes
|
|
96
|
-
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mw.config.values.wbCurrentSiteDetails%2CwbRepo%7Coojs-ui.styles.icons-editing-core&skin=vector-2022&version=1kp4p): serving 200, 1789 bytes
|
|
97
|
-
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.math.popup%7Cext.popups.images%2Cmain&skin=vector-2022&version=vgds4): serving 200, 20421 bytes
|
|
98
|
-
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mediawiki.ui.button&skin=vector-2022&version=1hgtt): serving 200, 1489 bytes
|
|
99
|
-
2023/11/03 08:52:37 ServeHTTP(https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script&wikiid=enwiki): serving 200, 199 bytes
|
|
100
|
-
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/static/favicon/wikipedia.ico): serving 200, 1035 bytes
|
|
101
|
-
2023/11/03 08:52:45 Shutting down
|
|
102
|
-
2023/11/03 08:52:45 Writing archive file to /tmp/archive.wprgo
|
package/wpr-replay.log
DELETED
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
2023/11/03 08:52:53 Loading cert from /webpagereplay/certs/wpr_cert.pem
|
|
2
|
-
2023/11/03 08:52:53 Loading key from /webpagereplay/certs/wpr_key.pem
|
|
3
|
-
2023/11/03 08:52:53 Loading archive file from /tmp/archive.wprgo
|
|
4
|
-
2023/11/03 08:52:53 Opened archive /tmp/archive.wprgo
|
|
5
|
-
2023/11/03 08:52:53 Loading script from /webpagereplay/scripts/deterministic.js
|
|
6
|
-
2023/11/03 08:52:53 Use Ctrl-C to exit.
|
|
7
|
-
2023/11/03 08:52:53 Starting server on https://127.0.0.1:443
|
|
8
|
-
2023/11/03 08:52:53 Starting server on http://127.0.0.1:80
|
|
9
|
-
2023/11/03 08:52:57 ServeHTTP(https://accounts.google.com/ListAccounts?gpsia=1&source=ChromiumBrowser&json=standard): serving 200 response
|
|
10
|
-
2023/11/03 08:53:03 ServeHTTP(https://en.wikipedia.org/wiki/Barack_Obama): serving 200 response
|
|
11
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=codex-search-styles%7Cext.cite.styles%7Cext.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cwikibase.client.init&only=styles&skin=vector-2022): serving 200 response
|
|
12
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022): serving 200 response
|
|
13
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022): serving 200 response
|
|
14
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg): serving 200 response
|
|
15
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg): serving 200 response
|
|
16
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/icons/wikipedia.png): serving 200 response
|
|
17
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=menu&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
18
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=expand&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
19
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=language&variant=progressive&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
20
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down.svg?9426f): serving 200 response
|
|
21
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515): serving 200 response
|
|
22
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=ellipsis&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
23
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down-progressive.svg?f0b59): serving 200 response
|
|
24
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=ext.phonos.icons&image=volumeUp&format=original&lang=en&skin=vector-2022&version=4cpix): serving 200 response
|
|
25
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e): serving 200 response
|
|
26
|
-
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/link-external-small-ltr-progressive.svg?30a3a): serving 200 response
|
|
27
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg): serving 200 response
|
|
28
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_children.jpg/220px-Ann_Dunham_with_father_and_children.jpg): serving 200 response
|
|
29
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/1/1b/Semi-protection-shackle.svg/20px-Semi-protection-shackle.svg.png): serving 200 response
|
|
30
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/75px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200 response
|
|
31
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/70px-Seal_of_the_President_of_the_United_States.svg.png): serving 200 response
|
|
32
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature.svg/128px-Barack_Obama_signature.svg.png): serving 200 response
|
|
33
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_in_the_Green_Room.jpg/220px-Obama_family_portrait_in_the_Green_Room.jpg): serving 200 response
|
|
34
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/20px-Wiki_letter_w_cropped.svg.png): serving 200 response
|
|
35
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.svg/16px-Nuvola_apps_kaboodle.svg.png): serving 200 response
|
|
36
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_Inauguration_Day_2013.jpg/220px-Obamas_at_church_on_Inauguration_Day_2013.jpg): serving 200 response
|
|
37
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jpg/220px-BarackObamaportrait.jpg): serving 200 response
|
|
38
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.svg/290px-ElectoralCollege2008.svg.png): serving 200 response
|
|
39
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/220px-Obamamiltondavis1.jpg): serving 200 response
|
|
40
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_record.jpg/220px-Barry_Soetoro_school_record.jpg): serving 200 response
|
|
41
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_Barack_Obama.jpg/220px-Official_portrait_of_Barack_Obama.jpg): serving 200 response
|
|
42
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.svg/290px-ElectoralCollege2012.svg.png): serving 200 response
|
|
43
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg/220px-US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg): serving 200 response
|
|
44
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png/220px-Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png): serving 200 response
|
|
45
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%283594694537%29.jpg/220px-P06409PS-0571_%283594694537%29.jpg): serving 200 response
|
|
46
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_2017.jpg/220px-Obama_Macri_October_2017.jpg): serving 200 response
|
|
47
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852067439422%29.jpg/220px-P20220405AS-1082_%2852067439422%29.jpg): serving 200 response
|
|
48
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/P050609PS-0531_%283508804772%29.jpg/220px-P050609PS-0531_%283508804772%29.jpg): serving 200 response
|
|
49
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/220px-Obama-venice-la.jpg): serving 200 response
|
|
50
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/16px-Symbol_category_class.svg.png): serving 200 response
|
|
51
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/100px-Seal_of_the_President_of_the_United_States.svg.png): serving 200 response
|
|
52
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/100px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200 response
|
|
53
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg): serving 200 response
|
|
54
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_updates_on_bin_Laden.jpg/220px-Obama_and_Biden_await_updates_on_bin_Laden.jpg): serving 200 response
|
|
55
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg/220px-Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg): serving 200 response
|
|
56
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg/220px-Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg): serving 200 response
|
|
57
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jpg/300px-PPACA_Premium_Chart.jpg): serving 200 response
|
|
58
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg/220px-Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg): serving 200 response
|
|
59
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg/220px-Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg): serving 200 response
|
|
60
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_Rating-Barack_Obama.svg/275px-Gallup_Poll-Approval_Rating-Barack_Obama.svg.png): serving 200 response
|
|
61
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png): serving 200 response
|
|
62
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.svg.png): serving 200 response
|
|
63
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/32px-Flag_of_the_United_States.svg.png): serving 200 response
|
|
64
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png): serving 200 response
|
|
65
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Flag_of_Hawaii.svg/32px-Flag_of_Hawaii.svg.png): serving 200 response
|
|
66
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png): serving 200 response
|
|
67
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/28px-A_coloured_voting_box.svg.png): serving 200 response
|
|
68
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_Chicago%2C_Illinois.svg/28px-Seal_of_Chicago%2C_Illinois.svg.png): serving 200 response
|
|
69
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png): serving 200 response
|
|
70
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/32px-Flag_of_Illinois.svg.png): serving 200 response
|
|
71
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_States_Senate.svg/80px-Seal_of_the_United_States_Senate.svg.png): serving 200 response
|
|
72
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.svg/30px-Balance%2C_by_David.svg.png): serving 200 response
|
|
73
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._President_-_v1.png/352px-Job_Growth_by_U.S._President_-_v1.png): serving 200 response
|
|
74
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg/220px-Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg): serving 200 response
|
|
75
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statistics.svg/332px-US_Employment_Statistics.svg.png): serving 200 response
|
|
76
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg/220px-Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg): serving 200 response
|
|
77
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png/220px-U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png): serving 200 response
|
|
78
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_official_portrait.jpg/140px-Michelle_Obama_2013_official_portrait.jpg): serving 200 response
|
|
79
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png): serving 200 response
|
|
80
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/19px-Wiktionary-logo-v2.svg.png): serving 200 response
|
|
81
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/21px-Wikinews-logo.svg.png): serving 200 response
|
|
82
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/16px-Wikiquote-logo.svg.png): serving 200 response
|
|
83
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/18px-Wikisource-logo.svg.png): serving 200 response
|
|
84
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/21px-Wikidata-logo.svg.png): serving 200 response
|
|
85
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg): serving 200 response
|
|
86
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg): serving 200 response
|
|
87
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png): serving 200 response
|
|
88
|
-
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg): serving 200 response
|
|
89
|
-
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.gadget.ReferenceTooltips%2Cswitcher&skin=vector-2022&version=141l3): serving 200 response
|
|
90
|
-
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.visualEditor.core.utils.parsing%7Cext.visualEditor.desktopArticleTarget.init%7Cext.visualEditor.progressBarWidget%2CsupportCheck%2CtargetLoader%2CtempWikitextEditorWidget%2Ctrack%2Cve&skin=vector-2022&version=1q4ht): serving 200 response
|
|
91
|
-
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%2Ccompactlinks%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Chead%7Cmmv.bootstrap.autostart%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022&skin=vector-2022&version=wxewo): serving 200 response
|
|
92
|
-
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.math.popup%7Cext.popups.images%2Cmain&skin=vector-2022&version=vgds4): serving 200 response
|
|
93
|
-
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mw.config.values.wbCurrentSiteDetails%2CwbRepo%7Coojs-ui.styles.icons-editing-core&skin=vector-2022&version=1kp4p): serving 200 response
|
|
94
|
-
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mediawiki.ui.button&skin=vector-2022&version=1hgtt): serving 200 response
|
|
95
|
-
2023/11/03 08:53:07 ServeHTTP(https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script&wikiid=enwiki): serving 200 response
|
|
96
|
-
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/static/favicon/wikipedia.ico): serving 200 response
|