Skip to content

Commit 2cd85ba

Browse files
committed
Merge branch 'main' of github.com:HTTPArchive/almanac.httparchive.org into production
2 parents b135a2b + e170176 commit 2cd85ba

192 files changed

Lines changed: 2682 additions & 1314 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/code-static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v3
3636
- name: Set up Python 3.8
3737
if: ${{ matrix.language == 'python' }}
38-
uses: actions/setup-python@v4.3.0
38+
uses: actions/setup-python@v4.3.1
3939
with:
4040
python-version: '3.8'
4141
- name: Install dependencies

.github/workflows/lintsql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Full git history is needed to get a proper list of changed files within `super-linter`
2020
fetch-depth: 0
2121
- name: Set up Python 3.8
22-
uses: actions/setup-python@v4.3.0
22+
uses: actions/setup-python@v4.3.1
2323
with:
2424
python-version: '3.8'
2525
- name: Lint SQL code

.github/workflows/predeploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
node-version: '16'
3838
- name: Set up Python 3.8
39-
uses: actions/setup-python@v4.3.0
39+
uses: actions/setup-python@v4.3.1
4040
with:
4141
python-version: '3.8'
4242
- name: Install Asian Fonts

.github/workflows/test_website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
node-version: '16'
3232
- name: Set up Python 3.8
33-
uses: actions/setup-python@v4.3.0
33+
uses: actions/setup-python@v4.3.1
3434
with:
3535
python-version: '3.8'
3636
- name: Run the website

sql/2019/css/02_07.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CREATE TEMPORARY FUNCTION getLengthUnit(css STRING)
44
RETURNS ARRAY<STRING> LANGUAGE js AS '''
55
try {
6-
// https://developer.mozilla.org/en-US/docs/Web/CSS/length
6+
// https://developer.mozilla.org/docs/Web/CSS/length
77
var units = ['cap', 'ch', 'em', 'ex', 'ic', 'lh', 'rem',
88
'rlh', 'vh', 'vw', 'vi', 'vb', 'vmin', 'vmax',
99
'px', 'cm', 'nm', 'Q', 'in', 'pc', 'pt'];

sql/2020/third-parties/distribution_of_3XX_response_body_size.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Distribution of response body size by redirected third parties
3-
# HTTP status codes documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status
3+
# HTTP status codes documentation: https://developer.mozilla.org/docs/Web/HTTP/Status
44

55
WITH requests AS (
66
SELECT

sql/2020/third-parties/percent_of_third_party_cache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third party requests cached
3-
# Cache-Control documentation: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control#Directives
3+
# Cache-Control documentation: https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control#Directives
44

55
WITH requests AS (
66
SELECT

sql/2020/third-parties/tao_by_third_party.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of third-party requests with "Timing-Allow-Origin" headers
3-
# Header reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Timing-Allow-Origin
3+
# Header reference: https://developer.mozilla.org/docs/Web/HTTP/Headers/Timing-Allow-Origin
44

55
CREATE TEMP FUNCTION get_tao(headers STRING)
66
RETURNS STRING LANGUAGE js AS '''

sql/2021/css/atproperty_adoption.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# Percent of pages that use @property
3-
# https://developer.mozilla.org/en-US/docs/Web/CSS/@property
3+
# https://developer.mozilla.org/docs/Web/CSS/@property
44
CREATE TEMP FUNCTION countAtProperties(css STRING) RETURNS ARRAY<INT64> LANGUAGE js AS '''
55
try {
66
var $ = JSON.parse(css);

sql/2021/css/atproperty_javascript_adoption.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#standardSQL
22
# CSS.registerProperty adoption
3-
# https://developer.mozilla.org/en-US/docs/Web/API/CSS/RegisterProperty
3+
# https://developer.mozilla.org/docs/Web/API/CSS/RegisterProperty
44
SELECT DISTINCT
55
client,
66
num_urls,

0 commit comments

Comments
 (0)