logiguard fork v3: full patch set on verified 8c74db0 tree
Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
15
.cloudflare/README.md
Normal file
15
.cloudflare/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
We have two cloudflare workers that let us serve some assets of this repo
|
||||
from Cloudflare.
|
||||
|
||||
- `open-source-website-assets` is used for `install.sh`
|
||||
- `docs-proxy` is used for `https://zed.dev/docs`
|
||||
|
||||
During docs deployments, both of these (and the files they depend on) are uploaded to Cloudflare.
|
||||
|
||||
### Deployment
|
||||
|
||||
These functions are deployed by the docs deployment workflows. Worker Rules in Cloudflare intercept requests to zed.dev and proxy them to the appropriate workers.
|
||||
|
||||
### Testing
|
||||
|
||||
You can use [wrangler](https://developers.cloudflare.com/workers/cli-wrangler/install-update) to test these workers locally, or to deploy custom versions.
|
||||
29
.cloudflare/docs-proxy/src/worker.js
Normal file
29
.cloudflare/docs-proxy/src/worker.js
Normal file
@@ -0,0 +1,29 @@
|
||||
export default {
|
||||
async fetch(request, _env, _ctx) {
|
||||
const url = new URL(request.url);
|
||||
|
||||
if (url.pathname === "/docs/nightly") {
|
||||
url.hostname = "docs-nightly.pages.dev";
|
||||
url.pathname = "/docs/";
|
||||
} else if (url.pathname.startsWith("/docs/nightly/")) {
|
||||
url.hostname = "docs-nightly.pages.dev";
|
||||
url.pathname = url.pathname.replace("/docs/nightly/", "/docs/");
|
||||
} else if (url.pathname === "/docs/preview") {
|
||||
url.hostname = "docs-preview-5xd.pages.dev";
|
||||
url.pathname = "/docs/";
|
||||
} else if (url.pathname.startsWith("/docs/preview/")) {
|
||||
url.hostname = "docs-preview-5xd.pages.dev";
|
||||
url.pathname = url.pathname.replace("/docs/preview/", "/docs/");
|
||||
} else {
|
||||
url.hostname = "docs-anw.pages.dev";
|
||||
}
|
||||
|
||||
let res = await fetch(url, request);
|
||||
|
||||
if (res.status === 404) {
|
||||
res = await fetch("https://zed.dev/404");
|
||||
}
|
||||
|
||||
return res;
|
||||
},
|
||||
};
|
||||
8
.cloudflare/docs-proxy/wrangler.toml
Normal file
8
.cloudflare/docs-proxy/wrangler.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
name = "docs-proxy"
|
||||
main = "src/worker.js"
|
||||
compatibility_date = "2024-05-03"
|
||||
workers_dev = true
|
||||
|
||||
[[routes]]
|
||||
pattern = "zed.dev/docs*"
|
||||
zone_name = "zed.dev"
|
||||
19
.cloudflare/open-source-website-assets/src/worker.js
Normal file
19
.cloudflare/open-source-website-assets/src/worker.js
Normal file
@@ -0,0 +1,19 @@
|
||||
export default {
|
||||
async fetch(request, env) {
|
||||
const url = new URL(request.url);
|
||||
const key = url.pathname.slice(1);
|
||||
|
||||
const object = await env.OPEN_SOURCE_WEBSITE_ASSETS_BUCKET.get(key);
|
||||
if (!object) {
|
||||
return await fetch("https://zed.dev/404");
|
||||
}
|
||||
|
||||
const headers = new Headers();
|
||||
object.writeHttpMetadata(headers);
|
||||
headers.set("etag", object.httpEtag);
|
||||
|
||||
return new Response(object.body, {
|
||||
headers,
|
||||
});
|
||||
},
|
||||
};
|
||||
8
.cloudflare/open-source-website-assets/wrangler.toml
Normal file
8
.cloudflare/open-source-website-assets/wrangler.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
name = "open-source-website-assets"
|
||||
main = "src/worker.js"
|
||||
compatibility_date = "2024-05-15"
|
||||
workers_dev = true
|
||||
|
||||
[[r2_buckets]]
|
||||
binding = 'OPEN_SOURCE_WEBSITE_ASSETS_BUCKET'
|
||||
bucket_name = 'zed-open-source-website-assets'
|
||||
Reference in New Issue
Block a user