main
Bob Mottram 2020-05-02 16:05:28 +00:00
parent 0e2b1065f6
commit 2956856e76
1 changed files with 7 additions and 4 deletions

9
git.py
View File

@ -21,7 +21,8 @@ def getGitProjectName(baseDir: str, nickname: str, domain: str,
if not os.path.isfile(gitProjectsFilename):
return None
projectName = None
for word in subject.lower().split(' '):
subjectLineWords = subject.lower().split(' ')
for word in subjectLineWords:
if word + '\n' in open(gitProjectsFilename).read():
return word
return projectName
@ -64,6 +65,9 @@ def receiveGitPatch(baseDir: str, nickname: str, domain: str,
if not isGitPatch(baseDir, nickname, domain,
subject, content):
return False
# replace html formatting, so that it's more
# like the original patch file
contentStr = content.replace('<br>','\n').replace('<br />','\n')
contentStr = contentStr.replace('<p>','').replace('</p>','\n')
@ -76,8 +80,7 @@ def receiveGitPatch(baseDir: str, nickname: str, domain: str,
patchSubject = \
line.replace('Subject:', '').replace('/', '|').strip()
projectName = \
getGitProjectName(baseDir, nickname, domain,
subject)
getGitProjectName(baseDir, nickname, domain, subject)
patchDir = \
baseDir + '/accounts/' + nickname + '@' + domain + \
'/patches/' + projectName