attempt to add changelog and license to doc in CI built
This commit is contained in:
parent
945f310eae
commit
ea917c470e
@ -5,10 +5,12 @@ production:
|
|||||||
script:
|
script:
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
- pip install --upgrade -r requirements.txt
|
- pip install --upgrade -r requirements.txt
|
||||||
|
- copy changelog.md doc\changelog.md
|
||||||
- cd doc
|
- cd doc
|
||||||
- python documentation_importer.py
|
- python documentation_importer.py
|
||||||
- cd ..\src
|
- cd ..\src
|
||||||
- python ..\doc\generator.py
|
- python ..\doc\generator.py
|
||||||
|
- copy ..\license.txt documentation\license.txt
|
||||||
- python setup.py py2exe
|
- python setup.py py2exe
|
||||||
- cd ..
|
- cd ..
|
||||||
- cd scripts
|
- cd scripts
|
||||||
@ -16,7 +18,7 @@ production:
|
|||||||
- cd ..
|
- cd ..
|
||||||
- move src\socializer.zip socializer.zip
|
- move src\socializer.zip socializer.zip
|
||||||
only:
|
only:
|
||||||
- tags
|
- master
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- socializer.zip
|
- socializer.zip
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
""" This script converts the hold documentation (saved in markdown files) in a python file with a list of strings to translate it using gettext."""
|
""" This script converts the hold documentation (saved in markdown files) in a python file with a list of strings to translate it using gettext."""
|
||||||
|
|
||||||
def prepare_documentation_in_file(fileSource, fileDest):
|
def prepare_documentation_in_file(fileSource, fileDest):
|
||||||
""" This takes documentation written in a markdown file and put all the contents in a python file, to create a internationalized documentation.
|
""" This takes documentation written in a markdown file and put all the contents in a python file, to create a translatable documentation.
|
||||||
@fileSource str: A markdown(.md) file.
|
@fileSource str: A markdown(.md) file.
|
||||||
@fileDest str: A file where this will put the new strings"""
|
@fileDest str: A file where this will put the new strings"""
|
||||||
|
|
||||||
@ -18,11 +18,10 @@ def prepare_documentation_in_file(fileSource, fileDest):
|
|||||||
newvar = "_(u\"\"\"%s\"\"\"),\n" % (i[:-1])
|
newvar = "_(u\"\"\"%s\"\"\"),\n" % (i[:-1])
|
||||||
else:
|
else:
|
||||||
newvar = "_(u\"\"\"%s\"\"\"),\n" % (i)
|
newvar = "_(u\"\"\"%s\"\"\"),\n" % (i)
|
||||||
# print i[-1:]
|
|
||||||
f2.write(newvar)
|
f2.write(newvar)
|
||||||
f1.close()
|
f1.close()
|
||||||
f2.write("]")
|
f2.write("]")
|
||||||
f2.close()
|
f2.close()
|
||||||
|
|
||||||
|
|
||||||
prepare_documentation_in_file("manual.md", "strings.py")
|
prepare_documentation_in_file("manual.md", "strings.py")
|
||||||
|
prepare_documentation_in_file("changelog.md", "changelog.py")
|
Loading…
Reference in New Issue
Block a user