r95696 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r95695‎ | r95696 | r95697 >
Date:20:52, 29 August 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
changed file push limit from 10 to 500; version 1.1.1
Modified paths:
  • /trunk/extensions/Push/Push.php (modified) (history)
  • /trunk/extensions/Push/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/Push/includes/Push_Tab.php (modified) (history)
  • /trunk/extensions/Push/specials/ext.push.special.js (modified) (history)

Diff [purge]

Index: trunk/extensions/Push/specials/ext.push.special.js
@@ -117,7 +117,8 @@
118118 'action': 'query',
119119 'prop': 'images',
120120 'format': 'json',
121 - 'titles': pageName
 121+ 'titles': pageName,
 122+ 'imlimit': 500
122123 },
123124 function( data ) {
124125 if ( data.query ) {
Index: trunk/extensions/Push/Push.php
@@ -24,7 +24,7 @@
2525 die( 'Not an entry point.' );
2626 }
2727
28 -define( 'Push_VERSION', '1.1' );
 28+define( 'Push_VERSION', '1.1.1' );
2929
3030 $wgExtensionCredits['other'][] = array(
3131 'path' => __FILE__,
Index: trunk/extensions/Push/RELEASE-NOTES
@@ -4,6 +4,11 @@
55 Latest version of the release notes: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Push/RELEASE-NOTES?view=co
66
77
 8+=== Version 1.1.1 ===
 9+2011-08-29
 10+
 11+* Changed file push limit from 10 to 500.
 12+
813 === Version 1.1 ===
914 2011-08-04
1015
Index: trunk/extensions/Push/includes/Push_Tab.php
@@ -414,6 +414,7 @@
415415 'format' => 'json',
416416 'prop' => 'images',
417417 'titles' => implode( '|', $pages ),
 418+ 'imlimit' => 500
418419 );
419420
420421 $api = new ApiMain( new FauxRequest( $requestData, true ), true );

Status & tagging log