「ヘルプ:Bots」の版間の差分

提供: ひつじ小屋別館2代目
移動先: 案内検索
(1版)
(-useless tags. but its too early to mark it now - page is very draft-like)
1行目: 1行目:
 +
<languages/>
 
<noinclude>{{Languages}}</noinclude>
 
<noinclude>{{Languages}}</noinclude>
 
{{PD Help Page}}
 
{{PD Help Page}}
  
 +
<translate>
 
A '''bot''' is a computer program that automatically retrieves or updates wiki pages when it is executed. In general, bots are used for repetitive maintenance tasks, whose volume and characteristics are too large to be performed manually by users.
 
A '''bot''' is a computer program that automatically retrieves or updates wiki pages when it is executed. In general, bots are used for repetitive maintenance tasks, whose volume and characteristics are too large to be performed manually by users.
  
 
Developing and executing bots is normally outside the role of normal users, requires programming experience and must be done in coordination with the wiki's [[Help:Sysops and permissions|admins]].  
 
Developing and executing bots is normally outside the role of normal users, requires programming experience and must be done in coordination with the wiki's [[Help:Sysops and permissions|admins]].  
  
By default, bot edits are hidden in [[Special:RecentChanges|{{ns:special}}:{{MediaWiki:Recentchanges}}]].  
+
By default, bot edits are hidden in [[Special:RecentChanges|{{ns:special}}:{{MediaWiki:Recentchanges}}]].
  
 
== Framework and interface for bot development ==
 
== Framework and interface for bot development ==
 +
 
Bots do not access the wiki through the normal graphical user interface. MediaWiki has an API (Application Programming Interface) available for this purpose. An API is a protocol for standardised communication between two computer programs. Check {{mediawiki|API:Client code}} for more information.
 
Bots do not access the wiki through the normal graphical user interface. MediaWiki has an API (Application Programming Interface) available for this purpose. An API is a protocol for standardised communication between two computer programs. Check {{mediawiki|API:Client code}} for more information.
  
14行目: 17行目:
  
 
=== pywikipediabot ===
 
=== pywikipediabot ===
 +
 
{{mediawiki|Manual:pywikipediabot}} provides a framework for the development of bots, which are commonly used to perform maintenance tasks such as adding a footer to some categorized pages ([[Pywikipediabot/add text.py|add_text.py]]), adding some [[Help:Links|wikilinks]] ({{mediawiki|Manual:pywikipediabot/replace.py|replace.py}}), moving old contents of [[Help:Talk pages|talk pages]] to [[Help:Subpages|subpages]] ({{mediawiki|Manual:pywikipediabot/archivebot.py|archivebot.py}}), editing [[Help:Categories|categories]] ({{mediawiki|Manual:pywikipediabot/category.py|category.py}}), or managing [[Help:Templates|templates]] ({{mediawiki|Manual:pywikipediabot/template.py|template.py}}).
 
{{mediawiki|Manual:pywikipediabot}} provides a framework for the development of bots, which are commonly used to perform maintenance tasks such as adding a footer to some categorized pages ([[Pywikipediabot/add text.py|add_text.py]]), adding some [[Help:Links|wikilinks]] ({{mediawiki|Manual:pywikipediabot/replace.py|replace.py}}), moving old contents of [[Help:Talk pages|talk pages]] to [[Help:Subpages|subpages]] ({{mediawiki|Manual:pywikipediabot/archivebot.py|archivebot.py}}), editing [[Help:Categories|categories]] ({{mediawiki|Manual:pywikipediabot/category.py|category.py}}), or managing [[Help:Templates|templates]] ({{mediawiki|Manual:pywikipediabot/template.py|template.py}}).
  
 
=== wiki-java ===
 
=== wiki-java ===
 +
 
<span class="plainlinks">[http://code.google.com/p/wiki-java/ wiki-java]</span> is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, etc. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.
 
<span class="plainlinks">[http://code.google.com/p/wiki-java/ wiki-java]</span> is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, etc. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.
  
 
== Extension alternatives ==
 
== Extension alternatives ==
 +
 
* [[:mw:Extension:MassEditRegex|Extension:MassEditRegex]] provides an alternative way to perform mass edits using regular expressions, through a special page in the wiki. Only admins can normally use this extension.
 
* [[:mw:Extension:MassEditRegex|Extension:MassEditRegex]] provides an alternative way to perform mass edits using regular expressions, through a special page in the wiki. Only admins can normally use this extension.
 
+
</translate>
 +
<translate>
 
* [[Extension:ReplaceText]] is another option.
 
* [[Extension:ReplaceText]] is another option.
  
 
== See also ==
 
== See also ==
 +
 
* {{mediawiki|meta:Bot}}
 
* {{mediawiki|meta:Bot}}
 +
</translate>
  
 
{{Languages}}
 
{{Languages}}
 
 
[[Category:Help|{{PAGENAME}}]]
 
[[Category:Help|{{PAGENAME}}]]

2013年11月30日 (土) 05:25時点における版

Language: English  • 日本語
PD Note: When you edit this page, you agree to release your contribution under the CC0. See Public Domain Help Pages for more info.
PD
</div>

A bot is a computer program that automatically retrieves or updates wiki pages when it is executed. In general, bots are used for repetitive maintenance tasks, whose volume and characteristics are too large to be performed manually by users.

Developing and executing bots is normally outside the role of normal users, requires programming experience and must be done in coordination with the wiki's admins.

By default, bot edits are hidden in 特別:最近の更新.

Framework and interface for bot development

Bots do not access the wiki through the normal graphical user interface. MediaWiki has an API (Application Programming Interface) available for this purpose. An API is a protocol for standardised communication between two computer programs. Check API:Client code for more information.

To access a wiki through the API a bot must have a user account, which has been granted 'bot' permissions.

pywikipediabot

Manual:pywikipediabot provides a framework for the development of bots, which are commonly used to perform maintenance tasks such as adding a footer to some categorized pages (add_text.py), adding some wikilinks (replace.py), moving old contents of talk pages to subpages (archivebot.py), editing categories (category.py), or managing templates (template.py).

wiki-java

wiki-java is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, etc. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.

Extension alternatives

  • Extension:MassEditRegex provides an alternative way to perform mass edits using regular expressions, through a special page in the wiki. Only admins can normally use this extension.
  • Extension:ReplaceText is another option.

See also

Language: English  • 日本語

案内メニュー