2008-04-09 18:16:18 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
# file lyxpak.py
|
|
|
|
|
# This file is part of LyX, the document processor.
|
|
|
|
|
# Licence details can be found in the file COPYING.
|
|
|
|
|
|
|
|
|
|
# author Enrico Forestieri
|
2020-12-05 22:37:21 +00:00
|
|
|
|
# author Richard Kimberly Heck
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
# Full author contact details are available in file CREDITS
|
|
|
|
|
|
|
|
|
|
# This script creates a tar or zip archive with a lyx file and all included
|
2011-02-08 00:07:47 +00:00
|
|
|
|
# files (graphics and so on). By default, the created archive is the standard
|
|
|
|
|
# type on a given platform, such that a zip archive is created on Windows and
|
|
|
|
|
# a gzip compressed tar archive on *nix. This can be controlled by command
|
|
|
|
|
# line options, however.
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
from __future__ import print_function
|
|
|
|
|
import gzip, os, re, sys
|
2011-02-07 19:38:44 +00:00
|
|
|
|
from getopt import getopt
|
2017-04-14 22:05:40 +00:00
|
|
|
|
from io import BytesIO
|
2015-07-11 15:52:14 +00:00
|
|
|
|
import subprocess
|
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
# Provide support for both python 2 and 3
|
|
|
|
|
if sys.version_info[0] != 2:
|
|
|
|
|
def unicode(arg, enc):
|
|
|
|
|
return arg
|
|
|
|
|
|
2015-07-11 15:52:14 +00:00
|
|
|
|
# The path to the current python executable. sys.executable may fail, so in
|
|
|
|
|
# this case we revert to simply calling "python" from the path.
|
|
|
|
|
PYTHON_BIN = sys.executable if sys.executable else "python"
|
2011-02-07 19:38:44 +00:00
|
|
|
|
|
2015-07-05 13:45:40 +00:00
|
|
|
|
running_on_windows = (os.name == 'nt')
|
|
|
|
|
|
|
|
|
|
if running_on_windows:
|
|
|
|
|
from shutil import copyfile
|
|
|
|
|
from tempfile import NamedTemporaryFile
|
|
|
|
|
|
2008-04-09 18:16:18 +00:00
|
|
|
|
# Pre-compiled regular expressions.
|
2022-07-31 18:08:44 +00:00
|
|
|
|
re_lyxfile = re.compile(br"\.lyx$")
|
2017-04-14 22:05:40 +00:00
|
|
|
|
re_input = re.compile(b'^(.*)\\\\(input|include){(\\s*)(.+)(\\s*)}.*$')
|
|
|
|
|
re_ertinput = re.compile(b'^(input|include)({)(\\s*)(.+)(\\s*)}.*$')
|
|
|
|
|
re_package = re.compile(b'^(.*)\\\\(usepackage){(\\s*)(.+)(\\s*)}.*$')
|
|
|
|
|
re_class = re.compile(b'^(\\\\)(textclass)(\\s+)(.+)\\s*$')
|
|
|
|
|
re_norecur = re.compile(b'^(.*)\\\\(verbatiminput|lstinputlisting|includegraphics\\[*.*\\]*){(\\s*)(.+)(\\s*)}.*$')
|
|
|
|
|
re_ertnorecur = re.compile(b'^(verbatiminput|lstinputlisting|includegraphics\\[*.*\\]*)({)(\\s*)(.+)(\\s*)}.*$')
|
|
|
|
|
re_filename = re.compile(b'^(\\s*)(filename)(\\s+)(.+)\\s*$')
|
|
|
|
|
re_options = re.compile(b'^(\\s*)options(\\s+)(.+)\\s*$')
|
|
|
|
|
re_bibfiles = re.compile(b'^(\\s*)bibfiles(\\s+)(.+)\\s*$')
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def usage(prog_name):
|
2011-02-07 19:38:44 +00:00
|
|
|
|
msg = '''
|
|
|
|
|
Usage: %s [-t] [-z] [-l path] [-o output_dir] file.lyx
|
|
|
|
|
Options:
|
|
|
|
|
-l: Path to lyx2lyx script
|
|
|
|
|
-o: Directory for output
|
|
|
|
|
-t: Create gzipped tar file
|
|
|
|
|
-z: Create zip file
|
|
|
|
|
By default, we create file.zip on Windows and file.tar.gz on *nix,
|
|
|
|
|
with the file output to where file.lyx is, and we look for lyx2lyx
|
|
|
|
|
in the known locations, querying LyX itself if necessary.
|
|
|
|
|
'''
|
|
|
|
|
return msg % prog_name
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def error(message):
|
|
|
|
|
sys.stderr.write(message + '\n')
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
def tostr(message):
|
|
|
|
|
return message.decode(sys.getfilesystemencoding())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gzopen(file):
|
|
|
|
|
input = open(file.decode('utf-8'), 'rb')
|
2015-05-14 16:57:56 +00:00
|
|
|
|
magicnum = input.read(2)
|
|
|
|
|
input.close()
|
2017-04-14 22:05:40 +00:00
|
|
|
|
if magicnum == b"\x1f\x8b":
|
|
|
|
|
return gzip.open(file.decode('utf-8'))
|
|
|
|
|
return open(file.decode('utf-8'), 'rb')
|
2015-05-14 16:57:56 +00:00
|
|
|
|
|
|
|
|
|
|
2008-04-09 18:16:18 +00:00
|
|
|
|
def find_exe(candidates, extlist, path):
|
|
|
|
|
for prog in candidates:
|
|
|
|
|
for directory in path:
|
|
|
|
|
for ext in extlist:
|
|
|
|
|
full_path = os.path.join(directory, prog + ext)
|
|
|
|
|
if os.access(full_path, os.X_OK):
|
|
|
|
|
return prog, full_path
|
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def abspath(name):
|
|
|
|
|
" Resolve symlinks and returns the absolute normalized name."
|
|
|
|
|
newname = os.path.normpath(os.path.abspath(name))
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if not running_on_windows:
|
2008-04-09 18:16:18 +00:00
|
|
|
|
newname = os.path.realpath(newname)
|
|
|
|
|
return newname
|
|
|
|
|
|
|
|
|
|
|
2011-02-08 00:10:19 +00:00
|
|
|
|
def gather_files(curfile, incfiles, lyx2lyx):
|
2008-04-09 18:16:18 +00:00
|
|
|
|
" Recursively gather files."
|
|
|
|
|
curdir = os.path.dirname(abspath(curfile))
|
2011-02-05 14:04:28 +00:00
|
|
|
|
is_lyxfile = re_lyxfile.search(curfile)
|
2015-07-11 15:52:14 +00:00
|
|
|
|
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if is_lyxfile:
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if running_on_windows:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
# subprocess cannot cope with unicode arguments and we cannot be
|
2015-07-05 13:45:40 +00:00
|
|
|
|
# sure that curfile can be correctly converted to the current
|
|
|
|
|
# code page. So, we resort to running lyx2lyx on a copy.
|
|
|
|
|
tmp = NamedTemporaryFile(delete=False)
|
|
|
|
|
tmp.close()
|
2017-04-14 22:05:40 +00:00
|
|
|
|
copyfile(curfile.decode('utf-8'), tmp.name)
|
2015-07-11 15:52:14 +00:00
|
|
|
|
try:
|
|
|
|
|
l2l_stdout = subprocess.check_output([PYTHON_BIN, lyx2lyx, tmp.name])
|
|
|
|
|
except subprocess.CalledProcessError:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
error('%s failed to convert "%s"' % (lyx2lyx, tostr(curfile)))
|
2015-07-05 13:45:40 +00:00
|
|
|
|
os.unlink(tmp.name)
|
|
|
|
|
else:
|
2015-07-11 15:52:14 +00:00
|
|
|
|
try:
|
|
|
|
|
l2l_stdout = subprocess.check_output([PYTHON_BIN, lyx2lyx, curfile])
|
|
|
|
|
except subprocess.CalledProcessError:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
error('%s failed to convert "%s"' % (lyx2lyx, tostr(curfile)))
|
|
|
|
|
if l2l_stdout.startswith(b"\x1f\x8b"):
|
|
|
|
|
l2l_stdout = gzip.GzipFile("", "rb", 0, BytesIO(l2l_stdout)).read()
|
|
|
|
|
elif running_on_windows:
|
|
|
|
|
# For some unknown reason, there can be a spurious '\r' in the line
|
|
|
|
|
# separators, causing spurious empty lines when calling splitlines.
|
|
|
|
|
l2l_stdout = l2l_stdout.replace('\r\r\n', '\r\n')
|
2008-04-09 18:16:18 +00:00
|
|
|
|
lines = l2l_stdout.splitlines()
|
|
|
|
|
else:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
input = gzopen(curfile)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
lines = input.readlines()
|
|
|
|
|
input.close()
|
|
|
|
|
|
2011-09-16 14:40:40 +00:00
|
|
|
|
maybe_in_ert = False
|
2008-04-09 18:16:18 +00:00
|
|
|
|
i = 0
|
|
|
|
|
while i < len(lines):
|
|
|
|
|
# Gather used files.
|
|
|
|
|
recursive = True
|
2017-04-14 22:05:40 +00:00
|
|
|
|
extlist = [b'']
|
2008-04-09 18:16:18 +00:00
|
|
|
|
match = re_filename.match(lines[i])
|
|
|
|
|
if not match:
|
2011-09-16 14:40:40 +00:00
|
|
|
|
if maybe_in_ert:
|
|
|
|
|
match = re_ertinput.match(lines[i])
|
|
|
|
|
else:
|
|
|
|
|
match = re_input.match(lines[i])
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if not match:
|
|
|
|
|
match = re_package.match(lines[i])
|
2017-04-14 22:05:40 +00:00
|
|
|
|
extlist = [b'.sty']
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if not match:
|
|
|
|
|
match = re_class.match(lines[i])
|
2017-04-14 22:05:40 +00:00
|
|
|
|
extlist = [b'.cls']
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if not match:
|
2011-09-16 14:40:40 +00:00
|
|
|
|
if maybe_in_ert:
|
|
|
|
|
match = re_ertnorecur.match(lines[i])
|
|
|
|
|
else:
|
|
|
|
|
match = re_norecur.match(lines[i])
|
2017-04-14 22:05:40 +00:00
|
|
|
|
extlist = [b'', b'.eps', b'.pdf', b'.png', b'.jpg']
|
2008-04-09 18:16:18 +00:00
|
|
|
|
recursive = False
|
2017-04-14 22:05:40 +00:00
|
|
|
|
maybe_in_ert = is_lyxfile and lines[i] == b"\\backslash"
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if match:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
file = match.group(4).strip(b'"')
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if not os.path.isabs(file):
|
|
|
|
|
file = os.path.join(curdir, file)
|
|
|
|
|
file_exists = False
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if not os.path.isdir(unicode(file, 'utf-8')):
|
2011-09-16 10:07:56 +00:00
|
|
|
|
for ext in extlist:
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if os.path.exists(unicode(file + ext, 'utf-8')):
|
2011-09-16 10:07:56 +00:00
|
|
|
|
file = file + ext
|
|
|
|
|
file_exists = True
|
|
|
|
|
break
|
2011-09-16 12:03:54 +00:00
|
|
|
|
if file_exists and not abspath(file) in incfiles:
|
2008-04-09 18:16:18 +00:00
|
|
|
|
incfiles.append(abspath(file))
|
|
|
|
|
if recursive:
|
2011-02-08 00:13:32 +00:00
|
|
|
|
gather_files(file, incfiles, lyx2lyx)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
i += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if not is_lyxfile:
|
|
|
|
|
i += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Gather bibtex *.bst files.
|
|
|
|
|
match = re_options.match(lines[i])
|
|
|
|
|
if match:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
file = match.group(3).strip(b'"')
|
|
|
|
|
if file.startswith(b"bibtotoc,"):
|
2014-03-23 00:19:17 +00:00
|
|
|
|
file = file[9:]
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if not os.path.isabs(file):
|
2017-04-14 22:05:40 +00:00
|
|
|
|
file = os.path.join(curdir, file + b'.bst')
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if os.path.exists(unicode(file, 'utf-8')):
|
2008-04-09 18:16:18 +00:00
|
|
|
|
incfiles.append(abspath(file))
|
|
|
|
|
i += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# Gather bibtex *.bib files.
|
|
|
|
|
match = re_bibfiles.match(lines[i])
|
|
|
|
|
if match:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
bibfiles = match.group(3).strip(b'"').split(b',')
|
2008-04-09 18:16:18 +00:00
|
|
|
|
j = 0
|
|
|
|
|
while j < len(bibfiles):
|
|
|
|
|
if os.path.isabs(bibfiles[j]):
|
2017-04-14 22:05:40 +00:00
|
|
|
|
file = bibfiles[j] + b'.bib'
|
2008-04-09 18:16:18 +00:00
|
|
|
|
else:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
file = os.path.join(curdir, bibfiles[j] + b'.bib')
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if os.path.exists(unicode(file, 'utf-8')):
|
2008-04-09 18:16:18 +00:00
|
|
|
|
incfiles.append(abspath(file))
|
|
|
|
|
j += 1
|
|
|
|
|
i += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
2012-11-28 01:50:09 +00:00
|
|
|
|
def find_lyx2lyx(progloc, path):
|
2011-02-08 00:13:32 +00:00
|
|
|
|
" Find a usable version of the lyx2lyx script. "
|
2011-02-08 00:07:47 +00:00
|
|
|
|
# first we will see if the script is roughly where we are
|
|
|
|
|
# i.e., we will assume we are in $SOMEDIR/scripts and look
|
|
|
|
|
# for $SOMEDIR/lyx2lyx/lyx2lyx.
|
|
|
|
|
ourpath = os.path.dirname(abspath(progloc))
|
|
|
|
|
(upone, discard) = os.path.split(ourpath)
|
|
|
|
|
tryit = os.path.join(upone, "lyx2lyx", "lyx2lyx")
|
|
|
|
|
if os.access(tryit, os.X_OK):
|
|
|
|
|
return tryit
|
|
|
|
|
|
|
|
|
|
# now we will try to query LyX itself to find the path.
|
|
|
|
|
extlist = ['']
|
2011-02-14 02:30:44 +00:00
|
|
|
|
if "PATHEXT" in os.environ:
|
2011-02-08 00:07:47 +00:00
|
|
|
|
extlist = extlist + os.environ["PATHEXT"].split(os.pathsep)
|
|
|
|
|
lyx_exe, full_path = find_exe(["lyxc", "lyx"], extlist, path)
|
2023-12-06 19:11:41 +00:00
|
|
|
|
if lyx_exe is None:
|
2011-02-08 00:07:47 +00:00
|
|
|
|
error('Cannot find the LyX executable in the path.')
|
2015-07-11 15:52:14 +00:00
|
|
|
|
try:
|
|
|
|
|
cmd_stdout = subprocess.check_output([lyx_exe, '-version'], stderr=subprocess.STDOUT)
|
|
|
|
|
except subprocess.CalledProcessError:
|
2011-02-08 00:07:47 +00:00
|
|
|
|
error('Cannot query LyX about the lyx2lyx script.')
|
|
|
|
|
re_msvc = re.compile(r'^(\s*)(Host type:)(\s+)(win32)$')
|
|
|
|
|
re_sysdir = re.compile(r'^(\s*)(LyX files dir:)(\s+)(\S+)$')
|
|
|
|
|
lines = cmd_stdout.splitlines()
|
|
|
|
|
for line in lines:
|
|
|
|
|
match = re_msvc.match(line)
|
|
|
|
|
if match:
|
|
|
|
|
# The LyX executable was built with MSVC, so the
|
|
|
|
|
# "LyX files dir:" line is unusable
|
|
|
|
|
basedir = os.path.dirname(os.path.dirname(full_path))
|
|
|
|
|
tryit = os.path.join(basedir, 'Resources', 'lyx2lyx', 'lyx2lyx')
|
|
|
|
|
break
|
|
|
|
|
match = re_sysdir.match(line)
|
|
|
|
|
if match:
|
|
|
|
|
tryit = os.path.join(match.group(4), 'lyx2lyx', 'lyx2lyx')
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
if not os.access(tryit, os.X_OK):
|
|
|
|
|
error('Unable to find the lyx2lyx script.')
|
|
|
|
|
return tryit
|
|
|
|
|
|
|
|
|
|
|
2011-02-07 19:38:44 +00:00
|
|
|
|
def main(args):
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2011-02-07 19:38:44 +00:00
|
|
|
|
ourprog = args[0]
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2011-02-07 19:38:44 +00:00
|
|
|
|
try:
|
2023-12-06 19:11:41 +00:00
|
|
|
|
(options, argv) = getopt(args[1:], "htzl:o:")
|
2011-02-07 19:38:44 +00:00
|
|
|
|
except:
|
2023-12-06 19:11:41 +00:00
|
|
|
|
error(usage(ourprog))
|
2011-02-04 19:43:52 +00:00
|
|
|
|
|
2011-02-07 19:38:44 +00:00
|
|
|
|
# we expect the filename to be left
|
|
|
|
|
if len(argv) != 1:
|
|
|
|
|
error(usage(ourprog))
|
|
|
|
|
|
2015-07-05 13:45:40 +00:00
|
|
|
|
makezip = running_on_windows
|
2011-02-04 20:15:39 +00:00
|
|
|
|
outdir = ""
|
2011-02-08 00:10:19 +00:00
|
|
|
|
lyx2lyx = None
|
2011-02-07 19:38:44 +00:00
|
|
|
|
|
|
|
|
|
for (opt, param) in options:
|
2023-12-06 19:11:41 +00:00
|
|
|
|
if opt == "-h":
|
|
|
|
|
print(usage(ourprog))
|
|
|
|
|
sys.exit(0)
|
|
|
|
|
elif opt == "-t":
|
|
|
|
|
makezip = False
|
|
|
|
|
elif opt == "-z":
|
|
|
|
|
makezip = True
|
|
|
|
|
elif opt == "-l":
|
|
|
|
|
lyx2lyx = param
|
|
|
|
|
elif opt == "-o":
|
|
|
|
|
outdir = param
|
|
|
|
|
if not os.path.isdir(unicode(outdir, 'utf-8')):
|
|
|
|
|
error('Error: "%s" is not a directory.' % outdir)
|
2011-02-07 19:38:44 +00:00
|
|
|
|
|
|
|
|
|
lyxfile = argv[0]
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if not running_on_windows:
|
|
|
|
|
lyxfile = unicode(lyxfile, sys.getfilesystemencoding()).encode('utf-8')
|
|
|
|
|
if not os.path.exists(unicode(lyxfile, 'utf-8')):
|
2017-04-14 22:05:40 +00:00
|
|
|
|
error('File "%s" not found.' % tostr(lyxfile))
|
2011-02-04 19:43:52 +00:00
|
|
|
|
|
|
|
|
|
# Check that it actually is a LyX document
|
2017-04-14 22:05:40 +00:00
|
|
|
|
input = gzopen(lyxfile)
|
2011-02-04 19:43:52 +00:00
|
|
|
|
line = input.readline()
|
|
|
|
|
input.close()
|
2017-04-14 22:05:40 +00:00
|
|
|
|
if not (line and line.startswith(b'#LyX')):
|
|
|
|
|
error('File "%s" is not a LyX document.' % tostr(lyxfile))
|
2011-02-04 19:43:52 +00:00
|
|
|
|
|
2011-02-07 19:38:44 +00:00
|
|
|
|
if makezip:
|
|
|
|
|
import zipfile
|
|
|
|
|
else:
|
|
|
|
|
import tarfile
|
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
ar_ext = b".tar.gz"
|
2011-02-07 19:38:44 +00:00
|
|
|
|
if makezip:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
ar_ext = b".zip"
|
2011-02-04 19:43:52 +00:00
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
ar_name = re_lyxfile.sub(ar_ext, abspath(lyxfile)).decode('utf-8')
|
2011-02-04 19:43:52 +00:00
|
|
|
|
if outdir:
|
|
|
|
|
ar_name = os.path.join(abspath(outdir), os.path.basename(ar_name))
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
path = os.environ["PATH"].split(os.pathsep)
|
2011-02-06 23:45:03 +00:00
|
|
|
|
|
2023-12-06 19:11:41 +00:00
|
|
|
|
if lyx2lyx is None:
|
2012-11-28 01:50:09 +00:00
|
|
|
|
lyx2lyx = find_lyx2lyx(ourprog, path)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
# Initialize the list with the specified LyX file and recursively
|
|
|
|
|
# gather all required files (also from child documents).
|
|
|
|
|
incfiles = [abspath(lyxfile)]
|
2011-02-08 00:10:19 +00:00
|
|
|
|
gather_files(lyxfile, incfiles, lyx2lyx)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
# Find the topmost dir common to all files
|
2017-04-14 22:05:40 +00:00
|
|
|
|
path_sep = os.path.sep.encode('utf-8')
|
2008-04-09 18:16:18 +00:00
|
|
|
|
if len(incfiles) > 1:
|
|
|
|
|
topdir = os.path.commonprefix(incfiles)
|
2015-06-26 15:35:52 +00:00
|
|
|
|
# As os.path.commonprefix() works on a character by character basis,
|
|
|
|
|
# rather than on path elements, we need to remove any trailing bytes.
|
2017-04-14 22:05:40 +00:00
|
|
|
|
topdir = topdir.rpartition(path_sep)[0] + path_sep
|
2008-04-09 18:16:18 +00:00
|
|
|
|
else:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
topdir = os.path.dirname(incfiles[0]) + path_sep
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
|
|
|
|
# Remove the prefix common to all paths in the list
|
|
|
|
|
i = 0
|
|
|
|
|
while i < len(incfiles):
|
2017-04-14 22:05:40 +00:00
|
|
|
|
incfiles[i] = incfiles[i].replace(topdir, b'', 1)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
|
|
# Remove duplicates and sort the list
|
2011-02-05 22:59:01 +00:00
|
|
|
|
incfiles = list(set(incfiles))
|
2008-04-09 18:16:18 +00:00
|
|
|
|
incfiles.sort()
|
|
|
|
|
|
|
|
|
|
if topdir != '':
|
2015-07-05 13:45:40 +00:00
|
|
|
|
os.chdir(unicode(topdir, 'utf-8'))
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2011-02-06 23:45:03 +00:00
|
|
|
|
# Create the archive
|
|
|
|
|
try:
|
2011-04-16 16:22:58 +00:00
|
|
|
|
if makezip:
|
2011-02-06 23:45:03 +00:00
|
|
|
|
zip = zipfile.ZipFile(ar_name, "w", zipfile.ZIP_DEFLATED)
|
|
|
|
|
for file in incfiles:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
zip.write(file.decode('utf-8'))
|
2011-02-06 23:45:03 +00:00
|
|
|
|
zip.close()
|
|
|
|
|
else:
|
|
|
|
|
tar = tarfile.open(ar_name, "w:gz")
|
|
|
|
|
for file in incfiles:
|
2017-04-14 22:05:40 +00:00
|
|
|
|
tar.add(file.decode('utf-8'))
|
2011-02-06 23:45:03 +00:00
|
|
|
|
tar.close()
|
|
|
|
|
except:
|
|
|
|
|
error('Failed to create LyX archive "%s"' % ar_name)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
|
2017-04-14 22:05:40 +00:00
|
|
|
|
print('LyX archive "%s" created successfully.' % ar_name)
|
2008-04-09 18:16:18 +00:00
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2015-07-05 13:45:40 +00:00
|
|
|
|
if running_on_windows:
|
|
|
|
|
# This works around <http://bugs.python.org/issue2128> for Python 2.
|
|
|
|
|
# All arguments are retrieved in unicode format and converted to utf-8.
|
|
|
|
|
# In this way, when launched from the command line, lyxpak.py can deal
|
|
|
|
|
# with any non-ascii names. Unfortunately, this is not the case when
|
|
|
|
|
# launched by LyX, because LyX converts the arguments of the converters
|
|
|
|
|
# to the filesystem encoding. On Windows this corresponds to the current
|
|
|
|
|
# code page and not to the UTF-16 encoding used by NTFS, such that they
|
|
|
|
|
# are transliterated if not exactly encodable. As an example, α may
|
|
|
|
|
# become a, β may become ß, and so on. However, this is a problem only
|
|
|
|
|
# if the full path of the LyX document contains an unencodable character
|
|
|
|
|
# as all other paths are extracted from the document in utf-8 format.
|
|
|
|
|
from ctypes import WINFUNCTYPE, windll, POINTER, byref, c_int
|
|
|
|
|
from ctypes.wintypes import LPWSTR, LPCWSTR
|
|
|
|
|
GetCommandLineW = WINFUNCTYPE(LPWSTR)(("GetCommandLineW", windll.kernel32))
|
|
|
|
|
CommandLineToArgvW = WINFUNCTYPE(POINTER(LPWSTR), LPCWSTR, POINTER(c_int))(("CommandLineToArgvW", windll.shell32))
|
|
|
|
|
argc = c_int(0)
|
|
|
|
|
argv_unicode = CommandLineToArgvW(GetCommandLineW(), byref(argc))
|
|
|
|
|
# unicode_argv[0] is the Python interpreter, so skip that.
|
2023-12-06 19:11:41 +00:00
|
|
|
|
argv = [argv_unicode[i].encode('utf-8') for i in range(1, argc.value)]
|
2015-07-05 13:45:40 +00:00
|
|
|
|
# Also skip option arguments to the Python interpreter.
|
|
|
|
|
while len(argv) > 0:
|
|
|
|
|
if not argv[0].startswith("-"):
|
|
|
|
|
break
|
|
|
|
|
argv = argv[1:]
|
|
|
|
|
sys.argv = argv
|
|
|
|
|
|
2008-04-09 18:16:18 +00:00
|
|
|
|
main(sys.argv)
|