Files
dokuwiki-plugin-botmon/data/rules.json

29 lines
746 B
JSON
Raw Normal View History

{
2025-09-05 12:47:36 +02:00
"threshold": 100,
"rules": [
2025-09-05 23:03:22 +02:00
{"func": "obsoleteClient", "params": ["aol", "msie", "chromeold"],
2025-09-05 16:22:39 +02:00
"id": "oldClient", "desc": "Obsolete browser version",
2025-09-05 12:47:36 +02:00
"bot": 40
},
2025-09-05 23:03:22 +02:00
{"func": "obsoletePlatform", "params": ["winold", "macosold"],
2025-09-05 16:22:39 +02:00
"id": "oldOS", "desc": "Obsolete platform version",
2025-09-05 12:47:36 +02:00
"bot": 40
},
{"func": "noJavaScript",
2025-09-05 16:22:39 +02:00
"id": "noJS", "desc": "JavaScript disabled",
2025-09-05 23:03:22 +02:00
"bot": 40
2025-09-05 12:47:36 +02:00
},
{"func": "smallPageCount", "params": [1],
2025-09-05 23:03:22 +02:00
"id": "onePage", "desc": "Visiter loaded only a single page",
"bot": 40
2025-09-05 12:47:36 +02:00
},
{"func": "noTicks",
2025-09-05 23:03:22 +02:00
"id": "noTicks", "desc": "Visitor did not spend time reading a page",
2025-09-05 12:47:36 +02:00
"bot": 10
},
{"func": "noReferences",
2025-09-05 16:22:39 +02:00
"id": "noRefs", "desc": "No reference field",
2025-09-05 12:47:36 +02:00
"bot": 30
}
]
}