Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Namespaces | Variables
gitlog2changelog.py File Reference

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)