Bender/Development/Main: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
Line 10: Line 10:
* Follow [http://www.msvtk.org/content/developers-guide MSVTK style guide]
* Follow [http://www.msvtk.org/content/developers-guide MSVTK style guide]
* Check the [http://my.cdash.org/index.php?project=Bender Bender CDash compilation dasbhoards]
* Check the [http://my.cdash.org/index.php?project=Bender Bender CDash compilation dasbhoards]
 
<!--
==Help==
==Help==
* Report bugs and feature requests on [http://public.kitware.com/Bug/view_all_bug_page.php Mantis]
* Report bugs and feature requests on [http://public.kitware.com/Bug/view_all_bug_page.php Mantis]
* 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>
-->
== Code Statistics ==
== Code Statistics ==
{|
{|

Revision as of 09:29, 22 May 2020

Getting Started

Read the build instructions in the Installation section.

Source

https://github.com/KitwareMedical/Bender

How to contribute

Code Statistics

Image 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