Page MenuHomePhabricator

Add option to expand all entries
Open, LowPublicFeature

Description

Currently one must expand each individually. The code on [[m:User:PiRSquared17/common.js]] does this, for example. Make it a built-in feature?
It could be a button on RC/watchlist pages or an option in preferences.
More discussion on [[m:Meta:Babel]].


Version: unspecified
Severity: enhancement

Details

Reference
bz54149

Event Timeline

bzimport raised the priority of this task from to Low.Nov 22 2014, 1:48 AM
bzimport set Reference to bz54149.
bzimport added a subscriber: Unknown Object (MLST).

I think this is actually a request for MediaWiki core's enhanced recent changes, not for this extension specifically.

(In reply to comment #1)

I think this is actually a request for MediaWiki core's enhanced recent
changes, not for this extension specifically.

The code to "auto-expand all sections" is different, for core enhanced RC. Ie:

CleanChanges can do this with:

/* CleanChanges group auto-expand. (Credit to [[m:User:PiRSquared17]]) */
$(window).load(function(){$('a[href^="javascript:toggleVisibilityE"]:odd').each(function(i,x){eval($(x).attr('href').substring(11))})});

Core enhanced RC can do this with:

/* Expand all grouped RC/Watchlist entries. (Credit to [[m:User:PiRSquared17]]) */
$(window).load(function() { $('.mw-enhancedchanges-arrow').click(); });

(In reply to comment #2)

(In reply to comment #1)

I think this is actually a request for MediaWiki core's enhanced recent
changes, not for this extension specifically.

It may very well be, but I'm not sure. (semi-related question: Where do you file enhanced RCs bugs? MediaWiki->General/unknown?)

The code to "auto-expand all sections" is different, for core enhanced RC.
Ie:

CleanChanges can do this with:

/* CleanChanges group auto-expand. (Credit to [[m:User:PiRSquared17]]) */
$(window).load(function(){$('a[href^="javascript:toggleVisibilityE"]:odd').
each(function(i,x){eval($(x).attr('href').substring(11))})});

Core enhanced RC can do this with:

/* Expand all grouped RC/Watchlist entries. (Credit to
[[m:User:PiRSquared17]])
*/
$(window).load(function() { $('.mw-enhancedchanges-arrow').click(); });

This lead me to believe that they were completely different. Should I/someone else file a separate bug for enhanced RC, change this to enhanced RC, or just leave this as CleanChanges?

Aklapper changed the subtype of this task from "Task" to "Feature Request".Feb 4 2022, 11:13 AM
Aklapper removed a subscriber: wikibugs-l-list.