https://bugzilla.wikimedia.org/show_bug.cgi?id=38714
Dheeraj Joshi <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #5 from Dheeraj Joshi <[email protected]> --- The following files with the line number contains the 'svn' \includes\api\ApiBase.php: 110 /** 111 * Returns a string that identifies the version of the extending class. 112: * Typically includes the class name, the svn revision, timestamp, and 113: * last author. Usually done with SVN's Id keyword 114 * @return string 115 */ ... 518 // returning the version string for ApiBase work 519 if ( $path ) { 520: return "{$matches[0]}\n https://svn.wikimedia.org/" . 521 "viewvc/mediawiki/trunk/" . dirname( $path ) . 522 "/{$matches[2]}"; \includes\api\ApiMain.php: 1119 public function getVersion() { 1120 $vers = array(); 1121: $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/"; 1122 $vers[] = __CLASS__ . ': $Id$'; 1123 $vers[] = ApiBase::getBaseVersion(); \includes\api\ApiQuerySiteinfo.php: 129 $data['git-hash'] = $git; 130 } else { 131: $svn = SpecialVersion::getSvnRevision( $GLOBALS['IP'] ); 132: if ( $svn ) { 133: $data['rev'] = $svn; 134 } 135 } ... 465 if ( isset( $ext['version'] ) ) { 466 $ret['version'] = $ext['version']; 467: } elseif ( isset( $ext['svn-revision'] ) && 468 preg_match( '/\$(?:Rev|LastChangedRevision|Revision): *(\d+)/', 469: $ext['svn-revision'], $m ) ) 470 { 471 $ret['version'] = 'r' . $m[1]; \includes\logging\LogFormatter.php: 227 //case 'revision': // Revision deletion 228 //case 'event': // Log deletion 229: // see https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/LogPage.php?&pathrev=97044&r1=97043&r2=97044 230 //default: 231 } ... 233 234 case 'patrol': 235: // https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/PatrolLog.php?&pathrev=97495&r1=97494&r2=97495 236 // Create a diff link to the patrolled revision 237 if ( $entry->getSubtype() === 'patrol' ) { \includes\media\XCF.php: 6 * http://en.wikipedia.org/wiki/XCF_(file_format) 7 * Specification in Gnome repository: 8: * http://svn.gnome.org/viewvc/gimp/trunk/devel-docs/xcf.txt?view=markup 9 * 10 * This program is free software; you can redistribute it and/or modify \includes\profiler\ProfilerSimpleUDP.php: 24 /** 25 * ProfilerSimpleUDP class, that sends out messages for 'udpprofile' daemon 26: * (the one from mediawiki/trunk/udpprofile SVN ) 27 * @ingroup Profiler 28 */ -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
