User:Technical 13/Scripts/Gadget-watchlistCleaner.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Technical 13/Scripts/Gadget-watchlistCleaner. |
if ( mw.config.get( 'wgPageName' ) == "Special:Watchlist" ) {
if($( 'a:contains("since last visit")' ).length >= 1){
$( 'a:contains("since last visit")' ).each(function(){
$(this).html($(this).html().replace( 'since last visit', 'new' ) )
});
}
if( window.screen.width < 640 ){
$( 'span.mw-watchlist-toollinks' ).html( $( 'span.mw-watchlist-toollinks' ).html().replace( / \| /g, ' • ' ).replace( '<a href="/wiki/Special:Watchlist" title="Special:Watchlist">View relevant changes</a>', '<a href="/wiki/Special:Watchlist" title="View watchlist (or purge)">V</a>' ).replace( '<a href="/wiki/Special:EditWatchlist" title="Special:EditWatchlist">View and edit watchlist</a>', '<a href="/wiki/Special:EditWatchlist" title="Edit watchlist">E</a>' ).replace( '<a href="/wiki/Special:EditWatchlist/raw" title="Special:EditWatchlist/raw">Edit raw watchlist</a>', '<a href="/wiki/Special:EditWatchlist/raw" title="edit Raw watchlist">R</a>' ).replace( '<a href="/wiki/Special:EditWatchlist/clear" title="Special:EditWatchlist/clear">Clear the watchlist</a>', '<a href="/wiki/Special:EditWatchlist/clear" title="Delete your watchlist" style="font-size: smaller; color: #F00;">D</a>' ) );
var wlCount = $( '#mw-content-text' ).find( 'p b' ).text();// Get the count of pages on watchlist
$( 'input[name="dummy"]' ).val( ' — Mark all ' + wlCount + ' watchlisted pages as visited. — ' );// Update button
$( '#mw-content-text' ).find( 'p b' ).closest( 'p' ).remove();// Remove now obsolete sentence
$( 'span#mw-wlheader-showupdated' ).remove();// Remove notice that all changed are bold
$( 'form#mw-watchlist-form' ).remove();// Remove the controls for changing how the page is displayed
}
/* Code to temporarily disable the "Mark all as read" button. Comment this code out when not needed for testing. */
$( 'input[name="dummy"]' ).val( $( 'input[name="dummy"]' ).val() + ' — temporarily disabled' ).attr( 'disabled','disabled' );
$('input[name="dummy"]').after('<input type="button" id="enable-ma" onClick="$(\'input[name=dummy]\').removeAttr(\'disabled\'); $(\'input#enable-ma\').remove();" value="← Enable the mark all button" />');
}
/* Start working on condensing each row to new posts or last posts without expanding when using enhanced recent changes
var newEdits = [];
$('table.mw-enhanced-rc').each(function () {
newEdits = $(this).find('span.mw-title').closest('td').find('a:nth-child(3)').text().match(/(\d)/);
if (newEdits !== null) {
newEdits = parseInt(thisRowsNewEdits[1].replace(/,/g,''), 10);
} else {
newEdits = parseInt(0, 10);
}
for(var i = 0; i <= newEdits; i++){
// Just got to find the right element...
console.log('%o', $(this).find('td.mw-enhanced-rc-nested a.mw-userlink:nth-child(3)').text());
}
newEdits = [];
});
/* Pagenames: *//*
$('table.mw-enhanced-rc').each(function(){
console.log("%o",
$(this).find('span.mw-title').text()//;
);
});
*/