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

[pt] Temporarily patch page to avoid link-check failure #5603

Merged
merged 4 commits into from
Nov 13, 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
2 changes: 0 additions & 2 deletions .htmltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ IgnoreDirs:
- ^(../)?blog/(\d+/)?page/\d+
# TODO drop next line after https://github.com/open-telemetry/opentelemetry.io/issues/5423 is fixed for ja pages:
- ^ja/docs/concepts/instrumentation/libraries/
# TODO drop next line after https://github.com/open-telemetry/opentelemetry.io/issues/5423 is fixed for pt pages:
- ^pt/docs/concepts/instrumentation/libraries/
# TODO drop next lines after https://github.com/open-telemetry/opentelemetry.io/issues/5555 is fixed for these pages:
- ^zh/docs/concepts/signals/baggage/
- ^zh/docs/zero-code/php/
Expand Down
11 changes: 3 additions & 8 deletions content/pt/docs/concepts/instrumentation/libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
title: Bibliotecas
description: Aprenda como adicionar instrumentação nativa à sua biblioteca.
weight: 40
default_lang_commit: a570a00c7a238ffe26528d7bfb20efdbaf939c39
htmltest:
IgnoreDirs:
# TODO drop next line after https://github.com/open-telemetry/opentelemetry.io/issues/5423 is fixed for pt pages:
- ^pt/docs/concepts/instrumentation/libraries/
default_lang_commit: a570a00c7a238ffe26528d7bfb20efdbaf939c39 # + link-fix patch
---

O OpenTelemetry fornece [bibliotecas de instrumentação][] para várias
Expand Down Expand Up @@ -314,9 +310,8 @@ Aqui estão os
consulte a documentação do OpenTelemetry no seu idioma.

No caso de um sistema de mensagens, você pode receber mais de uma mensagem de
uma vez. As mensagens recebidas se tornam
[_links_](/docs/languages/java/instrumentation/#create-spans-with-links) no
trecho que você cria. Consulte as
uma vez. As mensagens recebidas se tornam _links_ no trecho que você cria.
Consulte as
[convenções de mensagens](/docs/specs/semconv/messaging/messaging-spans/) para
mais detalhes (AVISO: as convenções de mensagens estão
[em construção](https://github.com/open-telemetry/oteps/pull/173) 🚧).
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-i18n.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function main() {
for f in $TARGETS; do
((FILE_COUNT++))

LASTCOMMIT_FF=$(perl -ne "print \"\$1\" if /^$I18N_DLC_KEY:\\s*(.*)/" "$f")
LASTCOMMIT_FF=$(perl -ne "print \"\$1\" if /^$I18N_DLC_KEY:\\s*([a-f0-9]+)/i" "$f")
LASTCOMMIT="$LASTCOMMIT_FF"

if [[ $LIST_KIND == "ALL" && -n $COMMIT_HASH_ARG ]]; then
Expand Down