Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Fix links #5898

Merged
merged 7 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ Please ensure the `test` npm-script passes. Any formatting errors can typically

If adding a new template, please pick a unique name and aim for simplicity and clarity. Contributions that are meant for Workers must begin with the `worker-` prefix, while those meant for Pages must have the `pages-` prefix.

Also see [Monorepo Contributing Guidelines](../../CONTRIBUTING.md) for more information.
Also see [Monorepo Contributing Guidelines](../CONTRIBUTING.md) for more information.

### Code of Conduct

See [CODE OF CONDUCT](../../CODE_OF_CONDUCT.md) for details.
See [CODE OF CONDUCT](../CODE_OF_CONDUCT.md) for details.

## License

See [APACHE LICENSE](../../LICENSE-MIT) for details.
See [MIT LICENSE](../../LICENSE-APACHE) for details.
See [APACHE LICENSE](../LICENSE-APACHE) for details.
See [MIT LICENSE](../LICENSE-MIT) for details.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ From the gallery page click the "Upload Plugin" button to manually upload the pl

![Upload Plugin](docs/wp-plugin-upload-button.png)

From the upload page select the "Choose File" button and select the [plugin zip file](https://github.com/cloudflare/worker-examples/raw/master/examples/edge-cache-html/WordPress%20Plugin/cloudflare-page-cache.zip) downloaded from this repository:
From the upload page select the "Choose File" button and select the [plugin zip file](https://github.com/cloudflare/workers-sdk/tree/main/templates/examples/edge-cache-html/WordPress%20Plugin/cloudflare-page-cache.zip) downloaded from this repository:

![Select Plugin Zip File](docs/wp-plugin-upload-select.png)

Expand Down
2 changes: 1 addition & 1 deletion templates/worker-speedtest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Worker for measuring download / upload connection speed from the client side, using the [Performance Timing API](https://w3c.github.io/perf-timing-primer/).

[`index.js`](https://github.com/cloudflare/worker-speedtest-template/blob/master/router.js) is the content of the Workers script.
[`index.js`](https://github.com/cloudflare/worker-speedtest-template/blob/master/src/index.js) is the content of the Workers script.

_Note:_ when running this as your own worker, your latency measurements may differ a small amount from the [official version](https://speed.cloudflare.com). This is due to the fact that we rely on an internal mechanism to determine the amount of server processing time, which is then subtracted from the measurement.

Expand Down
Loading