Snippets/Autoedit
< Snippets
(Redirected from Extension:Autoedit)This script is no longer maintained, and may no longer work correctly. Please help by reporting bugs here |
Autoedit is Lupin's user-space script that enables automatic page editing via commands in URLs (see also: Manual:Parameters to index.php). To use, you need to include autoedit.js in your personal or global JavaScript (if you have working Pop-ups, you must also have included that) by adding the following lines:
Autoedit | |
---|---|
Language(s): | JavaScript |
Compatible with: | unknown |
mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Lupin/autoedit.js&action=raw&ctype=text/javascript');
Arguments
edit?title=Article &action=edit &autoedit=s~...~...~g;s~...~...~g &autoclick=wpDiff &autominor=false &autosummary=Summary
?title=...
– article title&action=edit
– action&autoedit=...
– autoedit script
s~
– begin of replace command...
– it will be replaced by next text (may be a regular expression); cannot contain~
chars, for enter text to empty page (or new section in existing one) keep it empty~
...
– next text;)
; cannot contain~
chars~g
– end of replace command
Script can contain multiple commands, separated by ;
&autoclick=...
– button pressed after autoedit (wpDiff
, wpSave
, wpPreview
)&autominor=...
– is change minor&autosummary=...
– summary of editExample
editTo replace all cat
words with dog
in article Animals
, you can use this command:
http://www.yourwiki.org/w/index.php?title=Animals&action=edit&autoedit=s~cat~dog~g&autoclick=wpSave&autominor=false&autosummary=Replace%20cat%20by%20dog
Using in
editThis function is used in Lupin's Pop-ups script.