Калып:Bots/Документация
Башка телле бүлектә тулырак мәкалә бар: [[:{{{1}}}:{{{2}}}|{{{2}}}]]. Сез тәрҗемә ярдәме белән бу мәкаләне язып бетереп проектка ярдәм итә аласыз.
|
Калып:Плохой перевод С помощью этого шаблона можно сообщить боту, что он не должен трогать страницу. Это ограничение может распространяться на отдельных ботов.
Пример
үзгәртүОбработка ботами разрешено (по умолчанию)
{{bots|allow=all}}
Обработка ботами запрещено
{{nobots}} {{bots|allow=none}}
Обработка отдельными ботами запрещено/разрешено
{{bots|deny=BotName1,BotName2,…}} {{bots|allow=BotName1,BotName2,…}}
При этом название AWB стоит для всех ботов на базе AWB. Пример:
{{bots|allow=HagermanBot,Werdnabot}} {{bots|deny=AWB}}
Некоторые виды запретов
үзгәртүAnother option is to opt out of specific types of messages for users who wish to be notified of certain problems, but not others. Users should be aware that by opting-out of specific notification posts, they will not be notified of matters relating to material they have edited or uploaded, which are tagged per policy. Actions (such as deletion) may be executed without you being notified as a result. By applying this to your own user talk page, you agree to this consequence. Applying this to a user talk page other than your own will be considered vandalism. All bots and scripts that leave messages on a user’s talk page are encouraged to add this capability.
By adding this to a user’s talk page, a user may still receive these messages by non-compliant bots or scripts, or humans who add the tag manually.
{{bots|optout=all}} Opt out of all messages (see limitations below).
{{bots|optout=nosource}} Opt out of no source messages. {{bots|optout=nolicense}} Opt out of no license messages. {{bots|optout=orfud}} Opt out of orphaned fair use messages. {{bots|optout=norationale}} Opt out of no rationale messages. {{bots|optout=replaceable}} Opt out of replaceable fair use messages. {{bots|optout=bettersource}} Opt out of better source request messages. {{bots|optout=afd}} Opt out of articles for deletion messages or variant forms. {{bots|optout=ifd}} Opt out of images for deletion messages or variant. {{bots|optout=prod}} Opt out of prod warning messages or variant.
Items can be combined by putting a comma between options
{{bots|optout=nosource,nolicense}} Opt out of no source, and no license messages. {{bots|optout=orfud,norationale,replaceable}} Opt out of fair use messages.
Недопустимые правки
үзгәртүНедопустимы:
- Нарушение авторского права;
- Вандализм и другие вредные правки;
- Any message tag that isn’t included as a way of opting out above. (Is there one that should be included? Leave a message on the talk page.)
Поддержка шаблона
үзгәртү- Pywikipediabot поддерживает шаблоны {{bots}} и {{nobots}} с версии r4096, но имеет возможность игнорирования блокировки.
- AutoWikiBrowser полностью поддерживает шаблоны {{bots}} и {{nobots}} с версии 3.2, хотя в настройках можно установить игнорирование этих шаблонов.
- Желательно, чтобы боты с оригинальным исходным кодом также поддерживали эти шаблоны.
Примеры реализации
үзгәртүPHP
үзгәртүfunction allowBots( $text ) {
global $user;
if (preg_match('/\{\{(nobots|bots\|allow=none|bots\|deny=all|bots\|optout=all|bots\|deny=.*?'.preg_quote($user,'/').'.*?)\}\}/iS',$text)) { return false; }
return true;
}
Perl
үзгәртүsub allowBots {
my($text, $user, $opt) = @_;
return 0 if $text =~ /{{nob[o]ts}}/;
return 1 if $text =~ /{{b[o]ts}}/;
if($text =~ /{{bots\s*\|\s*allow\s*=\s*(.*?)\s*}}/s){
return 1 if $1 eq 'all';
return 0 if $1 eq 'none';
my @bots = split(/\s*,\s*/, $1);
return (grep $_ eq $user, @bots)?1:0;
}
if($text =~ /{{bots\s*\|\s*deny\s*=\s*(.*?)\s*}}/s){
return 0 if $1 eq 'all';
return 1 if $1 eq 'none';
my @bots = split(/\s*,\s*/, $1);
return (grep $_ eq $user, @bots)?0:1;
}
if(defined($opt) && $text =~ /{{bots\s*\|\s*optout\s*=\s*(.*?)\s*}}/s){
return 0 if $1 eq 'all';
my @opt = split(/\s*,\s*/, $1);
return (grep $_ eq $opt, @opt)?0:1;
}
return 1;
}
C#
үзгәртүpublic static bool AllowBots(string text, string user)
{
return !Regex.Match(text, @"\{\{(nobots|bots\|(allow=none|deny=.*?" + user.Normalize() + @".*?|optout=all|deny=all))\}\}", RegexOptions.IgnoreCase).Success;
}
Java
үзгәртүpublic static boolean AllowBots(String text, String user)
{
return !Regex.Match(text, "\\{\\{(nobots|bots\\|(allow=none|deny=.*?" + user.Normalize() + ".*?|optout=all|deny=all))\\}\\}", RegexOptions.IgnoreCase).Success;
}
Python
үзгәртүdef Allowbots(text, user):
if (re.search(r'\{\{(nobots|bots\|(allow=none|deny=.*?' + user + r'.*?|optout=all|deny=all))\}\}', text)):
return false
return true