From 33c57aa6a0a5a246c35d852faa9d50ee4cc0faae Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 15:10:38 -0400 Subject: [PATCH 1/5] Broken link to terms of use --- src/components/Footer/index.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Footer/index.jsx b/src/components/Footer/index.jsx index d5d0035ae..e3daf0d67 100644 --- a/src/components/Footer/index.jsx +++ b/src/components/Footer/index.jsx @@ -35,7 +35,6 @@ const navLinks2 = [ const additionalLinks = [ { label: 'Tezos.com', to: 'https://tezos.com/' }, - { label: 'Terms of Use', to: '/terms-of-use' }, { label: 'Privacy Policy', to: 'https://tezos.com/privacy-notice/' }, ]; From a218fdd36eeeb92ffc623567666fc69a20de5315 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 15:12:33 -0400 Subject: [PATCH 2/5] Broken links to tutorials --- docs/tutorials.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorials.mdx b/docs/tutorials.mdx index ba78cbd65..10557003b 100644 --- a/docs/tutorials.mdx +++ b/docs/tutorials.mdx @@ -16,7 +16,7 @@ These tutorials are intended for developers who are starting work with Tezos: @@ -48,7 +48,7 @@ These tutorials contain multiple parts and are intended for developers with some @@ -88,7 +88,7 @@ These tutorials are intended for developers who are familiar with Tezos and want From 4cf1b0afb1c48d0233a0b72df574d398d3b6f9f5 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 15:23:15 -0400 Subject: [PATCH 3/5] Correct links to LIGO docs --- docs/tutorials/dapp/part-1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/dapp/part-1.md b/docs/tutorials/dapp/part-1.md index 267b8d4ee..ef5da823e 100644 --- a/docs/tutorials/dapp/part-1.md +++ b/docs/tutorials/dapp/part-1.md @@ -80,19 +80,19 @@ taq create contract pokeGame.jsligo - The LIGO Set library has a function **add** to add one element to the Set of items. There is no concept of Class in LIGO, you use a library to apply functions on objects. - A list of operations is required to return. An empty list is returned here as there is no other contract to call. - [Have a look at the Set library documentation](https://ligolang.org/docs/language-basics/sets-lists-tuples#sets) + [Have a look at the Set library documentation](https://ligolang.org/docs/data-types/sets) - [Have a look at the List library documentation](https://ligolang.org/docs/language-basics/sets-lists-tuples/?lang=jsligo#lists) + [Have a look at the List library documentation](https://ligolang.org/docs/data-types/lists) Here, get the caller address using `Tezos.get_source()`. Tezos library provides useful functions for manipulating blockchain objects. - [Have a look at the Tezos library documentation](https://ligolang.org/docs/reference/current-reference) + [Have a look at the Tezos library documentation](https://ligolang.org/docs/reference/tezos-reference?lang=jsligo) ## Simulate a call on your smart contract The LIGO command-line provides sub-commands to test your LIGO code. -[Have a look at the Testing Framework documentation](https://ligolang.org/docs/advanced/testing) +[Have a look at the Testing Framework documentation](https://ligolang.org/docs/testing) 1. Compile the contract with Taqueria (Force to use a specific LIGO version with `TAQ_LIGO_IMAGE` Taqueria environment variable). From 5044d29bb072c762ce79fc2325b409dffb7dd16c Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 15:25:55 -0400 Subject: [PATCH 4/5] Check links in the preview to make sure this catches everything --- .github/workflows/link-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index fe99229f9..2f92f2fe1 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -2,9 +2,9 @@ name: Check links on: workflow_dispatch: - schedule: - # Every Monday at noon UTC - - cron: "0 12 * * 1" + # schedule: + # # Every Monday at noon UTC + # - cron: "0 12 * * 1" jobs: check_urls: @@ -13,5 +13,5 @@ jobs: - name: Check links uses: paulschuberth/check-links-action@v1 with: - start-url: "https://docs.tezos.com/" + start-url: "https://docs-staging-git-fix-links-trili-tech.vercel.app/overview/" From 65c28eaf54c37907191cffd10532b52937d5d078 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 12 Sep 2024 15:47:32 -0400 Subject: [PATCH 5/5] Revert "Check links in the preview to make sure this catches everything" This reverts commit 5044d29bb072c762ce79fc2325b409dffb7dd16c. --- .github/workflows/link-check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 2f92f2fe1..fe99229f9 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -2,9 +2,9 @@ name: Check links on: workflow_dispatch: - # schedule: - # # Every Monday at noon UTC - # - cron: "0 12 * * 1" + schedule: + # Every Monday at noon UTC + - cron: "0 12 * * 1" jobs: check_urls: @@ -13,5 +13,5 @@ jobs: - name: Check links uses: paulschuberth/check-links-action@v1 with: - start-url: "https://docs-staging-git-fix-links-trili-tech.vercel.app/overview/" + start-url: "https://docs.tezos.com/"