Changeset 188 for trunk/doc/readme.txt
- Timestamp:
- Sep 6, 2006, 12:37:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/readme.txt
r187 r188 2 2 3 3 ====================================================================== 4 Copyright (C) 2005, 2006 Jari Häkkinen 4 Copyright (C) 2005 Jari Häkkinen 5 Copyright (C) 2006 Jari Häkkinen, Peter Johansson 5 6 6 7 This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest … … 26 27 and calculates developer statistics for all subversion controlled 27 28 entries. The result is written to a sub-directory of a user 28 specifiable target directory (def ualt is the current working29 specifiable target directory (default is the current working 29 30 directory). 30 31 … … 35 36 that line. 36 37 37 The statistics calculated is the number of lines contributed from each 38 contributing developer in the latest (checked out) revision. Also, the 39 number of lines still in use from each revision is calculated. 38 For each developer svndigest calculates the number of contributed 39 lines in the latest (checked out) revision. By checking when each line 40 was last change, for each revision svndigest calculates how many lines 41 each developer had contributed that are still in use. svndigest 42 separates between different types of lines: line of code, line of 43 comment, and empty lines. 44 45 The separation between types of lines is designed to support C++ style 46 line comments like 47 48 // blah blah 49 50 with two or more slashes in front of them, and C style block comments like 51 52 /* 53 * blah blah 54 */ 55 56 with zero or more stars at the beginning of every line. A line is 57 consider to be a line of code, if it contains non-whitespace 58 characters being neither inside a C style block nor after a C++ style 59 line comment start ('//'). In case the line is not a line of code, it 60 is considered as a line of comment if it contains alphanumeric 61 characters (see isalnum). Remaining lines are consider empty, in other 62 words, lines like: '////////////' or '/*' are considered as empty. 40 63 41 64 There are many different types of files and for many file types it … … 44 67 symbolic links and binary files cannot. svndigest treats binary files 45 68 as zero-line files, whereas symbolic links are treated as one-line 46 files. There is a possib lity to exclude files from the statistics, the69 files. There is a possibility to exclude files from the statistics, the 47 70 use of the property svndigest:ignore. 48 71
Note: See TracChangeset
for help on using the changeset viewer.