From 13eac7f7391c7cb926996e71e0137963b237e6a3 Mon Sep 17 00:00:00 2001 From: sdenter <119946268+sdenter@users.noreply.github.com> Date: Thu, 23 Nov 2023 11:33:12 +0100 Subject: [PATCH 1/2] Added rule for xml requests in app-system Added rule for xml requests in app-system --- .../guidelines/testing/store/quality-guidelines-apps/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/guidelines/testing/store/quality-guidelines-apps/index.md b/resources/guidelines/testing/store/quality-guidelines-apps/index.md index c73c22a96..7942773c5 100644 --- a/resources/guidelines/testing/store/quality-guidelines-apps/index.md +++ b/resources/guidelines/testing/store/quality-guidelines-apps/index.md @@ -93,6 +93,8 @@ Be sure to use the most recent testing checklist from Shopware and not from any * We check the complete functionality of the app (including the uninstallation and reinstallation procedure). +* New XML requests in the storefront must be accompanied by an X-Robots-Tag in the header request with the directive "noindex, nofollow." For further details, please refer to the following resource: [https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#xrobotstag](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#xrobotstag) + * Compiled JavaScript offers many benefits such as improved performance and code optimization. However, it is difficult to read and understand the compiled code. To ensure that the code remains accessible to all developers, the uncompiled version of the JavaScript code must be placed in a separate folder. This allows other developers to review and understand the code in its original, readable form. From 2fe4abf9a11cc0d8955d0a096fe04bde6f7a9bc8 Mon Sep 17 00:00:00 2001 From: sdenter <119946268+sdenter@users.noreply.github.com> Date: Fri, 24 Nov 2023 10:02:34 +0100 Subject: [PATCH 2/2] Update resources/guidelines/testing/store/quality-guidelines-apps/index.md Co-authored-by: Bojan Rajh <117360292+bojanrajh@users.noreply.github.com> --- .../guidelines/testing/store/quality-guidelines-apps/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/guidelines/testing/store/quality-guidelines-apps/index.md b/resources/guidelines/testing/store/quality-guidelines-apps/index.md index 7942773c5..c4c504583 100644 --- a/resources/guidelines/testing/store/quality-guidelines-apps/index.md +++ b/resources/guidelines/testing/store/quality-guidelines-apps/index.md @@ -93,7 +93,7 @@ Be sure to use the most recent testing checklist from Shopware and not from any * We check the complete functionality of the app (including the uninstallation and reinstallation procedure). -* New XML requests in the storefront must be accompanied by an X-Robots-Tag in the header request with the directive "noindex, nofollow." For further details, please refer to the following resource: [https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#xrobotstag](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#xrobotstag) +* New XML requests in the storefront must be accompanied by an `X-Robots-Tag` in the header request with the directive "noindex, nofollow." For further details, please refer to the [robots meta tag](https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=de#xrobotstag) article. * Compiled JavaScript offers many benefits such as improved performance and code optimization. However, it is difficult to read and understand the compiled code. To ensure that the code remains accessible to all developers, the uncompiled version of the JavaScript code must be placed in a separate folder. This allows other developers to review and understand the code in its original, readable form.