Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit db97beb

Browse files
Barny ShergoldBarny Shergolddshevtsovmeker12
authored
Fix 404s on External Links (#8348)
* Fix 404s on External Links * Small change to avoid conflict * Update src/guides/v2.3/coding-standards/docblock-standard-general.md Co-authored-by: Dmitry Shevtsov <[email protected]> * Update src/guides/v2.3/config-guide/secy/secy-xframe.md Co-authored-by: Dmitry Shevtsov <[email protected]> * Update src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md Co-authored-by: Dmitry Shevtsov <[email protected]> Co-authored-by: Barny Shergold <[email protected]> Co-authored-by: Dmitry Shevtsov <[email protected]> Co-authored-by: Margaret Eker <[email protected]>
1 parent 1506ff7 commit db97beb

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

src/cloud/cdn/fastly-vcl-badreferer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Before creating a snippet based on this example, review the values to determine
7373

7474
- `name` — Name for the VCL snippet. For this example, we used `block_bad_referrer`.
7575

76-
- `dynamic` — Value 0 indicates a [regular snippet](https://docs.fastly.com/guides/vcl-snippets/using-regular-vcl-snippets) to upload to the versioned VCL for the Fastly configuration.
76+
- `dynamic` — Value 0 indicates a [regular snippet](https://docs.fastly.com/en/guides/using-regular-vcl-snippets) to upload to the versioned VCL for the Fastly configuration.
7777

7878
- `priority` — Determines when the VCL snippet runs. The priority is `5` to run this snippet code before any of the default Magento VCL snippets (`magentomodule_*`) assigned a priority of 50. You must set the priority for each custom snippet higher or lower than 50 depending on when you want your snippet to run. Snippets with lower priority numbers run first.
7979

src/guides/v2.3/coding-standards/docblock-standard-general.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The goal of this standard is to unify usage of code DocBlocks for all files, not
2020

2121
The following is assumed by default:
2222

23-
* Formatting according to the [phpDocumentor](https://docs.phpdoc.org/latest/references/phpdoc/basic-syntax.html#what-is-a-docblock){:target="_blank"} standard
23+
* Formatting according to the [phpDocumentor](https://docs.phpdoc.org/latest/guide/references/phpdoc/basic-syntax.html#basic-syntax) standard
2424
* Requirements apply for all files regardless of programming language, but a DocBlock standard for the particular language may override it.
2525

2626
## General principles

src/guides/v2.3/config-guide/secy/secy-xframe.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,3 @@ Look for the `X-Frame-Options` value in the headers.
5757

5858
* [mozilla.org](https://developer.mozilla.org/en-US/docs/HTTP/X-Frame-Options)
5959
* [security.stackexchange.com](http://security.stackexchange.com/questions/67889/why-do-browsers-enforce-the-same-origin-security-policy-on-iframes)
60-
* [MSDN blog](http://blogs.msdn.com/b/ieinternals/archive/2010/03/30/combating-clickjacking-with-x-frame-options.aspx)

src/guides/v2.3/config-guide/varnish/config-varnish-advanced.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ functional_areas:
99

1010
Varnish provides several features that prevent customers from experiencing long delays and timeouts when the Magento server is not functioning properly. These features can be configured in the `default.vcl` file. This topic describes the additions that Magento provides in the VCL (Varnish Configuration Language) file you download from [Magento Admin](https://glossary.magento.com/magento-admin).
1111

12-
See the [Varnish Reference Manual](https://www.varnish-cache.org/docs/4.1/reference/index.html) for details about using the Varnish Configuration Language.
12+
See the [Varnish Reference Manual](https://varnish-cache.org/docs/6.5/reference/index.html) for details about using the Varnish Configuration Language.
1313

1414
## Health check {#health}
1515

@@ -31,7 +31,7 @@ Every 5 seconds, this health check calls the `pub/health_check.php` script. This
3131

3232
The `health_check.php` script is located in the `pub` directory. If your Magento root directory is `pub`, then be sure to change the path in the `url` parameter from `/pub/health_check.php` to `health_check.php`.
3333

34-
For more information, see the [Varnish health checks](https://varnish-cache.org/docs/4.1/users-guide/vcl-backends.html?highlight=health%20check#health-checks) documentation.
34+
For more information, see the [Varnish health checks](https://varnish-cache.org/docs/6.5/users-guide/vcl-backends.html#health-checks) documentation.
3535

3636
## Grace mode {#grace}
3737

@@ -82,8 +82,7 @@ bin/magento cache:flush
8282

8383
Saint mode is not part of the main Varnish package. It is a separately-versioned vmod that must be downloaded and installed. As a result, you should re-compile Varnish from source, as described in the following articles:
8484

85-
* [Installing Varnish 5.1](https://varnish-cache.org/docs/5.1/installation/index.html)
86-
* [Installing Varnish 4.1](https://varnish-cache.org/docs/4.1/installation/install.html) (Stable)
85+
* [Installing Varnish 6.5](https://varnish-cache.org/docs/6.5/installation/index.html)
8786

8887
After you've recompiled, you can install the Saint mode [module](https://glossary.magento.com/module). In general, follow these steps:
8988

src/guides/v2.3/config-guide/varnish/config-varnish-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ functional_areas:
1111

1212
Installing the Varnish software is beyond the scope of this guide. For more information about installing Varnish, see:
1313

14-
* [installation wiki](http://wiki.mikejung.biz/Varnish)
14+
* [Installation wiki](https://www.varnish-software.com/wiki/start/index.html)
1515
* [Varnish installation guides](https://www.varnish-cache.org/docs)
1616
* [How to install Varnish (Tecmint)](http://www.tecmint.com/install-varnish-cache-web-accelerator)
1717

src/guides/v2.3/extension-dev-guide/cli-cmds/cli-howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Following is a summary of the process:
126126
```
127127

128128
{:.bs-callout-info}
129-
Style the output text by using `<error>`, `<info>`, or `<comment>` tags. See [Symfony](https://symfony.com/doc/master/console/coloring.html){:target="_blank"} documentation for more information about styling.
129+
Style the output text by using `<error>`, `<info>`, or `<comment>` tags. See [Symfony](https://symfony.com/doc/current/console/coloring.html){:target="_blank"} documentation for more information about styling.
130130

131131
1. Declare your Command class in `Magento\Framework\Console\CommandListInterface` and configure the command name using dependency injection (`<your component root dir>/etc/di.xml`):
132132

src/guides/v2.4/test/integration/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Data Fixture|`@magentoDataFixture`|`@magentoDataFixture <script_filename>|<metho
2020
Data Fixture Before Transaction|`@magentoDataFixtureBeforeTransaction`|`@magentoDataFixtureBeforeTransaction <script_filename>|<method_name>`|Points to a class or a method which creates testing entities (fixtures) for test execution before the transaction has begun. You will need to implement a rollback file for changes made here. (e.g. Fixture file my_fixture.php would also require a my_fixture_rollback.php that reverts the original fixture's changed.)
2121
Application Area|`@magentoAppArea`|`@magentoAppArea adminhtml|frontend|global`|Configures test environment in the context of specified application area.
2222
Enable/Disable Cache|`@magentoCache`|`@magentoCache <type>|all enabled|disabled`|Enables or disables certain cache segment or all of them to prevent isolation problems.
23-
Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode <indexer> <mode>`|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922_).
23+
Indexer Dimension Mode|`@magentoIndexerDimensionMode`|`@magentoIndexerDimensionMode <indexer> <mode>`|Sets the indexer dimension mode for the test run. More information can be found in the [DevBlog](https://community.magento.com/t5/Magento-DevBlog/Indexers-parallelization-and-optimization/ba-p/104922).
2424
Register Components|`@magentoComponentsDir`|`@magentoComponentsDir <dir_path>`|Registers fixture components from specified directory (recursively). Unregisters the components after the test is finished.
2525

2626
### Applying annotations

0 commit comments

Comments
 (0)