Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Convert .htaccess files to use _headers and _redirects. #855

Open
wants to merge 25 commits into
base: 11ty
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5c5a72a
Add wrangler; upgrade eleventy to v3.0.0.
BigBlueHat Mar 27, 2025
2d24fed
Ignore package-lock.json.
BigBlueHat Mar 27, 2025
a4d2d59
Add .editorconfig.
BigBlueHat Mar 27, 2025
731f325
Add npm run pages command.
BigBlueHat Mar 31, 2025
6bd39da
Add info about npm run build & pages.
BigBlueHat Mar 31, 2025
1a59626
Copy over _headers and _redirects.
BigBlueHat Mar 31, 2025
fd06e18
Migrate root .htaccess to _redirects.
BigBlueHat Mar 27, 2025
0a4db61
Remove images/.htaccess; handled by ignores.
BigBlueHat Mar 27, 2025
0d018e8
Migrate context/.htaccess to _headers/_redirects.
BigBlueHat Mar 27, 2025
3ce6cf6
Remove broken spec/ED/.htaccess.
BigBlueHat Mar 27, 2025
bbcdbc9
Migrate spec/latest/.htaccess.
BigBlueHat Mar 27, 2025
7d3748d
Absolutize URLs in 404 page.
BigBlueHat Mar 31, 2025
3c45490
Use middleware to handle conneg in test-suite.
BigBlueHat Mar 31, 2025
214890b
Parse and sort accept headers; pick best q.
BigBlueHat Mar 31, 2025
4e8b12f
Migrate test-suite/tests/ redirs & headers.
BigBlueHat Mar 31, 2025
2b262ec
Remove utils/; No longer needed.
BigBlueHat Mar 31, 2025
3146f22
Switch to type: module.
BigBlueHat Apr 1, 2025
4881cf3
Add initial test-redirects.js script.
BigBlueHat Apr 1, 2025
48a1e85
Test Link headers via _headers.
BigBlueHat Apr 2, 2025
1cf54e7
Optimize _headers order and format.
BigBlueHat Apr 2, 2025
aeda593
Reorder test-redirects.js; group test types.
BigBlueHat Apr 2, 2025
b1403b8
Test all redirects in _redirects.
BigBlueHat Apr 2, 2025
4b359c2
Optimize redirect order; https for schema.org.
BigBlueHat Apr 2, 2025
c0002da
Set wrangler compatibility date.
BigBlueHat Apr 2, 2025
33d5dcf
Remove `eleventy --serve`; promote using `run pages`.
BigBlueHat Apr 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
6 changes: 4 additions & 2 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ const drafts = [
'latest'
];

module.exports = function(eleventyConfig) {
export default async function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('404.html');
eleventyConfig.addPassthroughCopy('.htaccess');
eleventyConfig.addPassthroughCopy('LICENSE.md');
eleventyConfig.addPassthroughCopy('_headers');
eleventyConfig.addPassthroughCopy('_redirects');
eleventyConfig.addPassthroughCopy('benchmarks/**/*.{jsonld,nq,md}');
eleventyConfig.addPassthroughCopy('contexts/**/*.{htaccess,html,jsonld}');
eleventyConfig.addPassthroughCopy('contexts/{event,person,place,recipe,remote-context}');
Expand All @@ -35,13 +37,13 @@ module.exports = function(eleventyConfig) {
}
eleventyConfig.addPassthroughCopy('static');
eleventyConfig.addPassthroughCopy('test-suite');
eleventyConfig.addPassthroughCopy('utils');
eleventyConfig.ignores.add('CONTRIBUTING.md');
eleventyConfig.ignores.add('LICENSE.md');
eleventyConfig.ignores.add('README.md');
eleventyConfig.ignores.add('benchmarks/README.md');
eleventyConfig.ignores.add('contexts/person.html');
eleventyConfig.ignores.add('examples');
eleventyConfig.ignores.add('images/Makefile');
eleventyConfig.ignores.add('images/README.md');
eleventyConfig.ignores.add('minutes/**/*');
eleventyConfig.ignores.add('ns/json-ld.html');
Expand Down
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*.sw[op]
.DS_Store
.wrangler
node_modules
node_modules/
playground/jsonld.js
_site
_site/
package-lock.json
7 changes: 0 additions & 7 deletions .htaccess

This file was deleted.

14 changes: 7 additions & 7 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

<!-- Style Sheets -->
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/bootstrap.css">
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="static/css/bootstrap/font-awesome.css">
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap/font-awesome.css">
<style>
/** bootstrap 2.3.2 overrides **/
.alert.alert-success a {color: #3d9400; text-decoration: underline }
</style>

<link rel="shortcut icon" href="favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />

<!-- Script tags -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
Expand Down Expand Up @@ -53,10 +53,10 @@
<div class="nav-collapse">
<ul class="nav">
<li>
<a href="playground/"><span class="icon-beer"></span> Playground</a>
<a href="/playground/"><span class="icon-beer"></span> Playground</a>
</li>
<li>
<a href="learn/"><span class="icon-book"></span> Documentation</a>
<a href="/learn/"><span class="icon-book"></span> Documentation</a>
</li>
<li><a href="#developers"><span class="icon-beaker"></span> Developers</a></li>
<li class="dropdown">
Expand All @@ -82,7 +82,7 @@
<li><a href="/spec/">1.0 drafts (historic)</a></li>
</ul>
</li>
<li><a href="images/"><span class="icon-picture"></span> Branding</a></li>
<li><a href="/images/"><span class="icon-picture"></span> Branding</a></li>
</ul>
</div>
<!--/.nav-collapse -->
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@ To develop this website locally:
```sh
# install dependencies
npm i
# to rebuild on changes and run a server:
npm run serve
# to rebuild on changes:
# to just build the static files to `_site/`
npm run build
# to rebuild the files on changes
npm run watch
# to serve `_site/` with Cloudflare Pages feature support
npm run pages # visit http://localhost:8788/
```

Additionally, if you want to use or test the playground `http:` proxy, also run
Expand Down
30 changes: 30 additions & 0 deletions _headers
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/contexts/event
Content-Type: application/ld+json
Access-Control-Allow-Origin: "*"
/contexts/person
Content-Type: application/ld+json
Access-Control-Allow-Origin: "*"
/contexts/place
Content-Type: application/ld+json
Access-Control-Allow-Origin: "*"
/contexts/recipe
Content-Type: application/ld+json
Access-Control-Allow-Origin: "*"

# Tests 0009-0011 Add link header
/test-suite/tests/remote-doc-0009-in.jsonld
Link: <remote-doc-0009-context.jsonld>; rel="http://www.w3.org/ns/json-ld#context"
/test-suite/tests/remote-doc-0010-in.json
Link: <remote-doc-0010-context.jsonld>; rel="http://www.w3.org/ns/json-ld#context"
/test-suite/tests/remote-doc-0011-in.jldt
Link: <remote-doc-0011-context.jsonld>; rel="http://www.w3.org/ns/json-ld#context"

# Test 00012 adds multiple link headers
/test-suite/tests/remote-doc-0012-in.json
Link: <remote-doc-0012-context1.jsonld>; rel="http://www.w3.org/ns/json-ld#context"
Link: <remote-doc-0012-context2.jsonld>; rel="http://www.w3.org/ns/json-ld#context"

/test-suite/tests/*.jldt
Content-Type: application/jldTest+json
/test-suite/tests/*.jldte
Content-Type: application/jldTest
20 changes: 20 additions & 0 deletions _redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/playground-dev /playground 302

/contexts/schema.org.jsonld https://schema.org/ 301

/spec/latest/json-ld-syntax https://www.w3.org/TR/json-ld/ 301
/spec/latest/json-ld-syntax/ https://www.w3.org/TR/json-ld/ 301

# Tests 0005-0007, status redirect to 0001
/test-suite/remote-doc-0005-in.jsonld /test-suite/tests/remote-doc-0001-in.jsonld 301
/test-suite/remote-doc-0006-in.jsonld /test-suite/tests/remote-doc-0001-in.jsonld 303
/test-suite/remote-doc-0007-in.jsonld /test-suite/tests/remote-doc-0001-in.jsonld 307

/spec/latest/rdf-graph-normalization https://w3c-ccg.github.io/rdf-dataset-canonicalization/spec/ 307
/spec/latest/rdf-graph-normalization/* https://w3c-ccg.github.io/rdf-dataset-canonicalization/spec/:splat 307
/spec/latest/rdf-dataset-normalization/* https://w3c-ccg.github.io/rdf-dataset-canonicalization/spec/:splat 307
/spec/latest/rdf-dataset-canonicalization/* https://w3c-ccg.github.io/rdf-dataset-canonicalization/spec/:splat 307

/spec/latest/json-ld/* https://www.w3.org/TR/json-ld/:splat 301
/spec/latest/json-ld-api/* https://www.w3.org/TR/json-ld-api/:splat 301
/spec/latest/json-ld-framing/* https://www.w3.org/TR/json-ld-framing/:splat 301
7 changes: 0 additions & 7 deletions contexts/.htaccess

This file was deleted.

57 changes: 57 additions & 0 deletions functions/test-suite/_middleware.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
function parseAcceptHeader(acceptHeader) {
// generated by Google AI "parse accept header javascript"
if (!acceptHeader) {
return [];
}

return acceptHeader.split(',')
.map(item => item.trim())
.map(item => {
const parts = item.split(';');
const value = parts[0].trim();
let quality = 1;

if (parts.length > 1) {
const q = parts[1].trim();
if (q.startsWith('q=')) {
quality = parseFloat(q.substring(2));
}
}

return { value, quality };
})
.sort((a, b) => b.quality - a.quality);
// From:
// text/html, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8
// Expected output:
// [
// { value: 'text/html', quality: 1 },
// { value: 'application/xhtml+xml', quality: 1 },
// { value: 'application/xml', quality: 0.9 },
// { value: '*/*', quality: 0.8 }
// ]
}

const typeToExt = {
"text/turtle": "ttl",
"application/ld+json": "jsonld"
};

export async function onRequest(context) {
try {
const parsedAccept = parseAcceptHeader(context.request.headers.get('Accept'));
const accept = parsedAccept[0].value;

// if we have a mapping for this extension, send it. Otherwise fall through.
if(Object.keys(typeToExt).indexOf(accept) > -1) {
const ext = typeToExt[accept] || `html`;
const rewrittenUrl = context.request.url + '.' + ext;
const asset = await context.env.ASSETS.fetch(rewrittenUrl);
const response = new Response(asset.body, asset);
return response;
}
return context.next();
} catch (err) {
return new Response(`${err.message}\n${err.stack}`, { status: 500 });
}
}
10 changes: 0 additions & 10 deletions images/.htaccess

This file was deleted.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
"name": "json-ld.org",
"private": true,
"description": "json-ld.org homepage",
"type": "module",
"scripts": {
"build": "eleventy",
"serve": "eleventy --serve",
"pages": "wrangler pages dev _site/ --compatibility-date=2025-04-02",
"watch": "eleventy --watch",
"dev": "wrangler pages dev _site --compatibility-date=2024-04-27 --live-reload --port 8788",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.9"
"@11ty/eleventy": "^3.0.0",
"wrangler": "^4.6.0"
}
}
9 changes: 6 additions & 3 deletions requirements/index.11tydata.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
const fs = require('node:fs/promises');
const path = require('node:path');
import { fileURLToPath } from 'url';
import fs from 'node:fs/promises';
import path from 'node:path';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

const specStatuses = ['ED'];

Expand Down Expand Up @@ -35,7 +38,7 @@ const specs = [
'requirements'
];

module.exports = async function() {
export default async function() {
return {
specs: Object.fromEntries(await Promise.all(specs.map(async spec => {
return [spec, await getDrafts(spec)];
Expand Down
3 changes: 0 additions & 3 deletions spec/ED/.htaccess

This file was deleted.

17 changes: 10 additions & 7 deletions spec/index.11tydata.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
const fs = require('node:fs/promises');
const path = require('node:path');
import { fileURLToPath } from 'url';
import fs from 'node:fs/promises';
import path from 'node:path';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

const specStatuses = ['ED', 'FCGS', 'WD', 'CR', 'PR', 'REC'/*, 'CG-FINAL'*/];

Expand Down Expand Up @@ -33,14 +36,14 @@ async function getDrafts(spec) {

const specs = [
'json-ld',
'json-ld-syntax',
'json-ld-api',
'json-ld-api-best-practices',
'json-ld-framing',
'json-ld-syntax',
'json-ld-api',
'json-ld-api-best-practices',
'json-ld-framing',
'json-ld-rdf'
];

module.exports = async function() {
export default async function() {
return {
specs: Object.fromEntries(await Promise.all(specs.map(async spec => {
return [spec, await getDrafts(spec)];
Expand Down
12 changes: 0 additions & 12 deletions spec/latest/.htaccess

This file was deleted.

Loading