Revision as of 08:57, 11 December 2024 editBordurie (talk | contribs)336 edits →Redlinks← Previous edit | Latest revision as of 10:48, 11 January 2025 edit undoRjwilmsi (talk | contribs)Extended confirmed users, Pending changes reviewers, Rollbackers932,091 edits →What does "new" mean?: That is what it means | ||
(45 intermediate revisions by 19 users not shown) | |||
Line 43: | Line 43: | ||
=Discussion= | =Discussion= | ||
== |
== Stub spacing == | ||
{{Tracked|T382578}} | |||
The requirement for two blank lines before stubs has now been removed. See ] — ] <sup>]</sup> 08:54, 20 December 2024 (UTC) | |||
:Does this mean there is or will be a new version of AWB? I'm currently using version 6.3.1.1. ] (]) 22:26, 20 December 2024 (UTC) | |||
:: Due to (19 December 2024) changes to CSS on enwiki, output is now OK with two blank lines, one blank line or no blank line before a stub. AWB no longer ''needs'' to force two lines before a stub for enwiki. No idea about other wikis — ] <sup>]</sup> 23:50, 20 December 2024 (UTC) | |||
:{{done}}, noting that these sorts of request are best handled at ]. ] (]) 12:50, 8 November 2024 (UTC) | |||
== |
== Bot saving blank pages == | ||
Since there's not much information on this that I'm aware of, I think it's important to keep track of the circumstances that this bug presents itself. Tom.Bot was running on Wikispecies nearly continuously for 2 weeks, from Dec 7 to Dec 21, after 492,026 successful saves in the same instance of AWB before it started intermittently saving blank pages, despite failing a "Skip if doesn't contain" check that I thought would help prevent this problem. Very shortly prior to that, I "Reset saved/skipped counts", which usually produces a large negative "Edits/min" value, which may or may not be related. Before restarting the AWB instance, I reran the bot on some of the blanked pages and they were not blanked again. Restarting the instance fixed the problem. <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 19:40, 22 December 2024 (UTC) | |||
I recently offered an unofficial build of AWB optimized for ARM64 PCs, like the new Microsoft Surface. I have a new build that will also run on a "normal" x86-64 PC (but see below). It is built using the latest source tree. | |||
:See also {{slink|User_talk:Primefac/Archive_21#Blanking}}, slightly different setup for skip checks. ] (]) 12:56, 23 December 2024 (UTC) | |||
== Special:Tags == | |||
I think it runs faster than the official build not only due to the CPU's emulation overhead, which is less on Windows 11 than 10, but also because it does not have the emulation memory overhead, which is pretty extensive. For example, in my tests on Windows 11 the native ARM64 build uses 29.5 MB on startup, and 56.5 after loading the first article in a moderate size list. The official build, x86 running emulated, uses 49 MB and 74.5 respectively. | |||
Is there a way to apply ] (e.g. <code>talk banner shell conversion</code>) to AWB edits? If so, does it consume the already-precious summary buffer? <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 17:04, 28 December 2024 (UTC) | |||
Running on an x86-64 PC, this build runs in x64 mode, so it uses more memory than the official x86 build, but not by a huge amount (27.7 versus 22.3 on startup). Anyway, if you have an ARM64 box and want to check it out, it's on github . ] (]) 03:57, 12 November 2024 (UTC) | |||
== |
== Multiple blank lines == | ||
Hi, this is related to a change I want to do on Wiktionary, is there a way by AWB to change multiple blank lines to a single blank line? Sample: | |||
Is there a css way to make the diff window background black when starting AWB? ] works well for diffs, but on startup and when switching settings/projects, it defaults to white. <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 10:58, 17 November 2024 (UTC) | |||
<pre> | |||
====Synonyms==== | |||
* ] | |||
== Is adding links cosmetic? == | |||
====Derived terms==== | |||
I've been adding links to citations (for example <nowiki>{{cite news ... |work=RNZ ... }}</nowiki> to <nowiki>{{cite news ... |work=] ... }}</nowiki> but someone has opposed this and suggested that it breaks number four of ], saying that it's a ]. As adding links to citations modifies the HTML of the page, I belive that it is not cosmetic, but I'd like a third opinion please to clear this up. ―<span style="font-family:Poppins, Helvetica, Sans-serif;">]</span> ] 03:58, 23 November 2024 (UTC) | |||
* ] | |||
</pre> | |||
to | |||
<pre> | |||
====Synonyms==== | |||
* ] | |||
====Derived terms==== | |||
:It's not cosmetic, but per rule 3 if someone is contesting it, it's on you to demonstrate consensus for it. ] (]) 04:15, 23 November 2024 (UTC) | |||
* ] | |||
::Not cosmetic, but I do agree if a single page is being edited multiple times that is a bit of an issue. ] (]) 13:17, 23 November 2024 (UTC) | |||
</pre> ] (]) 08:11, 1 January 2025 (UTC) | |||
: For the record, if consensus is needed for this, I endorse and support it. ] ] 15:34, 23 November 2024 (UTC) | |||
:You can make a strict regex rule to replace <code>(\n\*+\]\])\s*\n\s*\n\s*\n\s*(==)</code> with <code>$1\n\n$2</code>, which will reduce 2 or more blank lines down to 1. | |||
::I'm fine with this, my primary suggestion is to stack these together in one awb run so that RNZ and ... and ... and ... are all done at once.] (]) 19:20, 23 November 2024 (UTC) | |||
:You can also make a more liberal rule to replace <code>(\n\*+\]\])\s*\n\s*(==)</code> with <code>$1\n\n$2</code>, which will also expand from 0 blank lines up to 1. <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 09:28, 1 January 2025 (UTC) | |||
:Based on my interpretation of the rules, this seems totally acceptable, but again, you could consider running multiple tasks simultaneously or only add links when typos are found. Have fun doing it. ] 19:49, 23 November 2024 (UTC) | |||
::I think there is a simpler replacement: find <code>(\S\n)\s+(\n\S)</code> → <code>$1$2</code>. ] (]) 13:13, 1 January 2025 (UTC) | |||
:Personally I think it adds consistency and I'm a huge fan of it. It's an absolute improvement from my point of view. However, I do agree that it shouldn't be one edit at a time per page, but to add instances within the references at once. ] (]) 18:49, 24 November 2024 (UTC) | |||
:: |
:::<s>What about ]?</s> Oh yeah, now that ] is automagic, that's probably safe. <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 14:40, 1 January 2025 (UTC) | ||
::::Thank you both for your help :)) ] (]) 17:46, 1 January 2025 (UTC) | |||
==Hatnote order== | |||
== AutoWikiBrowser and searching for pages with capture regex. == | |||
This afternoon, {{u|Primefac}} pointed out to me that certain edits I was making were putting the hatnotes in wrong order in a set of articles, as . | |||
Think is, I was running a similar task last night, and and other similar edits came out OK. And the only thing I've changed between now and then is uploaded a new list of articles. I've changed none of the AWB settings I was using. | |||
I'm looking for pages that have strings like <nowiki>]</nowiki> So I'd like to search for these with something like <nowiki>\* * *\|\1</nowiki> and while AWB does capture, it looks like that is only for internal, not for looking for them in the first place, is that something that wikipedia or AWB can do, or is this something where I need Cirrus or something else more powerful? ] (]) 22:50, 24 November 2024 (UTC) | |||
:Not sure what you are after. You have a specific string 'like' then use a generic form of string search entry. Just plain old search is reasonably powerful. If I search for (articles only) <i>~"Alpha Phi Alpha"</i> I get 799 entries, for <i>~"Alpha Phi Alpha" insource:/\] (]) 23:57, 24 November 2024 (UTC) | |||
:You have to put round brackets into the search string to tell the regex code what <code>\1</code> is intended to match. I began a database scan for <code><nowiki>\* * *)\|\1</nowiki></code> but quickly aborted it; there are tens of thousands of matches. Typical examples are <code><nowiki>]</nowiki></code> and <code><nowiki>]</nowiki></code>. I restricted the search to the names of Greek letters and dumped the results at ] (]) -- ] (]) 08:10, 25 November 2024 (UTC) | |||
::Thank you both. While I expect the majority of occurances to be from a group of 9 Fraternites and Sororities, there are hundreds that are possibilities. John, that is exactly what I wanted, I expected to have to trim down some. What software is needed for that Database scan and is that something a non-admin user will have access to?] (]) 13:50, 25 November 2024 (UTC) | |||
:::{{Re|Naraht}} I used AWB's "]". AWB normally needs ] but if you're only using it to create a list of articles, you can use it without logging in. BUT to use the database scanner, you'll need a copy of the text of Misplaced Pages on your hard drive - the file <code>enwiki-20241120-pages-articles.xml.bz2</code> is a 20 Gigabyte download from , and that has to be uncompressed to 102 Gigabytes before AWB can use it. | |||
:::If you post search requests on this page, I or someone else with a recent database dump will probably respond. -- ] (]) 14:07, 25 November 2024 (UTC) | |||
::::Right now, only 10 GB free on my personal hard drive. Maybe when I buy my next one. :) again thank you.] (]) 18:06, 25 November 2024 (UTC) | |||
Any idea what might be causing the discrepancy? --<span style="font-family:Old English Text MT">]</span><sup>]</sup><sub>]</sub> 17:42, 4 January 2025 (UTC) | |||
== Redlinks == | |||
:Do you think that AWB itself is changing the order of these hatnotes? Could you include the regex you're using to add the {{tl|Use mdy dates}} template? ] (]) 18:59, 4 January 2025 (UTC) | |||
Hello. | |||
::{{ping|Kiwipete}} Apologies, I've been out all day. Came home and did a little tinkering to see if I could isolate more of the issue before I came here. | |||
::To answer your question: I simply put "<nowiki>{{Use mdy dates|date=January 2025}}</nowiki>" into the "Append/Prepend text" window, marked "Prepend", and checked the box "Sort metadata after". In every instance over the past few days where I have checked and double-checked, that has been sufficient. (To answer your other question: AWB wasn't changing the order of anything. Rather, in it's properly sorting the metadata ''after'' introducing the new hatnote. In , it is ''not''. It is inserting the hatnote and moving on. (A module might fix this, and I haven't had the time to experiment with it today.)) | |||
::HOWEVER: I found the issue ''again'' on another television article from another batch: see . | |||
::The two incorrect articles are about television seasons, and I'm wondering if the problem has something to do with the <nowiki>{{italictitle}}</nowiki> template and its siblings. That's the only common denominator I can think of. | |||
::(And please excuse any lack of clarity in my response here - I am ''severely'' non-technological, and consequently it's a minor miracle that I've gotten as far as I have in targeting this issue.) --<span style="font-family:Old English Text MT">]</span><sup>]</sup><sub>]</sub> 07:17, 5 January 2025 (UTC) | |||
:Why did you add a blank line between <code><nowiki>{{Use mdy dates|date=January 2025}}</nowiki></code> & <code><nowiki>{{Infobox Arizona Legislature</nowiki></code> ? <b>~</b> <span style="font-family:Monotype Corsiva; font-size:16px;">] (] ⋅])</span> 20:41, 4 January 2025 (UTC) | |||
::{{ping|Tom.Reding}} Wrong "newlines" setting, sorry. --<span style="font-family:Old English Text MT">]</span><sup>]</sup><sub>]</sub> 07:10, 5 January 2025 (UTC) | |||
== Should have limitation on certain parameters of templates == | |||
I don't know if it's technically possible. | |||
AWB should have restriction on certain parameters of citation templates. see this ]. It has put a space after comma at url parameter and causes ]. It's ok to have AWB on title parameter of citation templates.––]<sup>(])(])</sup> 18:01, 4 January 2025 (UTC) | |||
It's for the French wiki, but I think I have more help here. | |||
:Also consider this ].––]<sup>(])(])</sup> 18:08, 4 January 2025 (UTC) | |||
::{{Re|KEmel49}} AWB is very configurable and is used for different tasks by different editors. Problems with AWB edits should be raised first with the editor making them. | |||
::{{Ping|BD2412}} Do your regular expressions have something to stop them editing URLs? I tack <code><nowiki>(?<!https?://\<\>]*)</nowiki></code> on to the end of some of mine, and that works 99% of the time. -- ] (]) 18:56, 4 January 2025 (UTC) | |||
::: I generally just eyeball it. 99% of the time, there are just one or two clear errors on the page. What would actually help more would be for the changes to show up more prominently in the AWB edit window. Give me a few minutes and I'll mock up a concept. ] ] 19:23, 4 January 2025 (UTC) | |||
:::: Okay, that was more than a few minutes, but I would like the AWB window (top image) to look more like the Misplaced Pages edit window (bottom image): | |||
] | |||
Is it possible with this tool to remove all red links on a specific page, because red links are not admissible and never will be? For example | |||
] | |||
If it's possible, can I have help with the process? ] (]) 13:01, 2 December 2024 (UTC) | |||
:I'll have to dig through the , but I don't think so... on the other hand, there's an "if template exists" function so there might be an "ifexists" in general. ] (]) 21:00, 3 December 2024 (UTC) | |||
:::: In fact, what would be ideal would be for the entire URL to be highlighted in the AWB window when an edit was changing its structure, and/or for AWB to have an alert for that in the alert window. ] ] 21:47, 4 January 2025 (UTC) | |||
::There is an API that lists the pages linked from a page, and another that will report whether pages in that list exist. AWB already has a mechanism for detecting and unlinking links (the de-duplication function). So all the main pieces are in place, although it would need a new option flag if you wanted to make it happen without interaction. Still, it would be a project, and couldn't be classed as maintenance. ] (]) 22:48, 4 December 2024 (UTC) | |||
:::Thinking about what I wrote: it should be feasible to do the edits in a Module (or possibly a Plugin). Stand by... ] (]) 15:28, 5 December 2024 (UTC) | |||
== Can't save at all == | |||
::::Thank you. ] (]) 09:46, 6 December 2024 (UTC) | |||
:::::Daily stand-up: a module is working on some relatively short articles. Running into an undocumented limit in a MediaWiki API. Higher-priority commitments rn. ] (]) 19:33, 6 December 2024 (UTC) | |||
When I try to save any edits with AWB, it justs says "Saving", then "Restarting in 10", waits 10 seconds and re-scans the same page. No edits are made, and nothing appears in the log. Every time I click save, the wait increases by five seconds. ] <sub>]</sub> 19:39, 4 January 2025 (UTC) | |||
::::::]; give it a spin. But it's getting late here so I may not respond right away. ] (]) 02:35, 7 December 2024 (UTC) | |||
: |
:None of your edits appear to show an AWB tag so has it ever worked for you? ] (]) 21:50, 4 January 2025 (UTC) | ||
::No, I have just been given permission recently, but I am on the checkpage. | |||
:::::::: Wow! You're a genius! ] (]) 14:26, 10 December 2024 (UTC) | |||
::Maybe it's something silly I'm doing wrong, as I'm a complete beginner in this program. | |||
::::::::: Thank you! And, of course, I just found a bug (a link with a ' character in it, and possibly other punctuations). Please copy and reload the module. ] (]) 21:07, 10 December 2024 (UTC) | |||
::Any help much appreciated. | |||
:::::::::: Yes, I had noticed this bug. Thanks ] (]) 08:57, 11 December 2024 (UTC) | |||
::] <sub>]</sub> 06:33, 5 January 2025 (UTC) | |||
:::It ''was'' something silly indeed. I had not given my bot password sufficient permissions {{facepalm}}. | |||
:::My issue is {{solved}} | |||
:::Thanks! | |||
:::] <sub>]</sub> 06:42, 5 January 2025 (UTC) | |||
==Wheel arrangement== | |||
was flagged up as an error, see edit summary of following edit. ] (]) 20:56, 4 January 2025 (UTC) | |||
:Redrose64 pinged me on a couple of these as well, however they are hard to spot against various other edits. Perhaps the regex could be rejected if the article contains the string 'locomotive' or similar? ] (]) 00:39, 7 January 2025 (UTC) | |||
::As that's from typo fixing, I suggest the issue is raised ]. ] 09:40, 7 January 2025 (UTC) | |||
== What does "new" mean? == | |||
On the bottom right there are the numbers "pages/min", "edits/min", "edits", "skipped" and "new". What does "new" mean? I've read the manual but can't seem to find it in it. ―<span style="font-family:Poppins, Helvetica, Sans-serif;">]</span> ] 00:04, 10 January 2025 (UTC) | |||
:Number of pages created i.e. new pages. ] 15:22, 10 January 2025 (UTC) | |||
::Do you mean creation of a page on Misplaced Pages? That's odd. It said 1 new page for me yesterday but I had not created any new pages. ―<span style="font-family:Poppins, Helvetica, Sans-serif;">]</span> ] 22:29, 10 January 2025 (UTC) | |||
:::That is what it means. AWB increments the new page count before doing the page save (new page creation), so if new page creation fails (e.g. page is salted) then the count could be falsely high. Also, given that the MediaWiki API doesn't raise edit conflicts for self-edit conflicts, one way this could happen would be to prepare an edit to a non-existent (new) page in AWB, in the meantime actually create the page and save an edit in browser, return to AWB and Save. I think the API will accept the second edit via AWB without error, and AWB will think that counted as a page creation as the page didn't exist when AWB loaded it. I'm not saying you did either of those, they're just examples of how the New pages count in AWB could be off. ] 10:48, 11 January 2025 (UTC) |
Latest revision as of 10:48, 11 January 2025
AutoWikiBrowser 6.3.1.1- Home
Introduction and rules - User manual
How to use AWB - Discussion
Discuss AWB, report errors, and request features - User tasks
Request or help with AWB-able tasks - Technical
Technical documentation
- Changelog
- Developer discussion
- Modules
- Regular expression
- Sandbox
- Template redirects
- Typos
- Usage stats
- Userbox
This is the discussion page for the AutoWikiBrowser (AWB) project. It is also the place to discuss using the AWB program (for help, questions, or general inquiries about AWB). Specific guidelines on where to make particular reports or requests are provided in the § Before you post section below. Before asking a question, please refer to the read the § Frequently asked questions below.
Archives |
Index 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 |
This page has archives. Sections older than 30 days may be automatically archived by Lowercase sigmabot III. |
Before you post
Do you want to ... | Please use | ||||
---|---|---|---|---|---|
Report a bug or request a feature in AWB? | Check reported bugs on Phabricator before filing a new bug report. You do not need to create another account there; just log in with your global Wikimedia account. See this MediaWiki wiki page on how to report bugs and request features on Phabricator.
| ||||
Report an incorrectly fixed typo? | Misplaced Pages talk:AutoWikiBrowser/Typos | ||||
Request approval to use AWB? | Misplaced Pages:Requests for permissions/AutoWikiBrowser | ||||
Ask a question about AWB or ask for help? | This page |
Frequently asked questions
Frequently asked questions |
---|
//Detect IE5.5+ if (navigator.appVersion.indexOf("MSIE")==-1) { // Previous contents go here .... }
|
Discussion
Stub spacing
Tracked in PhabricatorTask T382578
The requirement for two blank lines before stubs has now been removed. See WP:STUBSPACING — GhostInTheMachine 08:54, 20 December 2024 (UTC)
- Does this mean there is or will be a new version of AWB? I'm currently using version 6.3.1.1. Kiwipete (talk) 22:26, 20 December 2024 (UTC)
- Due to (19 December 2024) changes to CSS on enwiki, output is now OK with two blank lines, one blank line or no blank line before a stub. AWB no longer needs to force two lines before a stub for enwiki. No idea about other wikis — GhostInTheMachine 23:50, 20 December 2024 (UTC)
Bot saving blank pages
Since there's not much information on this that I'm aware of, I think it's important to keep track of the circumstances that this bug presents itself. Tom.Bot was running on Wikispecies nearly continuously for 2 weeks, from Dec 7 to Dec 21, after 492,026 successful saves in the same instance of AWB before it started intermittently saving blank pages, despite failing a "Skip if doesn't contain" check that I thought would help prevent this problem. Very shortly prior to that, I "Reset saved/skipped counts", which usually produces a large negative "Edits/min" value, which may or may not be related. Before restarting the AWB instance, I reran the bot on some of the blanked pages and they were not blanked again. Restarting the instance fixed the problem. ~ Tom.Reding (talk ⋅dgaf) 19:40, 22 December 2024 (UTC)
- See also User talk:Primefac/Archive 21 § Blanking, slightly different setup for skip checks. Primefac (talk) 12:56, 23 December 2024 (UTC)
Special:Tags
Is there a way to apply Special:Tags (e.g. talk banner shell conversion
) to AWB edits? If so, does it consume the already-precious summary buffer? ~ Tom.Reding (talk ⋅dgaf) 17:04, 28 December 2024 (UTC)
Multiple blank lines
Hi, this is related to a change I want to do on Wiktionary, is there a way by AWB to change multiple blank lines to a single blank line? Sample:
====Synonyms==== * ] ====Derived terms==== * ]
to
====Synonyms==== * ] ====Derived terms==== * ]
Svartava (talk) 08:11, 1 January 2025 (UTC)
- You can make a strict regex rule to replace
(\n\*+\]\])\s*\n\s*\n\s*\n\s*(==)
with$1\n\n$2
, which will reduce 2 or more blank lines down to 1. - You can also make a more liberal rule to replace
(\n\*+\]\])\s*\n\s*(==)
with$1\n\n$2
, which will also expand from 0 blank lines up to 1. ~ Tom.Reding (talk ⋅dgaf) 09:28, 1 January 2025 (UTC)- I think there is a simpler replacement: find
(\S\n)\s+(\n\S)
→$1$2
. Primefac (talk) 13:13, 1 January 2025 (UTC)What about WP:STUBSPACING?Oh yeah, now that WP:STUBSPACING is automagic, that's probably safe. ~ Tom.Reding (talk ⋅dgaf) 14:40, 1 January 2025 (UTC)- Thank you both for your help :)) Svartava (talk) 17:46, 1 January 2025 (UTC)
- I think there is a simpler replacement: find
Hatnote order
This afternoon, Primefac pointed out to me that certain edits I was making were putting the hatnotes in wrong order in a set of articles, as here.
Think is, I was running a similar task last night, and this and other similar edits came out OK. And the only thing I've changed between now and then is uploaded a new list of articles. I've changed none of the AWB settings I was using.
Any idea what might be causing the discrepancy? --Ser Amantio di NicolaoLo dicono a Signa. 17:42, 4 January 2025 (UTC)
- Do you think that AWB itself is changing the order of these hatnotes? Could you include the regex you're using to add the {{Use mdy dates}} template? Kiwipete (talk) 18:59, 4 January 2025 (UTC)
- @Kiwipete: Apologies, I've been out all day. Came home and did a little tinkering to see if I could isolate more of the issue before I came here.
- To answer your question: I simply put "{{Use mdy dates|date=January 2025}}" into the "Append/Prepend text" window, marked "Prepend", and checked the box "Sort metadata after". In every instance over the past few days where I have checked and double-checked, that has been sufficient. (To answer your other question: AWB wasn't changing the order of anything. Rather, in this instance it's properly sorting the metadata after introducing the new hatnote. In this instance, it is not. It is inserting the hatnote and moving on. (A module might fix this, and I haven't had the time to experiment with it today.))
- HOWEVER: I found the issue again on another television article from another batch: see here.
- The two incorrect articles are about television seasons, and I'm wondering if the problem has something to do with the {{italictitle}} template and its siblings. That's the only common denominator I can think of.
- (And please excuse any lack of clarity in my response here - I am severely non-technological, and consequently it's a minor miracle that I've gotten as far as I have in targeting this issue.) --Ser Amantio di NicolaoLo dicono a Signa. 07:17, 5 January 2025 (UTC)
- Why did you add a blank line between
{{Use mdy dates|date=January 2025}}
&{{Infobox Arizona Legislature
here? ~ Tom.Reding (talk ⋅dgaf) 20:41, 4 January 2025 (UTC)- @Tom.Reding: Wrong "newlines" setting, sorry. --Ser Amantio di NicolaoLo dicono a Signa. 07:10, 5 January 2025 (UTC)
Should have limitation on certain parameters of templates
AWB should have restriction on certain parameters of citation templates. see this diff. It has put a space after comma at url parameter and causes CS1 error. It's ok to have AWB on title parameter of citation templates.––kemel49 18:01, 4 January 2025 (UTC)
- Also consider this diff.––kemel49 18:08, 4 January 2025 (UTC)
- @KEmel49: AWB is very configurable and is used for different tasks by different editors. Problems with AWB edits should be raised first with the editor making them.
- @BD2412: Do your regular expressions have something to stop them editing URLs? I tack
(?<!https?://\<\>]*)
on to the end of some of mine, and that works 99% of the time. -- John of Reading (talk) 18:56, 4 January 2025 (UTC)- I generally just eyeball it. 99% of the time, there are just one or two clear errors on the page. What would actually help more would be for the changes to show up more prominently in the AWB edit window. Give me a few minutes and I'll mock up a concept. BD2412 T 19:23, 4 January 2025 (UTC)
- Okay, that was more than a few minutes, but I would like the AWB window (top image) to look more like the Misplaced Pages edit window (bottom image):
- I generally just eyeball it. 99% of the time, there are just one or two clear errors on the page. What would actually help more would be for the changes to show up more prominently in the AWB edit window. Give me a few minutes and I'll mock up a concept. BD2412 T 19:23, 4 January 2025 (UTC)
- In fact, what would be ideal would be for the entire URL to be highlighted in the AWB window when an edit was changing its structure, and/or for AWB to have an alert for that in the alert window. BD2412 T 21:47, 4 January 2025 (UTC)
Can't save at all
When I try to save any edits with AWB, it justs says "Saving", then "Restarting in 10", waits 10 seconds and re-scans the same page. No edits are made, and nothing appears in the log. Every time I click save, the wait increases by five seconds. Milo8505 (talk) 19:39, 4 January 2025 (UTC)
- None of your edits appear to show an AWB tag so has it ever worked for you? Neils51 (talk) 21:50, 4 January 2025 (UTC)
- No, I have just been given permission recently, but I am on the checkpage.
- Maybe it's something silly I'm doing wrong, as I'm a complete beginner in this program.
- Any help much appreciated.
- Milo8505 (talk) 06:33, 5 January 2025 (UTC)
- It was something silly indeed. I had not given my bot password sufficient permissions Facepalm.
- My issue is Resolved
- Thanks!
- Milo8505 (talk) 06:42, 5 January 2025 (UTC)
Wheel arrangement
This edit was flagged up as an error, see edit summary of following edit. John (talk) 20:56, 4 January 2025 (UTC)
- Redrose64 pinged me on a couple of these as well, however they are hard to spot against various other edits. Perhaps the regex could be rejected if the article contains the string 'locomotive' or similar? Neils51 (talk) 00:39, 7 January 2025 (UTC)
- As that's from typo fixing, I suggest the issue is raised on typos talk page. Rjwilmsi 09:40, 7 January 2025 (UTC)
What does "new" mean?
On the bottom right there are the numbers "pages/min", "edits/min", "edits", "skipped" and "new". What does "new" mean? I've read the manual but can't seem to find it in it. ―Panamitsu (talk) 00:04, 10 January 2025 (UTC)
- Number of pages created i.e. new pages. Rjwilmsi 15:22, 10 January 2025 (UTC)
- Do you mean creation of a page on Misplaced Pages? That's odd. It said 1 new page for me yesterday but I had not created any new pages. ―Panamitsu (talk) 22:29, 10 January 2025 (UTC)
- That is what it means. AWB increments the new page count before doing the page save (new page creation), so if new page creation fails (e.g. page is salted) then the count could be falsely high. Also, given that the MediaWiki API doesn't raise edit conflicts for self-edit conflicts, one way this could happen would be to prepare an edit to a non-existent (new) page in AWB, in the meantime actually create the page and save an edit in browser, return to AWB and Save. I think the API will accept the second edit via AWB without error, and AWB will think that counted as a page creation as the page didn't exist when AWB loaded it. I'm not saying you did either of those, they're just examples of how the New pages count in AWB could be off. Rjwilmsi 10:48, 11 January 2025 (UTC)
- Do you mean creation of a page on Misplaced Pages? That's odd. It said 1 new page for me yesterday but I had not created any new pages. ―Panamitsu (talk) 22:29, 10 January 2025 (UTC)