Prepend From

main
Bob Mottram 2020-05-02 17:16:24 +00:00
parent 03f88377dd
commit e2c7648d0b
2 changed files with 5 additions and 4 deletions

6
git.py
View File

@ -9,14 +9,14 @@ __status__ = "Production"
import os
def gitFormatContent(content) -> str:
def gitFormatContent(content: str) -> str:
""" replace html formatting, so that it's more
like the original patch file
"""
contentStr = content.replace('<br>', '\n').replace('<br \>', '\n')
contentStr = content.replace('<br>', '\n').replace('<br \\>', '\n')
contentStr = contentStr.replace('<p>', '').replace('</p>', '\n')
if 'From ' in contentStr:
contentStr = contentStr.split('From ', 1)[1]
contentStr = 'From ' + contentStr.split('From ', 1)[1]
return contentStr

View File

@ -62,6 +62,7 @@ from git import isGitPatch
from git import receiveGitPatch
from git import gitFormatContent
def storeHashTags(baseDir: str, nickname: str, postJsonObject: {}) -> None:
"""Extracts hashtags from an incoming post and updates the
relevant tags files.
@ -1708,7 +1709,7 @@ def gitPatchNotify(baseDir: str, handle: str,
patchFile = accountDir + '/.newPatch'
with open(patchFile, 'w') as fp:
fp.write(subject)
with open(patchFile + 'Content', 'w') as fp:
fp.write(gitFormatContent(content))