Compare commits

...

2 Commits

3 changed files with 28 additions and 11 deletions

View File

@ -1,11 +1,18 @@
alabaster==0.7.12
Babel==2.10.3
beautifulsoup4==4.12.2
Brotli==1.0.9
bs4==0.0.1
certifi==2022.6.15
cffi==1.15.1
charset-normalizer==2.1.0
click==8.1.3
colorama==0.4.5
cssselect2==0.7.0
docutils==0.17.1
Flask==2.2.2
fonttools==4.39.4
html5lib==1.1
idna==3.3
imagesize==1.4.1
importlib-metadata==4.12.0
@ -18,15 +25,22 @@ mdit-py-plugins==0.3.0
mdurl==0.1.1
myst-parser==0.18.0
packaging==21.3
Pillow==9.5.0
pkg_resources==0.0.0
pycparser==2.21
pydyf==0.6.0
Pygments==2.12.0
pyparsing==3.0.9
pyphen==0.14.0
pytz==2022.2
PyYAML==6.0
requests==2.28.1
six==1.16.0
snowballstemmer==2.2.0
soupsieve==2.4.1
Sphinx==5.1.1
sphinx-rtd-theme==1.0.0
sphinx-weasyprint-builder==0.1.3
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.0
@ -34,8 +48,12 @@ sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
sphinxcontrib-svg2pdfconverter==1.2.0
tinycss2==1.2.1
typing_extensions==4.3.0
uc-micro-py==1.0.1
urllib3==1.26.11
weasyprint==58.1
webencodings==0.5.1
Werkzeug==2.2.2
zipp==3.8.1
zopfli==0.2.2

View File

@ -62,18 +62,13 @@ class Document:
cmd.append(['git', 'pull'])
# build the HTML version
cmd.append(['sphinx-build', '-M', 'html', self.doc_path + "/repo/source", self.doc_path + "/build"])
cmd.append(['make', 'html', 'BUILDDIR=../build'])
# build the PDF version
cmd.append(['sphinx-build', '-M', 'weasyprint', self.doc_path + '/repo/source', self.doc_path + '/build'])
cmd.append(['weasyprint', self.doc_path + '/build/weasyprint/index.html', self.doc_path + '/build/weasyprint/index.pdf', '-s', self.doc_path + '/repo/source/css/print-theme.css'])
cmd.append(['sh', '-c', current_app.config['DATA_ROOT_DIR'] + '/../pdftoc-to-latex "' + self.doc_path + '/build/weasyprint/index.pdf" > "' + self.doc_path + '/build/weasyprint/toc.tex"'])
cmd.append(['sh', '-c', 'pdflatex -interaction nonstopmode -output-directory="' + self.doc_path + '/build/weasyprint" "' + self.doc_path + '/build/weasyprint/toc.tex" || echo OK'])
cmd.append(['pdftk', 'A=' + self.doc_path + '/build/weasyprint/index.pdf', 'B=' + self.doc_path + '/build/weasyprint/toc.pdf', 'cat', 'A1', 'B', 'A2-end', 'output', self.doc_path + '/build/weasyprint/vheliotech.pdf'])
#cmd.append(['rm', self.doc_path + '/build/weasyprint/index.pdf', self.doc_path + '/build/weasyprint/toc.tex', self.doc_path + '/build/weasyprint/toc.pdf', self.doc_path + '/build/weasyprint/GuidedemontageVheliotech.pdf'])
cmd.append(['make', 'pdf', 'BUILDDIR=../build'])
# Copy the generated PDF file to the HTML directory, so that it is accessible for download by users
cmd.append(['cp', self.doc_path + '/build/weasyprint/vheliotech.pdf', self.doc_path + '/build/html/guide-de-montage-vheliotech.pdf'])
cmd.append(['cp', self.doc_path + '/build/weasyprint/vheliotech.pdf', self.doc_path + '/build/html/' + self.doc_name + '.pdf'])
task = ProcessTask(cmd, cwd = self.doc_path + "/repo")
task.start()
@ -98,6 +93,9 @@ class Document:
def get_url(self):
return "/doc/" + self.encoded_origin + "/" + sanitize_name(self.doc_name)+'/'+sanitize_name(self.branch) + "/index.html"
def get_pdf_url(self):
return "/doc/" + self.encoded_origin + "/" + sanitize_name(self.doc_name)+'/'+sanitize_name(self.branch) + "/" + self.doc_name + ".pdf"
def get_api_key(self):
with open(self.doc_path + "/apikey") as f:
return f.read().replace('\n', '')
@ -151,8 +149,8 @@ class Document:
cmd = []
cmd.append(['git', 'init', '--initial-branch=' + branch])
cmd.append(['git', 'remote', 'add', '-f', 'origin', repo])
cmd.append(['git', 'sparse-checkout', 'init'])
cmd.append(['git', 'sparse-checkout', 'set', source_dir])
#cmd.append(['git', 'sparse-checkout', 'init'])
#cmd.append(['git', 'sparse-checkout', 'set', source_dir])
cmd.append(['git', 'pull', 'origin', branch])
cmd.append(['git', 'branch', '--set-upstream-to=origin/' + branch, branch])

View File

@ -5,7 +5,8 @@
{% block content %}
<h1>Gestion de {{ doc.origin }} / {{ doc.doc_name }} / {{ doc.branch }}</h1>
<p>URL permettant de déclencher la compilation : {{ url_for('api_document.build', origin = doc.encoded_origin, doc_name = doc.doc_name, branch = doc.branch, apikey = doc.get_api_key(), _external = True) }}</p>
<a href="{{doc.get_url()}}" class="button">Consulter</a><br/>
<a href="{{doc.get_url()}}" class="button">Consulter en HTML</a><br/>
<a href="{{doc.get_pdf_url()}}" class="button">Consulter le PDF</a><br/>
<a href="{{ url_for('admin_document.build', origin = doc.encoded_origin, doc_name = doc.doc_name, branch = doc.branch) }}" class="button">Compiler</a><br/>
<br/>
<a href="{{ url_for('admin_document.delete', origin = doc.encoded_origin, doc_name = doc.doc_name, branch = doc.branch) }}" class="button danger" data-confirm="Êtes-vous sûr de vouloir supprimer le document {{ doc.doc_name }} / {{ doc.branch }} ?">Supprimer</a>