TPE-Layout/2017-Measure
Team Summary
| Quarter | Reported Bugs | Resolved Bugs | HG Commits | Servo PRs |
|---|---|---|---|---|
| Q1 | -- | -- | -- | -- |
| Q2 | -- | -- | -- | -- |
| Q3 | -- | -- | -- | -- |
| Q4 | -- | -- | -- | -- |
Individual Standings
Astley Chen
Bug mail: aschen@mozilla.com
2017 Q1 : -- bugs reported / -- bug resolved / -- HG commits / -- Servo PRs
2017 Q2 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Boris Chiou
Bug mail: boris.chiou@gmail.com
2017 Q1 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q2 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Cameron McCormack
Bug mail: cam@mcc.id.au
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
CJ Ku
Bug mail: cku@mozilla.com
2017 Q1 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q2 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Jeremy Chen
Bug mail: jeremychen@mozilla.com
2017 Q1 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q2 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Shing Lyu
Bug mail: slyu@mozilla.com Git: shing.lyu@gmail.com
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Tingyu Lin
Bug mail: tlin@mozilla.com
2017 Q1 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q2 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q3 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
2017 Q4 : -- bugs reported / -- bugs resolved / -- HG commits / -- Servo PRs
Reference
Bugzilla
TDC Layout team 2017 bugs summary (long-loading page!)
Query Syntax
Mercurial Syntax:
hg log --date "$DATE_RANGE" -u $BUG_MAIL --template '{node|short} | {date|isodatesec} | {desc|strip|firstline}\n'
Git Syntax:
git log --author=$USER_NAME --after=$DATE --pretty=format:"%h - %an, %ar : %s"
Query Script:
./standing.sh "2016-10-01 to 2016-12-31" aschen@mozilla.com boris.chiou@gmail.com cam@mcc.id.au cku@mozilla.com jeremychen@mozilla.com shing.lyu@gmail.com tlin@mozilla.com
Mercurial
#!/bin/bash
# == Arguments ==
# $1 : date range, exp: "2016-07-01 to 2016-09-30"
# $2 ~ $n : bug mail list, exp: aschen@mozilla.com
#
# == Output ==
# Individual standings and sum of standings.
dateRange="$1"
shift
bugMails=($@)
bugsCount=0
commitsCount=0
for i in "${bugMails[@]}"
do
commits=$(hg log --date "$dateRange" -u $i --template '{desc|strip|firstline}\n')
uniqCommits=$(printf "$commits" | sort | uniq | wc -l)
bugs=$(printf "$commits" | cut -d' ' -f 2 | sort | uniq | wc -l)
bugsCount=$(($bugsCount + $bugs))
commitsCount=$(($commitsCount + $uniqCommits))
printf "$i : $bugs bugs with $uniqCommits commits\n"
printf "Mercurial Commits History :\n"
printf "$commits\n\n"
done
printf "Total : $bugsCount bugs, $commitsCount commits\n"