Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Variables
gitlog2changelog Namespace Reference

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)

Variable Documentation

list author = authorList[1]

Definition at line 37 of file gitlog2changelog.py.

authorFound = False

Definition at line 12 of file gitlog2changelog.py.

string authorLine = " "

Definition at line 86 of file gitlog2changelog.py.

tuple authorList = re.split(': ', line, 1)

Definition at line 36 of file gitlog2changelog.py.

tuple commit = ""

Definition at line 98 of file gitlog2changelog.py.

string commitLine = "* "

Definition at line 96 of file gitlog2changelog.py.

tuple date = dateList[1]

Definition at line 43 of file gitlog2changelog.py.

dateFound = False

Definition at line 13 of file gitlog2changelog.py.

tuple dateList = re.split(': ', line, 1)

Definition at line 42 of file gitlog2changelog.py.

tuple fileList = re.split(' \| ', line, 2)

Definition at line 76 of file gitlog2changelog.py.

string files = ""

Definition at line 18 of file gitlog2changelog.py.

filesFound = False

Definition at line 15 of file gitlog2changelog.py.

tuple fin = os.popen('git log --summary --stat --no-merges --date=short', 'r')

Definition at line 8 of file gitlog2changelog.py.

fout = sys.stdout

Definition at line 9 of file gitlog2changelog.py.

int i = 0

Definition at line 97 of file gitlog2changelog.py.

tuple index = commitLine.rfind(' ', i, i+71)

Definition at line 103 of file gitlog2changelog.py.

string message = ""

Definition at line 16 of file gitlog2changelog.py.

messageFound = False

Definition at line 14 of file gitlog2changelog.py.

messageNL = False

Definition at line 17 of file gitlog2changelog.py.

prevAuthorLine = ""

Definition at line 19 of file gitlog2changelog.py.