Last modified: 2014-08-21 20:37:07 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T29839, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 27839 - Offer 460px and 620px as thumbnail size preferences
Offer 460px and 620px as thumbnail size preferences
Status: RESOLVED WONTFIX
Product: Wikimedia
Classification: Unclassified
Site requests (Other open bugs)
unspecified
All All
: Normal enhancement with 1 vote (vote)
: ---
Assigned To: Nobody - You can work on this!
http://fr.wikipedia.org/wiki/Wikip%C3...
: ops, shell
Depends on:
Blocks: 49357
  Show dependency treegraph
 
Reported: 2011-03-03 19:04 UTC by vufohexicywupaqe
Modified: 2014-08-21 20:37 UTC (History)
8 users (show)

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments

Description vufohexicywupaqe 2011-03-03 19:04:41 UTC
Thank you for allowing to extend the images sizes offered as an option in preferences. Since 2006, the maximum size of images is 300 pixels in the articles. Meanwhile, the screens have more pixels. Thank you for offering a choice: 460 pixels and 620 pixels. (Merci de permettre d'étendre les tailles des images proposées en option dans les préférences. Depuis 2006, la taille maximale des images est de 300 pixels dans les articles. Entre temps, les écrans ont plus de pixels. Merci de proposer le choix : 460 pixels et 620 pixels.)

(Summary : Affichage des images trop petites dans les articles de WP)
Comment 1 Roan Kattouw 2011-03-03 19:11:40 UTC
I guess this could be done if there is community consensus for it on frwiki.
Comment 2 vufohexicywupaqe 2011-03-03 19:37:56 UTC
There is no opposition to this improvement. Is it time consuming to be able to give an additional choice? If not, we could have more choice over 300 pixels. (Il n'y a pas d'opposition à cette amélioration. Est-ce que cela demande beaucoup de temps à pouvoir donner à un choix supplémentaire ? Si non, on pourrait avoir davantage de choix supérieurs à 300 pixels.)
Comment 3 Mark A. Hershberger 2011-03-04 17:29:46 UTC
Changes like this are only made when the person requesting it can show community consensus [[WP:CON]]
Comment 4 vufohexicywupaqe 2011-03-05 04:50:45 UTC
Consensus of the geek community WP {{en}}: why not if quick and easy to implement. 

When it is done?

(Consensus par les geek de la communauté WP {{fr}} : pourquoi pas si rapide et facile à mettre en place. Quand ça sera fait ? )
Comment 5 Mark A. Hershberger 2011-03-11 02:26:27 UTC
Giving this to Ashar.  If you can convince him, then it'll happen quickly.
Comment 6 Antoine "hashar" Musso (WMF) 2011-03-11 07:34:56 UTC
We limit the thumbnails size to a given set which is defined by the array $wgThumbLimits. The array key indexes are referred to by at least the user preference 'thumbsize', which mean we have to make sure the array order is unaltered.

Self note: look at wmgThumbsizeIndex

From the discussion on the local village pump (Le Bistro), the sizes have been choose arbitrary. I am wondering if we could find "better" size matching the smartphones screen sizes.
Comment 7 vufohexicywupaqe 2011-03-13 14:33:06 UTC
Thank you for extending up to 620 pixels.
Comment 8 Antoine "hashar" Musso (WMF) 2011-12-21 11:24:29 UTC
sending this bug back in the pool of ops / shell requests.
Comment 9 Sam Reed (reedy) 2013-02-02 23:48:21 UTC
https://gerrit.wikimedia.org/r/47303
Comment 10 Jérémie Roquet 2013-02-03 17:39:17 UTC
We should sort the proposed resolutions by increasing size somewhere. Right now, the available resolutions are sorted as follow: 460, 620, 120, 150, 180, 200, 220, 250, 300.

Best regards
Comment 11 Kropotkine113 2013-02-27 09:32:10 UTC
I agree with Jérémie Roquet. Proposed resolution should be sort by increasing size in https://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php

Because of the additional size 460 and 620 px proposed after this bug resolution, the default size is now 180px instead of the 220px expected. 

In InitialiseSettings it would be vetter to redefine completetly the list of proposed resolution instead of adding two values. 

We have 
'wgThumbLimits' => array(
	'default' => array( 120, 150, 180, 200, 220, 250, 300 ),
	'+frwiki' => array( 460, 620 ),
	'+itwikiquote' => array( 360 ),
	'svwiki' => array( 120, 200, 250, 300, 360 ),
),
'wmgThumbsizeIndex' => array(
	'default' => 4,
	'svwiki' => 2, // bug 16739
)

We should have 

'wgThumbLimits' => array(
	'default' => array( 120, 150, 180, 200, 220, 250, 300 ),
	'frwiki' => array( 120, 150, 180, 200, 220, 250, 300, 460, 620 ),
	'+itwikiquote' => array( 360 ),
	'svwiki' => array( 120, 200, 250, 300, 360 ),
),
'wmgThumbsizeIndex' => array(
	'default' => 4,
	'svwiki' => 2, // bug 16739
)
Comment 12 Kropotkine113 2013-02-27 09:44:31 UTC
I think the shift in default resolution (220px to 180px) is due to an unexpected effect of « +frwiki » which leads to a left hand side addition in wgThumbLimits array... If this shift is not managed in wmgThumbsizeIndex the default resolution is changed. I think my Comment #11 fixes both problems (sort by increasing size and default resolution). 

Best regards.
Comment 13 Jérémie Roquet 2013-02-27 11:58:39 UTC
Gerrit change #51152 , waiting for review.

Best regards,
Comment 14 Antoine "hashar" Musso (WMF) 2013-02-27 17:57:14 UTC
The original request can not be fulfilled, that will cause too much stress on our caching and storage infrastructure.

I have reverted the original fix with:

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

That would make this bug as RESOLVED/WONTFIX just like the request by hewiki to raise the thumb limit : bug 41712.
Comment 15 Antoine "hashar" Musso (WMF) 2013-02-27 18:10:43 UTC
reopening since the revert patch is not merged/deployed yet :-)
Comment 16 Antoine "hashar" Musso (WMF) 2013-02-28 00:07:56 UTC
Been merged by Sam.  That essentially revert the french wiki back to use the set of thumbnails which are provided by default in MediaWiki.

For more details, see our RFC at http://www.mediawiki.org/wiki/Requests_for_comment/Standardized_thumbnails_sizes

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links