Skip to content

Commit eff681c

Browse files
committed
testing with subdomain added for github pages
Signed-off-by: vsoch <[email protected]>
1 parent 8673e64 commit eff681c

File tree

1,554 files changed

+1956
-1955
lines changed

Some content is hidden

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

1,554 files changed

+1956
-1955
lines changed

app/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def index():
5050
return render_template("barchart.html", values=values, labels=labels, legend=legend)
5151

5252

53-
@app.route("/cookies/")
53+
@app.route("/url-headers/cookies/")
5454
def cookielist():
5555
"""An equivalent table, but we use cookies instead.
5656
"""
@@ -62,7 +62,7 @@ def cookielist():
6262
)
6363

6464

65-
@app.route("/header/<name>/")
65+
@app.route("/url-headers/header/<name>/")
6666
def header(name):
6767

6868
# The header must be known
@@ -85,7 +85,7 @@ def header(name):
8585
return render_template("header.html", values=sites, name=name.upper())
8686

8787

88-
@app.route("/site/<path:name>/")
88+
@app.route("/url-headers/site/<path:name>/")
8989
def site(name):
9090

9191
# Add https back
@@ -103,7 +103,7 @@ def site(name):
103103
return render_template("site.html", name=name, values=values, nexturl="header")
104104

105105

106-
@app.route("/cookies/<name>/")
106+
@app.route("/url-headers/cookies/<name>/")
107107
def cookie(name):
108108

109109
# The header must be known

app/templates/barchart.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h1>HTML {% if title %}{{ title }}{% else %}Header{% endif %} Counts</h1>
6363
var activeElement = myChart.lastActive;
6464
var idx = activeElement[0]._index
6565
var label = myChart.chart.config.data.labels[idx]
66-
document.location = "/{% if title %}{{ title | lower}}{% else %}header{% endif %}/" + label
66+
document.location = "/url-headers/{% if title %}{{ title | lower}}{% else %}header{% endif %}/" + label
6767
};
6868
</script>
6969

app/templates/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>{{ name }}</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

app/templates/site.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Headers and Cookies for <b>{{ name }}</b> ⭐️</h1
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId]
253-
document.location = "/header/" + site
253+
document.location = "/url-headers/header/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

data/parse.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def read_file(filename, lines=True, strip_newlines=True):
3737
# These are the urls we need to get
3838
port = os.environ.get("INPUT_PORT", "5000")
3939
baseurl = "http://localhost:%s/" % port
40+
ghpages = "url-headers"
4041

4142
# Load the sites lookup to generate urls for
4243
url_file = os.environ.get("INPUT_URLS", os.path.join(here, "urls.txt"))
@@ -111,7 +112,7 @@ def main(outdir):
111112
# Generate primary cookies / home page
112113
response = requests.get(f"{baseurl}")
113114
save_html(response.text, os.path.join(outdir, "index.html"))
114-
response = requests.get(f"{baseurl}cookies")
115+
response = requests.get(f"{baseurl}{ghpages}/cookies")
115116
save_html(response.text, os.path.join(outdir, "cookies", "index.html"))
116117

117118
# Generate site-specific urls
@@ -125,7 +126,7 @@ def main(outdir):
125126
os.makedirs(output_dir)
126127
output_file = os.path.join(output_dir, "index.html")
127128
if not os.path.exists(output_file):
128-
response = requests.get(f"{baseurl}site/{prefix}")
129+
response = requests.get(f"{baseurl}{ghpages}/site/{prefix}")
129130
if response.status_code != 200:
130131
print(f"Problem parsing {url}")
131132
continue
@@ -139,7 +140,7 @@ def main(outdir):
139140
os.makedirs(output_dir)
140141
output_file = os.path.join(output_dir, "index.html")
141142
if not os.path.exists(output_file):
142-
response = requests.get(f"{baseurl}cookies/{cookie}")
143+
response = requests.get(f"{baseurl}{ghpages}/cookies/{cookie}")
143144
if response.status_code != 200:
144145
print(f"Problem parsing cookie url {cookie}")
145146
continue
@@ -153,7 +154,7 @@ def main(outdir):
153154
os.makedirs(output_dir)
154155
output_file = os.path.join(output_dir, "index.html")
155156
if not os.path.exists(output_file):
156-
response = requests.get(f"{baseurl}header/{header}")
157+
response = requests.get(f"{baseurl}{ghpages}/header/{header}")
157158
if response.status_code != 200:
158159
print(f"Problem parsing header url {header}")
159160
continue

docs/cookies/, CN_segments/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, CN_SEGMENTS</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, CN_xid/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, CN_XID</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://wired.com", "value": ""},{"id": 2, "name": "https://newyorker.com", "value": ""}],
243-
lookup: { "1": "https://wired.com", "2": "https://newyorker.com" },
242+
rows: [{"id": 1, "name": "https://wired.com", "value": ""}],
243+
lookup: { "1": "https://wired.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, CN_XID</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, Geo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, GEO</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, KinjaBucket/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, KINJABUCKET</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, KinjaSetBucket/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, KINJASETBUCKET</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, SWID/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, SWID</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://abcnews.go.com", "value": ""},{"id": 2, "name": "https://espn.com", "value": ""},{"id": 3, "name": "https://espn.go.com", "value": ""}],
243-
lookup: { "1": "https://abcnews.go.com", "2": "https://espn.com", "3": "https://espn.go.com" },
242+
rows: [{"id": 1, "name": "https://espn.com", "value": ""},{"id": 2, "name": "https://espn.go.com", "value": ""}],
243+
lookup: { "1": "https://espn.com", "2": "https://espn.go.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, SWID</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, X-GeoIP-Region-Code/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, X-GEOIP-REGION-CODE</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, _dcf/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, _DCF</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, ab_bucket/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, AB_BUCKET</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, ahoy_visitor/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, AHOY_VISITOR</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, bf-geo-country/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, BF-GEO-COUNTRY</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, ccpa/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, CCPA</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, connectionspeed/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, CONNECTIONSPEED</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://espn.com", "value": ""},{"id": 2, "name": "https://espn.go.com", "value": ""}],
243-
lookup: { "1": "https://espn.com", "2": "https://espn.go.com" },
242+
rows: [{"id": 1, "name": "https://espn.go.com", "value": ""}],
243+
lookup: { "1": "https://espn.go.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, CONNECTIONSPEED</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, country/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, COUNTRY</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://www.bluehost.com", "value": ""},{"id": 2, "name": "https://espn.com", "value": ""},{"id": 3, "name": "https://ask.fm", "value": ""},{"id": 4, "name": "https://sky.com", "value": ""},{"id": 5, "name": "https://espn.go.com", "value": ""},{"id": 6, "name": "https://www.sap.com", "value": ""}],
243-
lookup: { "1": "https://www.bluehost.com", "2": "https://espn.com", "3": "https://ask.fm", "4": "https://sky.com", "5": "https://espn.go.com", "6": "https://www.sap.com" },
242+
rows: [{"id": 1, "name": "https://espn.com", "value": ""},{"id": 2, "name": "https://espn.go.com", "value": ""}],
243+
lookup: { "1": "https://espn.com", "2": "https://espn.go.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, COUNTRY</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, edition-view/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, EDITION-VIEW</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, edition/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, EDITION</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://espn.com", "value": ""},{"id": 2, "name": "https://espn.go.com", "value": ""}],
243-
lookup: { "1": "https://espn.com", "2": "https://espn.go.com" },
242+
rows: [{"id": 1, "name": "https://espn.com", "value": ""}],
243+
lookup: { "1": "https://espn.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, EDITION</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, esi-uuid/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, ESI-UUID</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fly_default_edition/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FLY_DEFAULT_EDITION</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fly_device/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, FLY_DEVICE</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://cnet.com", "value": ""},{"id": 2, "name": "https://cbsnews.com", "value": ""},{"id": 3, "name": "https://zdnet.com", "value": ""}],
243-
lookup: { "1": "https://cnet.com", "2": "https://cbsnews.com", "3": "https://zdnet.com" },
242+
rows: [{"id": 1, "name": "https://cnet.com", "value": ""},{"id": 2, "name": "https://zdnet.com", "value": ""}],
243+
lookup: { "1": "https://cnet.com", "2": "https://zdnet.com" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FLY_DEVICE</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fly_preferred_edition/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FLY_PREFERRED_EDITION</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fly_zip/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FLY_ZIP</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fonts_installed/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ <h1 style="margin-left:5px">Sites for <b>, FONTS_INSTALLED</b> ⭐️</h1>
239239

240240
const app = new Vue({
241241
data: () => ({
242-
rows: [{"id": 1, "name": "https://independent.co.uk", "value": ""},{"id": 2, "name": "https://standard.co.uk", "value": ""}],
243-
lookup: { "1": "https://independent.co.uk", "2": "https://standard.co.uk" },
242+
rows: [{"id": 1, "name": "https://standard.co.uk", "value": ""}],
243+
lookup: { "1": "https://standard.co.uk" },
244244
sort: 'id',
245245
sortDir:'asc',
246246
page: 0,
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FONTS_INSTALLED</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, fresh8_toggle/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, FRESH8_TOGGLE</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

docs/cookies/, geo_country/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h1 style="margin-left:5px">Sites for <b>, GEO_COUNTRY</b> ⭐️</h1>
250250
viewRow: function(event) {
251251
var rowId = $(event.target).closest('tr').find('td:first').text()
252252
var site = this.lookup[rowId].replace(/(^\w+:|^)\/\//, '');
253-
document.location = "/site/" + site
253+
document.location = "/url-headers/site/" + site
254254
},
255255
sortBy: function(s) {
256256
if (s === this.sort) {

0 commit comments

Comments
 (0)