r69448 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r69447‎ | r69448 | r69449 >
Date:23:24, 16 July 2010
Author:nimishg
Status:deferred
Tags:
Comment:
anonymous or not also recorded
Modified paths:
  • /trunk/tools/analysis/StreamingXMLHistory.php (modified) (history)

Diff [purge]

Index: trunk/tools/analysis/StreamingXMLHistory.php
@@ -119,7 +119,8 @@
120120 "Revision MD5",
121121 "new?",
122122 "edit size",
123 - "net size change"
 123+ "net size change",
 124+ "anonymous?"
124125 );
125126 fputcsv($this->outputFile, $csvData);
126127 }
@@ -174,7 +175,8 @@
175176 $md5,
176177 $isNew,
177178 $textSize,
178 - $textSize - $this->oldSize
 179+ $textSize - $this->oldSize,
 180+ isset($revision->contributor->username)? "no":"yes"
179181 );
180182 $this->oldSize = $textSize;
181183 fputcsv($this->outputFile, $csvData);

Status & tagging log