Index: trunk/tools/analysis/StreamingXMLHistory.php |
— | — | @@ -119,7 +119,8 @@ |
120 | 120 | "Revision MD5", |
121 | 121 | "new?", |
122 | 122 | "edit size", |
123 | | - "net size change" |
| 123 | + "net size change", |
| 124 | + "anonymous?" |
124 | 125 | ); |
125 | 126 | fputcsv($this->outputFile, $csvData); |
126 | 127 | } |
— | — | @@ -174,7 +175,8 @@ |
175 | 176 | $md5, |
176 | 177 | $isNew, |
177 | 178 | $textSize, |
178 | | - $textSize - $this->oldSize |
| 179 | + $textSize - $this->oldSize, |
| 180 | + isset($revision->contributor->username)? "no":"yes" |
179 | 181 | ); |
180 | 182 | $this->oldSize = $textSize; |
181 | 183 | fputcsv($this->outputFile, $csvData); |