/
githubmr
/
apache-activemq-artemis
Обзор
Документация
Войти
/
githubmr
/
apache-activemq-artemis
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
docs/user-manual/docinfo.html
19 строк
853 B
Justin Bertram
ARTEMIS-615 prompt users if they are browsing old docs
21 май 2025, 12:28
21 май 2025, 12:28
04a9918
Код
Авторство
О чём код?
<script> document.addEventListener("DOMContentLoaded", function() { const pathSegments = window.location.pathname.split('/'); if (window.location.hostname == "activemq.apache.org" && pathSegments[pathSegments.length - 2] != "latest") { var message = document.createElement("div"); message.style.margin = "20px"; message.style.textAlign = "center"; message.style.backgroundColor = "#FFFFE0"; message.textContent = "Please be aware that this documentation is out of date. "; var link = document.createElement("a"); link.href = "../latest"; link.textContent = "Here is the latest documentation."; message.appendChild(link); document.body.insertBefore(message, document.body.firstChild); } }); </script>