|
Groonga 3.0.9 Source Code Document
|
Go to the source code of this file.
Namespaces | |
| namespace | gitlog2changelog |
Variables | |
| tuple | fin = os.popen('git log --summary --stat --no-merges --date=short', 'r') |
| fout = sys.stdout | |
| authorFound = False | |
| dateFound = False | |
| messageFound = False | |
| filesFound = False | |
| string | message = "" |
| messageNL = False | |
| string | files = "" |
| string | prevAuthorLine = "" |
| tuple | authorList = re.split(': ', line, 1) |
| list | author = authorList[1] |
| tuple | dateList = re.split(': ', line, 1) |
| list | date = dateList[1] |
| tuple | fileList = re.split(' \| ', line, 2) |
| string | authorLine = " " |
| string | commitLine = "* " |
| int | i = 0 |
| string | commit = "" |
| tuple | index = commitLine.rfind(' ', i, i+71) |
1.8.1.2