User "Krinkle" posted a comment on MediaWiki.r93823.

Full URL: http://www.mediawiki.org/wiki/Special:Code/MediaWiki/93823#c20419
Commit summary:

Fix for bug 30195 (tag cloud is inexplicably shuffled), based on patch by Kalan

Comment:

in pseudo code it could look like
<pre>
if ( $wgCodeReviewEnableTagCloud ) {
or
if  ( $params['cloud'] ) {

  showCloud() // change font-size respective to number of revs, and randomize 
order

} else {

  showList() // something like this, without variable sizes or order:
  <ul>
  foreach( ... ) {
    <li><a>{tag}</a> (### revs)
  }
  </ul>
}

_______________________________________________
MediaWiki-CodeReview mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-codereview

Reply via email to