Added a simple check for the --accept parameter instead of -accept for LibreOffice on POSIX systems.

This commit is contained in:
依瑪貓 2016-12-23 17:30:05 +08:00
parent 28c877c6fa
commit 42ab15c6d0
2 changed files with 8 additions and 6 deletions

4
TODO
View File

@ -1,7 +1,5 @@
obasync TODO
* LibreOffice switch (--xxx or -xxx)
* LibreOffice on MacOSX (how to install?)
* Linux system-bundled LibreOffice.
* How to install with LibreOffice on MacOSX
* Writes the README (reStructureText).
* Documentation.

View File

@ -358,10 +358,14 @@ class Office:
"OpenOffice/LibreOffice installation.",
file=sys.stderr)
sys.exit(1)
param = "-accept=socket,host=localhost,port=%d;urp;" % \
self.port
# LibreOffice on POSIX systems uses --accept instead of
# -accept now.
if ooexec.lower().find("libreoffice") != -1:
param = "-" + param
try:
os.execl(ooexec, ooexec,
"-accept=socket,host=localhost,port=%d;urp;" %
self.port)
os.execl(ooexec, ooexec, param)
except OSError:
print("%s: Failed to run the"
" OpenOffice/LibreOffice server." % ooexec,