Last touchups

This commit is contained in:
Sascha Leib
2025-09-12 22:21:33 +02:00
parent 21f03e0cbd
commit f244d37a77
2 changed files with 3 additions and 3 deletions

View File

@@ -3,5 +3,5 @@ author Sascha Leib
email ad@hominem.com
date 2025-09-12
name Bot Monitoring
desc Live monitoring of bot traffic on your DokuWiki instance (under development)
desc A tool for monitoring and analysing bot traffic to your wiki (under development)
url https://www.dokuwiki.org/plugin:botmon

View File

@@ -1619,7 +1619,7 @@ BotMon.live = {
const wmclients = document.getElementById('botmon__today__wm_clients');
if (wmclients) {
wmclients.appendChild(makeElement('dt', {}, "Browsers (humans only)"));
wmclients.appendChild(makeElement('dt', {}, "Top browsers (humans only)"));
const clientList = BotMon.live.data.analytics.getTopBrowsers(5);
if (clientList) {
@@ -1639,7 +1639,7 @@ BotMon.live = {
const wmplatforms = document.getElementById('botmon__today__wm_platforms');
if (wmplatforms) {
wmplatforms.appendChild(makeElement('dt', {}, "Platforms (humans only)"));
wmplatforms.appendChild(makeElement('dt', {}, "Top platforms (humans only)"));
const pfList = BotMon.live.data.analytics.getTopPlatforms(5);
if (pfList) {