diff --git a/README.md b/README.md index a56d35627..9c2b14e07 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ 1. a project to discover how much of the Web (browser APIs, JS features, HTTP headers, etc.) will work under Surfly. 2. the data gathered from our investigations, stored under `features/`. - run `populate.py` to create new features and remove old features as needed -3. a [nice interface](https://app.pagescms.org/qguv/surfly-compat-data) for devs to update Surfly compatibility data. +3. a [nice interface](https://app.pagescms.org/surfly/compat) for devs to update Surfly compatibility data. - uses Pages CMS, which can be configured using `.pages.yml` -3. a [demo page](https://qguv.github.io/surfly-compat-data) which injects this data into browser compatibility tables on the MDN website. +3. a [demo page](https://surfly.github.io/compat) which injects this data into browser compatibility tables on the MDN website. - the source of this demo page is stored under `docs/`[^1] and hosted by Github pages - run `overlay.py` to create JSON files of browser compatibility data in the format used by MDN; generated data will be saved in the `data` branch of this repository diff --git a/docs/index.html b/docs/index.html index 6e372e329..8c6bf4346 100644 --- a/docs/index.html +++ b/docs/index.html @@ -47,43 +47,43 @@

Examples

api.DeviceOrientationEvent expected (icf: unknown) - edit + edit api.InputEvent supported - edit + edit api.InputEvent.InputEvent expected - edit + edit api.InputEvent.inputType supported (icf limitations) - edit + edit api.Serial supported (icf: never) - edit + edit api.WebSocket supported - edit + edit api.WebSocket.WebSocket supported - edit + edit diff --git a/docs/script-embedded.js b/docs/script-embedded.js index 1a87ea6bb..bb0cd886c 100644 --- a/docs/script-embedded.js +++ b/docs/script-embedded.js @@ -1,5 +1,5 @@ const bcd_url_prefix = 'https://bcd.developer.mozilla.org/bcd/api/v0/current/'; -const scd_url_prefix = 'https://raw.githubusercontent.com/qguv/surfly-compat-data/data/scd/'; +const scd_url_prefix = 'https://raw.githubusercontent.com/surfly/compat/data/scd/'; // intercept requests to MDN browser-compat-data window.__native_fetch = window.fetch; diff --git a/docs/script.js b/docs/script.js index 7360c71ee..43e621fd2 100644 --- a/docs/script.js +++ b/docs/script.js @@ -34,7 +34,7 @@ async function create_session() { body: JSON.stringify({ url, headless: true, - script_embedded: `https://raw.githubusercontent.com/qguv/surfly-compat-data/main/docs/script-embedded.js`, + script_embedded: `https://raw.githubusercontent.com/surfly/compat/main/docs/script-embedded.js`, }), };