Bender/Development/Main: Difference between revisions
From KitwarePublic
< Bender | Development
Jump to navigationJump to search
(→Help: Add statistics) |
|||
Line 15: | Line 15: | ||
* Workflow for issues lifecycle: | * Workflow for issues lifecycle: | ||
<center>http://www.slicer.org/slicerWiki/images/b/bb/Mantis-workflow.png</center> | <center>http://www.slicer.org/slicerWiki/images/b/bb/Mantis-workflow.png</center> | ||
== Statistics == | == Code Statistics == | ||
{| | {| | ||
|- | |- | ||
|<ImageLink>http://www.blackducksoftware.com/files/images/Ohloh_Logo.png|https://www.ohloh.net/p/bendr</ImageLink>||https://www.ohloh.net/p/bendr | |<ImageLink>http://www.blackducksoftware.com/files/images/Ohloh_Logo.png|https://www.ohloh.net/p/bendr</ImageLink>||https://www.ohloh.net/p/bendr | ||
|} | |} | ||
=== Releases === | |||
{| | |||
! Statistics | |||
! Bender 1.0.0 | |||
! Bender 1.1.0 | |||
|- | |||
! Impact | |||
| | |||
188 files changed, 40895 insertions(+) | |||
| | |||
66 files changed, 8053 insertions(+), 2792 deletions(-) | |||
|- | |||
! Number of commits per author | |||
|valign="top"| | |||
298 Johan Andruejol | |||
157 Julien Finet | |||
11 Yuanxin Liu | |||
1 Jean-Christophe Fillion-Robin | |||
|valign="top"| | |||
99 Julien Finet | |||
70 Johan Andruejol | |||
|- | |||
! Number of lines per author | |||
|valign="top"| | |||
11054 Julien Finet | |||
5864 Johan Andruejol | |||
2097 Yuanxin Liu | |||
|valign="top"| | |||
14101 Julien Finet | |||
7044 Johan Andruejol | |||
1832 Yuanxin Liu | |||
|} | |||
Stats generated using the following commands: | |||
* Impact | |||
git diff --stat sha1old sha1new | |||
* Number of commits per author | |||
git shortlog -s -n sha1old..sha1new | |||
* Number of lines per author | |||
git ls-files | egrep -v \.'png|gif|vtk|stl|jpeg|jpg|ico|nrrd|dcm|xml|gz|md5|nhdr|log|mrml|mha|s3ext|s4ext|raw|html|dox|mhd|pack|vtp|am|nii|JPG|exe|db|zip|svg|img|cache|kit|hdr|arm|icns' | grep -v CMake | grep -v Utilities | xargs -n1 -d'\n' -i git blame {} | perl -n -e '/\s\((.*?)\s[0-9]{4}/ && print "$1\n"' | sort -f | uniq -c -w3 | sort -r |
Revision as of 19:43, 15 May 2013
Getting Started
Read the build instructions in the Installation section.
Source
http://public.kitware.com/gitweb?p=Bender/Bender.git
How to contribute
- How to write a CLI: -> copy paste something that already exists
- Follow MSVTK style guide
- Check the Bender CDash compilation dasbhoards
Help
- Report bugs and feature requests on Mantis
- Workflow for issues lifecycle:
Code Statistics
https://www.ohloh.net/p/bendr |
Releases
Statistics | Bender 1.0.0 | Bender 1.1.0 |
---|---|---|
Impact |
188 files changed, 40895 insertions(+) |
66 files changed, 8053 insertions(+), 2792 deletions(-) |
Number of commits per author |
298 Johan Andruejol 157 Julien Finet 11 Yuanxin Liu 1 Jean-Christophe Fillion-Robin |
99 Julien Finet 70 Johan Andruejol |
Number of lines per author |
11054 Julien Finet 5864 Johan Andruejol 2097 Yuanxin Liu |
14101 Julien Finet 7044 Johan Andruejol 1832 Yuanxin Liu |
Stats generated using the following commands:
- Impact
git diff --stat sha1old sha1new
- Number of commits per author
git shortlog -s -n sha1old..sha1new
- Number of lines per author
git ls-files | egrep -v \.'png|gif|vtk|stl|jpeg|jpg|ico|nrrd|dcm|xml|gz|md5|nhdr|log|mrml|mha|s3ext|s4ext|raw|html|dox|mhd|pack|vtp|am|nii|JPG|exe|db|zip|svg|img|cache|kit|hdr|arm|icns' | grep -v CMake | grep -v Utilities | xargs -n1 -d'\n' -i git blame {} | perl -n -e '/\s\((.*?)\s[0-9]{4}/ && print "$1\n"' | sort -f | uniq -c -w3 | sort -r