r67213 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r67212‎ | r67213 | r67214 >
Date:06:48, 2 June 2010
Author:tstarling
Status:ok
Tags:
Comment:
MFT r67212: Client-side support for r67211: allow codereview-proxy to work with base paths other than MediaWiki
Modified paths:
  • /branches/wmf/1.16wmf4/extensions/CodeReview (modified) (history)
  • /branches/wmf/1.16wmf4/extensions/CodeReview/backend/Subversion.php (modified) (history)

Diff [purge]

Index: branches/wmf/1.16wmf4/extensions/CodeReview/backend/Subversion.php
@@ -319,6 +319,7 @@
320320 function getDiff( $path, $rev1, $rev2 ) {
321321 return $this->_proxy( array(
322322 'action' => 'diff',
 323+ 'base' => $this->mRepo,
323324 'path' => $path,
324325 'rev1' => $rev1,
325326 'rev2' => $rev2 ) );
@@ -327,6 +328,7 @@
328329 function getLog( $path, $startRev = null, $endRev = null ) {
329330 return $this->_proxy( array(
330331 'action' => 'log',
 332+ 'base' => $this->mRepo,
331333 'path' => $path,
332334 'start' => $startRev,
333335 'end' => $endRev ) );
@@ -335,6 +337,7 @@
336338 function getDirList( $path, $rev = null ) {
337339 return $this->_proxy( array(
338340 'action' => 'list',
 341+ 'base' => $this->mRepo,
339342 'path' => $path,
340343 'rev' => $rev ) );
341344 }
Property changes on: branches/wmf/1.16wmf4/extensions/CodeReview
___________________________________________________________________
Name: svn:mergeinfo
342345 + /branches/wmf-deployment/extensions/CodeReview:60970
/trunk/extensions/CodeReview:67212
/trunk/phase3/extensions/CodeReview:63545-63546,63549,63643,63764,63897-63901,64113,64509,65387,65391,65555,65590,65650,65816

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r67211Allow base paths other than MediaWiki.tstarling06:44, 2 June 2010
r67212Client-side support for r67211: allow codereview-proxy to work with base path...tstarling06:46, 2 June 2010

Status & tagging log