Revision as of 16:17, 1 June 2018 view sourceHeadbomb (talk | contribs)Edit filter managers, Autopatrolled, Extended confirmed users, Page movers, File movers, New page reviewers, Pending changes reviewers, Rollbackers, Template editors453,873 edits →How to hide a specific bot from your watchlist: ce← Previous edit | Revision as of 16:22, 1 June 2018 view source Headbomb (talk | contribs)Edit filter managers, Autopatrolled, Extended confirmed users, Page movers, File movers, New page reviewers, Pending changes reviewers, Rollbackers, Template editors453,873 edits →See also: clenaupNext edit → | ||
(One intermediate revision by the same user not shown) | |||
Line 88: | Line 88: | ||
==See also== | ==See also== | ||
{{col-begin}} | |||
{{col-1-of-2}} | |||
;Articles | ;Articles | ||
* ] | * ] | ||
;Categories | |||
;Misplaced Pages space | |||
* ] | |||
* ] (this page will need updating) | |||
* ] | |||
* ] | |||
{{col-2-of-2}} | |||
;Help | |||
* ] (inactive) | |||
;Meta | ;Meta | ||
* ] | * ] | ||
* ] | * ] | ||
* ] | * ] | ||
{{col-end}} | |||
{{Automated editing}} | {{Automated editing}} | ||
{{Misplaced Pages technical help|collapsed}} | {{Misplaced Pages technical help|collapsed}} | ||
] | ] | ||
] | ] |
Revision as of 16:22, 1 June 2018
"WP:B" redirects here. You might be looking for Misplaced Pages:Bureaucrats, Misplaced Pages:Blocking policy, Misplaced Pages:Misplaced Pages is not a bureaucracy or Misplaced Pages:Be bold. "WP:BOT" redirects here. You might be looking for Misplaced Pages:Bot policy or WikiProject British Overseas Territories. For posting user script or gadget requests or ideas, see Misplaced Pages:User scripts/Requests Shortcuts
This is an information page. It is not an encyclopedic article, nor one of Misplaced Pages's policies or guidelines; rather, its purpose is to explain certain aspects of Misplaced Pages's norms, customs, technicalities, or practices. It may reflect differing levels of consensus and vetting. |
This page in a nutshell: On Misplaced Pages, bots are computer-controlled user accounts performing various tasks in order to maintain the encyclopedia. Bots are used for many purposes, for instance removing obvious vandalism and archiving talk pages. All bots must be approved by a special group before they are put into use. |
A bot (a common nickname for software robot) is an automated tool that carries out repetitive and mundane tasks to maintain the 62,141,383 pages of the English Misplaced Pages. Bots are able to make edits very rapidly and can disrupt Misplaced Pages if they are incorrectly designed or operated. For these reasons, a bot policy has been developed.
There are currently 2,729 bot tasks approved for use on the English Misplaced Pages; however, not all approved tasks involve actively carrying out edits. Bots will leave messages on user talk pages if the action that the bot has carried out is of interest to that editor. Some bots can be excluded from leaving these messages by using the {{bots}} tags. There are 214 exclusion-compliant bots, which are listed in this category. There are 299 bots flagged with the "bot" flag right now. There is also a range of tools that allow semi-automated editing of large numbers of articles.
History
Main page: Misplaced Pages:History of Misplaced Pages botsBots have been used in the past to create large numbers of articles that were uploaded to Misplaced Pages within a short timeframe. Some technical problems were experienced and this led to the formulation of a bot policy, as well as a restriction on the automated, large-scale, creation of articles.
Bot policy
Main page: Misplaced Pages:Bot policyMisplaced Pages policy requires that bots be harmless and useful, have approval, use separate user accounts, and be operated responsibly.
Bot Approvals Group
Main page: Misplaced Pages:Bot Approvals GroupThe Bot Approvals Group (BAG) supervises and approves all bot-related activity from a technical and quality-control perspective on behalf of the English Misplaced Pages community. On the English Misplaced Pages, the right to flag a bot is limited to bureaucrats.
Running an automated bot on a separate account requires approval, which may be requested at Misplaced Pages:Bots/Requests for approval.
How to create a bot
Main page: Misplaced Pages:Creating a botSome programming experience is needed to create a bot and knowledge of regular expressions is useful for many editing tasks.
The Chicken Scheme, Common Lisp, Haskell, Java, Microsoft .NET, Perl, PHP, Python, and Ruby programming languages all have libraries available for creating bots. Pywikipedia (Python Wikipediabot Framework) is a collection of tools developed specifically for creating bots.
How to hide a specific bot from your watchlist
ShortcutsWhile it is easy to hide all bots from your watchlist, there is no way of hiding specific bots through user preferences or default watchlist settings. However, it is possible with a user script by following these simple steps.
Main steps
- Go to your Special:MyPage/common.js page, and add the following line (diff):
importScript('User:UncleDouggie/smart_watchlist.js'); // Backlink: ]
- Remember to bypass your browser's cache.
- Go to your watchlist. There should be a box with several options. Tick the 'Enable hide user buttons' box. This will let you hide specific bots (and users) from your watchlist.
- Note: You might want to untick the 'Enable hide user buttons' box after you ignore a bot to ensure that you don't accidentally click 'hide user' when browsing your watchlist.
Optional steps
- If you find the 'Enable hide user buttons' box annoying, go to your Special:MyPage/common.css page and add the following line (diff):
#SmartWatchlistOptions {display:none ! important;}
- Remember to bypass your browser's cache.
- If you want to show the box again, for example to reset your ignore list, go to your Special:MyPage/common.css page and remove the line you added in optional step #1 (remembering to again bypass your browser's cache). Redoing optional steps #1 and #2 will hide the box again.
While you are completely free to ignore any bots (or users) you want, it is a good idea to only ignore bots with well-defined tasks, which you trust to not make any mistakes.
How to hide AWB edits from your watchlist
ShortcutThere is no way of hiding AWB edits through user preferences or default watchlist settings. However, it is possible with a user script by following these simple steps.
Main steps
- Go to your Special:MyPage/common.js page, and add the following two lines (diff):
importScript( 'User:Evad37/Watchlist-hideAWB.js' ); // Backlink: ] var awbHiddenByDefault = true;
- Remember to bypass your browser's cache.
Declared AWB edits will now be hidden by default. You may display them by clicking on the "show AWB" tab at the top of your watchlist (next to "Special page" for Monobook skin, or in the "More" dropdown for Vector skin).
Notes:
- If you leave out
var awbHiddenByDefault = true;
, AWB edits will be shown by default, but you will have the option of hiding AWB edits by clicking on the "hide AWB" tab at the top of your watchlist. - While you are completely free to ignore AWB edits, remember that many of them will contain substantial changes from human editors, not just minor edits from bots or meatbots.
- When hiding edits with a script, earlier edits can be forced to appear. Using the
Expand watchlist to show all changes, not just the most recent
preference option is necessary to see other non-hidden watchlist hits for a page.
Examples
Some examples of bots are:
- User:AAlertBot – delivering article alerts to WikiProjects about ongoing discussions.
- User:AnomieBOT – large variety of tasks, most well known for adding dates to amboxes.
- User:BracketBot – notifies users of mismatched brackets in recently edited articles.
- User:ClueBot NG – reverts vandalism.
- User:Cydebot – generally carries out tasks associated with deletion.
- User:DatBot – patrols the edit filters and resizes non-free images.
- User:DumbBOT – often removes protection templates from recently unprotected pages.
- User:ListeriaBot – Experimental bot by Magnus Manske. It generates and updates lists on Misplaced Pages.
- User:Lowercase sigmabot III – archives talk pages.
- User:ProcseeBot – automatically blocks proxies due to both the local policy against open proxies.
- User:SineBot – signs comments left on talk pages.
- User:TheMagikBOT – often adds protection templates to articles without them.
- User:WP 1.0 bot – works with the Version 1.0 Editorial Team.
- User:Yobot – syntax fixes and tagging.
See also
|
|
Automated and semi-automated editing tools | |
---|---|
Misplaced Pages technical help | |
---|---|
Get personal technical help at the Teahouse, help desk, village pump (technical), talk pages or IRC. | |
General technical help | |
Special page-related | |
Wikitext | |
Links and diffs | |
Media files: images, videos and sounds | |
Other graphics | |
Templates and Lua modules | |
Data structure | |
HTML and CSS | |
Customisation and tools | |
Automated editing | |