Show more progress
This commit is contained in:
parent
49f4caddfb
commit
0f0c3a924d
5
wp2git.d
5
wp2git.d
|
@ -28,12 +28,13 @@ int main(string[] args)
|
||||||
foreach (child; xml[0]["page"])
|
foreach (child; xml[0]["page"])
|
||||||
if (child.tag=="revision")
|
if (child.tag=="revision")
|
||||||
{
|
{
|
||||||
fwritefln(stderr, "Revision %s", child["id"].text);
|
|
||||||
string summary = child["comment"] ? child["comment"].text : null;
|
string summary = child["comment"] ? child["comment"].text : null;
|
||||||
|
string committer = child["contributor"]["username"] ? child["contributor"]["username"].text : child["contributor"]["ip"].text;
|
||||||
|
fwritefln(stderr, "Revision %s by %s: %s", child["id"].text, committer, summary);
|
||||||
string text = child["text"].text;
|
string text = child["text"].text;
|
||||||
data ~=
|
data ~=
|
||||||
"commit master\n" ~
|
"commit master\n" ~
|
||||||
"committer <" ~ (child["contributor"]["username"] ? child["contributor"]["username"].text : child["contributor"]["ip"].text) ~ "> now\n" ~
|
"committer <" ~ committer ~ "> now\n" ~
|
||||||
"data " ~ .toString(summary.length) ~ "\n" ~
|
"data " ~ .toString(summary.length) ~ "\n" ~
|
||||||
summary ~ "\n" ~
|
summary ~ "\n" ~
|
||||||
"M 644 inline " ~ name ~ ".txt\n" ~
|
"M 644 inline " ~ name ~ ".txt\n" ~
|
||||||
|
|
Loading…
Reference in New Issue