r67212 MediaWiki - Code Review archive

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

Diff [purge]

Index: trunk/extensions/CodeReview/backend/Subversion.php
@@ -322,6 +322,7 @@
323323 function getDiff( $path, $rev1, $rev2 ) {
324324 return $this->_proxy( array(
325325 'action' => 'diff',
 326+ 'base' => $this->mRepo,
326327 'path' => $path,
327328 'rev1' => $rev1,
328329 'rev2' => $rev2 ) );
@@ -330,6 +331,7 @@
331332 function getLog( $path, $startRev = null, $endRev = null ) {
332333 return $this->_proxy( array(
333334 'action' => 'log',
 335+ 'base' => $this->mRepo,
334336 'path' => $path,
335337 'start' => $startRev,
336338 'end' => $endRev ) );
@@ -338,6 +340,7 @@
339341 function getDirList( $path, $rev = null ) {
340342 return $this->_proxy( array(
341343 'action' => 'list',
 344+ 'base' => $this->mRepo,
342345 'path' => $path,
343346 'rev' => $rev ) );
344347 }

Follow-up revisions

RevisionCommit summaryAuthorDate
r67213MFT r67212: Client-side support for r67211: allow codereview-proxy to work wi...tstarling06:48, 2 June 2010

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r67211Allow base paths other than MediaWiki.tstarling06:44, 2 June 2010

Status & tagging log