From e58e9c842e72222d0f7fd3a60311e6ae1ea0c2cd Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 24 Sep 2009 15:14:45 -0400 Subject: remove (changesets), it's enough numbers like this --- scripts/eigen_gen_credits.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/eigen_gen_credits.cpp b/scripts/eigen_gen_credits.cpp index 7ffba8414..086548e26 100644 --- a/scripts/eigen_gen_credits.cpp +++ b/scripts/eigen_gen_credits.cpp @@ -168,7 +168,7 @@ int main() { // parse the hg churn output files map contributors_map_for_changedlines = contributors_map_from_churn_output("churn-changedlines.out"); - map contributors_map_for_changesets = contributors_map_from_churn_output("churn-changesets.out"); + //map contributors_map_for_changesets = contributors_map_from_churn_output("churn-changesets.out"); // merge into the contributors list list contributors_list; @@ -178,7 +178,7 @@ int main() contributor c; c.name = it->first; c.changedlines = it->second; - c.changesets = contributors_map_for_changesets.find(it->first)->second; + c.changesets = 0; //contributors_map_for_changesets.find(it->first)->second; contributors_list.push_back(c); } @@ -188,7 +188,7 @@ int main() cout << "{| cellpadding=\"5\"\n"; cout << "!\n"; - cout << "! Lines changed\n(changesets)\n"; + cout << "! Lines changed\n"; cout << "!\n"; list::iterator itc; @@ -203,7 +203,7 @@ int main() else cout << "| " << itc->name << "\n"; if(itc->changedlines) - cout << "| " << itc->changedlines << " (" << itc->changesets << ")\n"; + cout << "| " << itc->changedlines << "\n"; else cout << "| (no information)\n"; cout << "| " << itc->misc << "\n"; -- cgit v1.2.3