From 3443268f160e85827a17ccfdcdea871af68d7bcb Mon Sep 17 00:00:00 2001 From: tinytb <5957298+tinytb@users.noreply.github.com> Date: Fri, 30 Sep 2022 17:03:33 -0700 Subject: [PATCH] fix: capitalization of GitHub and JavaScript --- packages/docs/src/theme/Footer/footer.json | 2 +- packages/website/content/pages/about.json | 2 +- packages/website/content/pages/faq.json | 6 +++--- packages/website/content/pages/general.json | 2 +- packages/website/content/pages/index.json | 2 +- packages/website/content/pages/pricing.json | 2 +- packages/website/content/pages/w3link.json | 2 +- packages/website/content/pages/w3name.json | 2 +- packages/website/pages/docs/how-tos/troubleshooting.md | 2 +- packages/website/pages/login/index.js | 2 +- packages/website/pages/pricing.js | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/docs/src/theme/Footer/footer.json b/packages/docs/src/theme/Footer/footer.json index dc03701cf6..4597806713 100644 --- a/packages/docs/src/theme/Footer/footer.json +++ b/packages/docs/src/theme/Footer/footer.json @@ -42,7 +42,7 @@ "url": "https://web3.storage/login" }, { - "text": "Javascript Client Library", + "text": "JavaScript Client Library", "url": "/reference/js-client-library" }, { diff --git a/packages/website/content/pages/about.json b/packages/website/content/pages/about.json index bbe6157e6d..5d14ea74e5 100644 --- a/packages/website/content/pages/about.json +++ b/packages/website/content/pages/about.json @@ -310,7 +310,7 @@ }, { "url": "/docs/reference/js-client-library", - "text": "Javascript Client Library" + "text": "JavaScript Client Library" } ] } diff --git a/packages/website/content/pages/faq.json b/packages/website/content/pages/faq.json index 61092c2aaa..59bc6dfc22 100644 --- a/packages/website/content/pages/faq.json +++ b/packages/website/content/pages/faq.json @@ -67,11 +67,11 @@ { "id": "how-to-delete", "heading": "How can I delete items from Web3.Storage?", - "content": "You can delete files listed in your account. Simply log-in to your account and use the file manager on the files page. It's currently not possible to delete files via the API or the client libraries.

However, once a file is uploaded to web3.storage, there cannot be a guarantee that all copies of the file are gone from the IPFS network. As soon as a file is uploaded, other IPFS nodes can access and store a copy of the data. The data only becomes unavailable when the last IPFS node has stopped pinning the file, and all copies are garbage collected. As a consequence you should only upload to web3.storage files that you know can be shared with anyone forever, or are securely encrypted.

We are in the process of rolling out a new client and service called w3up that programmatically allows you to unlink uploads from being associated with your account. The Alpha version CLI can be found here and the client here. Later, the current Javascript client will use w3up and all existing uploads and accounts will be migrated to the new service." + "content": "You can delete files listed in your account. Simply log-in to your account and use the file manager on the files page. It's currently not possible to delete files via the API or the client libraries.

However, once a file is uploaded to web3.storage, there cannot be a guarantee that all copies of the file are gone from the IPFS network. As soon as a file is uploaded, other IPFS nodes can access and store a copy of the data. The data only becomes unavailable when the last IPFS node has stopped pinning the file, and all copies are garbage collected. As a consequence you should only upload to web3.storage files that you know can be shared with anyone forever, or are securely encrypted.

We are in the process of rolling out a new client and service called w3up that programmatically allows you to unlink uploads from being associated with your account. The Alpha version CLI can be found here and the client here. Later, the current JavaScript client will use w3up and all existing uploads and accounts will be migrated to the new service." }, { "id": "using-api-directly", - "heading": "Can I use Web3.Storage, even if I don't want to use the Javascript or go client libraries?", + "heading": "Can I use Web3.Storage, even if I don't want to use the JavaScript or go client libraries?", "content": "Yes, you can use the Web3.Storage APIs directly, but in that case you need to ensure that you provide the API with the right format. The API won't accept raw files above 100MB, so you'll need to package them as .CAR files and chunk them to the right size using CLI tools like ipfs-car and carbites." }, { @@ -82,7 +82,7 @@ { "id": "uploading-without-account", "heading": "How can my users upload files directly to Web3.Storage without them needing to create their own account?", - "content": "The current Javascript client and API requires you to provide the API token in your front-end, allowing anyone to upload files to your account and list already uploaded files. However, we are in the process of rolling out a new client and service called w3up that natively uses UCAN for authentication, meaning you can cryptographically delegate permission to other actors to directly upload to your account. The Alpha version CLI can be found here and the client here. Later, the current Javascript client will use w3up and all existing uploads and accounts will be migrated to the new service." + "content": "The current JavaScript client and API requires you to provide the API token in your front-end, allowing anyone to upload files to your account and list already uploaded files. However, we are in the process of rolling out a new client and service called w3up that natively uses UCAN for authentication, meaning you can cryptographically delegate permission to other actors to directly upload to your account. The Alpha version CLI can be found here and the client here. Later, the current JavaScript client will use w3up and all existing uploads and accounts will be migrated to the new service." } ] } diff --git a/packages/website/content/pages/general.json b/packages/website/content/pages/general.json index a8449ca003..e1ef5bcb4e 100644 --- a/packages/website/content/pages/general.json +++ b/packages/website/content/pages/general.json @@ -159,7 +159,7 @@ "url": "/login" }, { - "text": "Javascript Client Library", + "text": "JavaScript Client Library", "url": "/docs/reference/js-client-library" }, { diff --git a/packages/website/content/pages/index.json b/packages/website/content/pages/index.json index 9e787ec1b4..9dee400a6a 100644 --- a/packages/website/content/pages/index.json +++ b/packages/website/content/pages/index.json @@ -713,7 +713,7 @@ }, { "url": "/docs/reference/js-client-library", - "text": "Javascript Client Library" + "text": "JavaScript Client Library" } ] } diff --git a/packages/website/content/pages/pricing.json b/packages/website/content/pages/pricing.json index 76eb2d02a9..d5e0fa596c 100644 --- a/packages/website/content/pages/pricing.json +++ b/packages/website/content/pages/pricing.json @@ -296,7 +296,7 @@ }, { "url": "/docs/reference/js-client-library", - "text": "Javascript Client Library" + "text": "JavaScript Client Library" } ] } diff --git a/packages/website/content/pages/w3link.json b/packages/website/content/pages/w3link.json index 706d2c9add..698ec13de8 100644 --- a/packages/website/content/pages/w3link.json +++ b/packages/website/content/pages/w3link.json @@ -328,7 +328,7 @@ }, { "url": "/docs/reference/js-client-library", - "text": "Javascript Client Library" + "text": "JavaScript Client Library" } ] } diff --git a/packages/website/content/pages/w3name.json b/packages/website/content/pages/w3name.json index 9b79db5236..a4d751e15e 100644 --- a/packages/website/content/pages/w3name.json +++ b/packages/website/content/pages/w3name.json @@ -299,7 +299,7 @@ }, { "url": "/docs/reference/js-client-library", - "text": "Javascript Client Library" + "text": "JavaScript Client Library" } ] } diff --git a/packages/website/pages/docs/how-tos/troubleshooting.md b/packages/website/pages/docs/how-tos/troubleshooting.md index 63eb53062b..b9b008a619 100644 --- a/packages/website/pages/docs/how-tos/troubleshooting.md +++ b/packages/website/pages/docs/how-tos/troubleshooting.md @@ -7,7 +7,7 @@ description: A collection of common issues for new developers, and solutions to This page contains a collection of common issues for new developers, and solutions to those problems. -## I'm getting import errors when importing the Javascript client library +## I'm getting import errors when importing the JavaScript client library Some common situations where this might happen include: diff --git a/packages/website/pages/login/index.js b/packages/website/pages/login/index.js index f392f03c75..4a958386e8 100644 --- a/packages/website/pages/login/index.js +++ b/packages/website/pages/login/index.js @@ -82,7 +82,7 @@ const Login = () => {

{pageContent.heading}

or

diff --git a/packages/website/pages/pricing.js b/packages/website/pages/pricing.js index 74ec99f151..ab4c5e481e 100644 --- a/packages/website/pages/pricing.js +++ b/packages/website/pages/pricing.js @@ -352,7 +352,7 @@ const LinkSection = () => ( HTTP API Reference - Javascript Client Library + JavaScript Client Library