Page MenuHomePhabricator

Show number of items on Whatlinkshere if less than limit value
Closed, ResolvedPublic

Description

It would be to useful to show the number of items displayed on Special:WhatLinksHere if it is less than the limit value (in other words, all appearing on a single page).

E.g. when limit=50, if 35 results are returned, display "Showing 35 results."

Note: this isn't quite the same as T6394.


See Also:

Event Timeline

bzimport raised the priority of this task from to Low.Nov 22 2014, 12:52 AM
bzimport set Reference to bz42357.

The actual limit on the number of results which are shown is something of a moving target because of bug [[bug 42357]], at least when redirects are shown.

Adding:

$('div#mw-content-text').html($('div#mw-content-text').html().replace(/previous [\d,]* \| next [\d,]*/, 'showing all ' + $('ul#mw-whatlinkshere-list li').length + ' results'));

to my [[Special:MyPage/common.js]] works for me. Of course, you could add some formatting in there if you were so inclined...

/* show result count if all results are shown on one page */
if ( $( 'div#mw-content-text' ).html().search( /previous [\d,]* \|  next [\d,]*/ ) !== -1 ) {
   var allPagesReplace = 'showing ';
    if ( $( 'ul#mw-whatlinkshere-list li' ).length === 1 ) {
        allPagesReplace += 'the only ';
    } else if ( $( 'ul#mw-whatlinkshere-list li' ).length > 1 ) {
        allPagesReplace += 'all ' + $( 'ul#mw-whatlinkshere-list li' ).length;
    }
    allPagesReplace += ' result';
    if( $( 'ul#mw-whatlinkshere-list li' ).length > 1 ) {
        allPagesReplace += 's';
    }
   $( 'div#mw-content-text' ).html( $( 'div#mw-content-text' ).html().replace( /previous [\d,]* \|  next [\d,]*/g, allPagesReplace ) );
}

Is the anal retentive version...
Can be loaded locally on enwp with:
importScript( 'User:Technical 13/Scripts/Gadget-pageCount.js' );// [[User:Technical 13/Scripts/Gadget-pageCount]]

or globally on any other mw site with:
mw.loader.load( 'en.wikipedia.org/w/index.php?title=User:Technical 13/Scripts/Gadget-pageCount.js&action=raw&ctype=text/javascript' );[[User:Technical 13/enwpScripts]]

Since this can be done very easily with JavaScript, closing as WORKSFORME

Userscripts aren't a valid solution.

Change 127866 had a related patch set uploaded by Gerrit Patch Uploader:
Show number of displayed pages on WhatLinksHere

https://gerrit.wikimedia.org/r/127866

(In reply to Niklas Laxström from comment #9)

Why not just change ul to ol?

No opinion, but ol would be more noisy.

(In reply to Nemo from comment #10)

(In reply to Niklas Laxström from comment #9)

Why not just change ul to ol?

No opinion, but ol would be more noisy.

Maybe the person who requested this could comment on that. If not, would it be better to display the count above the list?

(In reply to PiRSquared17 from comment #8)

Demo: http://pirsquared-dev.wmflabs.org/wiki/Special:WhatLinksHere/Cake

I may be missing something here but this demo doesn't appear to be a demo of my request. If it were, it would say "showing 5 results"....

(In reply to Nemo from comment #10)

(In reply to Niklas Laxström from comment #9)

Why not just change ul to ol?

No opinion, but ol would be more noisy.

I've just tried switching WhatLinksHere's standard output to an ol on a 50-item result list and it is very noisy - plus kind of confusing if you don't know that the results are displayed in order of creation. I don't think it would be much of an inprovement.

Is the patch attached to this still valid?

Change 127866 had a related patch set uploaded (by Glaisher):
Show number of displayed pages on WhatLinksHere

https://gerrit.wikimedia.org/r/127866

Change 127866 merged by jenkins-bot:
[mediawiki/core@master] Show number of displayed pages on WhatLinksHere

https://gerrit.wikimedia.org/r/127866

Hi, great to see this suggestion finally being implemented 7 years after I filed it. However looking through the diff in an email I just had from Jenkins, the message "Displayed $1 {{PLURAL:$1|item|items}}." is using past tense. It should be in present tense, consistent with other comparable messages (eg. on Special:FewestRevisions, "Showing below up to 50 results in range #1 to #50.").