system-config/tools/atc
Jeremy Stanley 876ba7a23b ATC listing script is importable
* tools/atc/email_stats.py: Move procedural code out of the global
scope to make this file safely importable, and clean up a couple of
unused variables flake8 noticed in the newly importable main
codeblock.

Change-Id: I1a29c84e067eea875ba57a16196723f65f60ff01
2014-06-24 19:38:10 +00:00
..
diff.py Fix pep8 errors in modules dir 2013-11-12 11:30:34 -05:00
email_stats.py ATC listing script is importable 2014-06-24 19:38:10 +00:00
email-stats.sh Rename ATC listing script 2014-06-24 19:38:03 +00:00
README Rename ATC listing script 2014-06-24 19:38:03 +00:00

These are the scripts used to create the ATC lists for use in PTL
elections and Summit invitations.

0) Write a patch to email_stats.py so steps 1-2 are not necessary.
1) Edit email_stats.py to set your gerrit username.
2) Edit email_stats.py to set the start_date and end_date.
3) Run the following queries on review.openstack.org:

  SELECT * FROM accounts
  INTO OUTFILE '/tmp/accounts.csv'
  FIELDS TERMINATED BY ','
  ENCLOSED BY '"'
  LINES TERMINATED BY '\n';

  SELECT * FROM account_external_ids
  INTO OUTFILE '/tmp/emails.csv'
  FIELDS TERMINATED BY ','
  ENCLOSED BY '"'
  LINES TERMINATED BY '\n';

4) Copy those files to this directory.
5) Run:

  mkdir out
  ./email-stats.sh
  DATE=`date --iso`
  mkdir $DATE
  for f in out/*.csv ; do
      fromdos $f
      iconv -f ISO-8859-1 -t UTF-8 -o $DATE/`basename $f` $f
  done
  cat $DATE/*.csv | sort | uniq > $DATE/all.csv

6) You can use diff.py to get the new ATCs since the previous run:

  ./diff.py $OLD-DATE/all.csv $DATE/all.csv $DATE/new.csv