8000 chore: LibreOffice flags for resilience by holloway · Pull Request #8769 · ietf-tools/datatracker · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: LibreOffice flags for resilience #8769

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ietf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,12 @@ def skip_unreadable_post(record):

DATATRACKER_MAX_UPLOAD_SIZE = 40960000
PPT2PDF_COMMAND = [
"/usr/bin/soffice", "--headless", "--convert-to", "pdf:writer_globaldocument_pdf_Export", "--outdir"
"/usr/bin/soffice",
"--headless", # no GUI
"--safe-mode", # use a new libreoffice profile every time (ensures no reliance on accumulated profile config)
"--norestore", # don't attempt to restore files after a previous crash (ensures that one crash won't block future conversions until UI intervention)
"--convert-to", "pdf:writer_globaldocument_pdf_Export",
"--outdir"
]

STATS_REGISTRATION_ATTENDEES_JSON_URL = 'https://registration.ietf.org/{number}/attendees/'
Expand Down
Loading
0