Hi
To add 'All pages' to the MediaWiki navigation bar should I just add:
Special:Allpages|allpages
to the MediaWiki:Sidebar ?
Is Special:Allpages|allpages the correct format for adding a link to the navigation? It works but is there a better/more efficient way of writing Special:Allpages|allpages ? Thanks for any help you can give.
Jim
Jim Sutton wrote :
To add 'All pages' to the MediaWiki navigation bar should I just add:
Special:Allpages|allpages
to the MediaWiki:Sidebar ?
Is Special:Allpages|allpages the correct format for adding a link to the navigation? It works but is there a better/more efficient way of writing Special:Allpages|allpages ? Thanks for any help you can give.
Thanks for you help!
Jim
On 16/01/2008, Alexis Moinet alexis.moinet@fpms.ac.be wrote:
Jim Sutton wrote :
To add 'All pages' to the MediaWiki navigation bar should I just add:
Special:Allpages|allpages
to the MediaWiki:Sidebar ?
Is Special:Allpages|allpages the correct format for adding a link to the navigation? It works but is there a better/more efficient way of writing Special:Allpages|allpages ? Thanks for any help you can give.
see http://www.mediawiki.org/wiki/Manual:Navigation_bar
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
So I get hot by about 50 spam edits a day, but they all do the same thing. They just insert what seems to be exactly 200 links.
Is there a way to say that if a edit inserts more than say... 50 links, to deny it? If not, how would I go about making a plugin. Im sure I could hack the code to do it, but I think I need to graduate from hack and enter the plugin world.
Thanks,
-Adam
Adam Meyer wrote:
So I get hot by about 50 spam edits a day, but they all do the same thing. They just insert what seems to be exactly 200 links.
Is there a way to say that if a edit inserts more than say... 50 links, to deny it? If not, how would I go about making a plugin. Im sure I could hack the code to do it, but I think I need to graduate from hack and enter the plugin world.
Thanks,
-Adam
Use http://www.mediawiki.org/wiki/Extension:ConfirmEdit on link adding.
On Jan 17, 2008 4:45 PM, Platonides Platonides@gmail.com wrote:
Adam Meyer wrote:
So I get hot by about 50 spam edits a day, but they all do the same thing. They just insert what seems to be exactly 200 links.
Is there a way to say that if a edit inserts more than say... 50 links, to deny it? If not, how would I go about making a plugin. Im sure I could hack the code to do it, but I think I need to graduate from hack and enter the plugin world.
Thanks,
-Adam
Use http://www.mediawiki.org/wiki/Extension:ConfirmEdit on link adding.
I think it would be nice to have an option for the CAPTCHA to trigger only for edits that add more than a certain number of new links. (So a setting of 0 would duplicate the current behavior of triggering as a result of _any_ new links.)
Emufarmers Sangly wrote:
On Jan 17, 2008 4:45 PM, Platonides wrote:
Use http://www.mediawiki.org/wiki/Extension:ConfirmEdit on link adding.
I think it would be nice to have an option for the CAPTCHA to trigger only for edits that add more than a certain number of new links. (So a setting of 0 would duplicate the current behavior of triggering as a result of _any_ new links.)
Not hard to do. Just change the 0 on ConfirmEdit_Body.php:308 to $wgCaptchaAddUrlCount and set it to your favourite value.
AM> Is there a way to say that if a edit inserts more than say... 50 AM> links, to deny it? $wgSpamRegex="/(http:){51}/"; # http://www.mediawiki.org/wiki/Manual:%24wgSpamRegex
Thanks you! I found wgSpamRegex just the other day. I added it and it has stooped all the link spam!
But his pattern is really great. Thanks.
-Adam
On Jan 17, 2008, at 6:41 PM, jidanni@jidanni.org wrote:
AM> Is there a way to say that if a edit inserts more than say... 50 AM> links, to deny it? $wgSpamRegex="/(http:){51}/"; # http://www.mediawiki.org/wiki/Manual:%24wgSpamRegex
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
AM> Is there a way to say that if a edit inserts more than say... 50 AM> links, to deny it?
$wgSpamRegex="/(http:){51}/";
Oops I meant $wgSpamRegex="/(http:.*){51}/"; Now noted on http://www.mediawiki.org/wiki/Manual:%24wgSpamRegex
mediawiki-l@lists.wikimedia.org