Manual de Calibre | Page 241

Manual de usuario de calibre, Publicación 2.73.0 CALIBRE_SHOW_DEPRECATION_WARNINGS - hace que calibre envíe advertencias de elementos anticuados a stdout. Útil para desarrolladores de calibre. CALIBRE_NO_DEFAULT_PROGRAMS - Evita que calibre registre automáticamente los tipos de archivo que reconoce en Windows. SYSFS_PATH - Úsela si sysfs está montado en una ubicación distinta de /sys http_proxy - Utilizado en linux para especificar un proxy HTTP Véase How to set environment variables in windows92 (en inglés) o How to set environment variables in OS X93 (en inglés). 1.10.3 Ajustes Los ajustes son pequeños cambios que puede especificar para controlar varios aspectos del comportamiento de calibre. Puede cambiarlos en Preferencias > Avanzado > Ajustes. Los valores predeterminados para los ajustes se muestran a continuación #!/usr/bin/env python2 # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai __license__ = 'GPL v3' __copyright__ = '2010, Kovid Goyal ' __docformat__ = 'restructuredtext en' ''' Contains various tweaks that affect calibre behavior. Only edit this file if you know what you are doing. If you delete this file, it will be recreated from defaults. ''' #: Auto increment series index # The algorithm used to assign a book added to an existing series a series number. # New series numbers assigned using this tweak are always integer values, except # if a constant non-integer is specified. # Possible values are: # next - First available integer larger than the largest existing number # first_free - First available integer larger than 0 # next_free - First available integer larger than the smallest existing number # last_free - First available integer smaller than the largest existing number # Return largest existing + 1 if no free number is found # const - Assign the number 1 always # no_change - Do not change the series index # a number - Assign that number always. The number is not in quotes. Note that # 0.0 can be used here. # Examples: # series_index_auto_increment = 'next' # series_index_auto_increment = 'next_free' # series_index_auto_increment = 16.5 # # Set the use_series_auto_increment_tweak_when_importing tweak to True to # use the above values when importing/adding books. If this tweak is set to # False (the default) then the series number will be set to 1 if it is not # explicitly set during the import. If set to True, then the # series index will be set according to the series_index_auto_increment setting. # Note that the use_series_auto_increment_tweak_when_importing tweak is used 92 93 http://www.computerhope.com/issues/ch000549.htm http://www.dowdandassociates.com/blog/content/howto-set-an-environment-variable-in-mac-os-x-launchd-plist/ 1.10. Personalizar calibre 237