/usr/share/pyshared/pyx/data/pyxrc is in python-pyx 0.11.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | # This file is an example containing the runtime configuration options
# of PyX and its default values. You may adapt this file and copy it
# to /etc/pyxrc for systemwide configuration overwriting the PyX
# defaults. Alternatively you may copy it to ~/.pyxrc for personal
# configuration overwritting both, the PyX defaults and the systemwide
# configuration.
[general]
# general options
#
# warnings are issued using pythons warning module. You can influence
# the output by the following option, using the values "default" (for
# the python default), "short" (for a single line format), and
# "shortest" for printing the warning message itself only.
warnings = shortest
[text]
# runtime configuration of the text module
#
# 'psfontmaps' is a whitespace separated list of options listing font
# mapping files. Those files contain information about the available
# type1 fonts. Depending on your TeX-installation you may need to add
# further font mapping files like psfonts.cmz (if your TeX installation
# is not configured to use type1 fonts by default). For further
# information browse the FAQ for the term 'font mapping file'.
psfontmaps = psfonts.map
# 'pdffontmaps' is similar to psfontmaps, but it used when pdf output
# is generated. (Note that pdf has a different set of builtin fonts.)
pdffontmaps = pdftex.map
# 'waitfortex' is an positive integer, namely the number of seconds
# to be waited for an appropriate response from TeX/LaTeX.
waitfortex = 60
# 'showwaitfortex' is an non-negative integer, namely the number of
# seconds to be waited until (and between) emitting messages
# indicating the waiting for an appropriate response from TeX/LaTeX.
# This feature can be turned off by setting showwaitfortex to 0.
showwaitfortex = 5
# 'texipc' is a boolean controlling the usage of the --ipc option of
# TeX/LaTeX. You should turn on this option when the ipc-extension is
# available in your TeX installation (check the output of tex --help).
# You will gain immediate access to the dvi-output of TeX by that,
# which will substantially improve the performance of certain
# operations (e.g. the usage of PyX markers).
texipc = 1
[filelocator]
# runtime configuration of file search mechanism
#
# 'methods' defines a list of methods to be tried one after each other
# to find files like, e.g., fonts and corresponding metrics information.
#
# Available methods are:
# - 'local': locates files in the current directory.
# - 'internal': locates files within the PyX data tree (also inside
# of zipped Python eggs for Python 2.6 and above).
# - 'recursivedir': locates files by searching recursively in a
# space-separated list of directories, which can
# be specified by the option 'recursivedir'.
# - 'ls-R': locates files by searching a list of ls-R files,
# which can be specified by the option 'ls-R'.
# - 'pykpathsea': locate files using the pykpathsea extension if available.
# Building of this module can be enabled in the setup.cfg
# file distributed with PyX.
# - 'kpsewhich': locate files using the kpsewhich executable if available.
# - 'locate': locate files using a locate executable if available.
methods = local internal pykpathsea kpsewhich
|