This file is indexed.

/usr/share/pyshared/burnlib/configure.py is in burn 0.4.6-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
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# -*- coding: utf-8 -*-

# burnlib/configure.py
#
# Copyright © 2009 Ben Finney <ben+python@benfinney.id.au>.
# Copyright © 2004–2009 Gaetano Paolone <bigpaul@hacknight.org>.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA.

""" Configuration options for ‘burn’.

    config
        The configuration object for parsing config files.

    config_defaults
        Default configuration options.

    config_file_paths
        List of config file paths that will be used, in order.

    read_from_files(paths)
        Sets up the config object with options read from config files.

    """

import sys
import os
import os.path
import gettext
import ConfigParser


#gettext
gettext.bindtextdomain('burn_configure', '/usr/share/locale/it/LC_MESSAGES/')
gettext.textdomain('burn_configure')
_ = gettext.gettext

config_file_paths = [
    os.path.join('/', 'etc', 'burn.conf'),
    os.path.join(os.environ['HOME'], '.burnrc'),
    ]

config_defaults = {
    'ask_root': "yes",
    'external_decoding': "no",
    'pause': "yes",

    'wodim': "/usr/bin/wodim",
    'cdrdao': "/usr/bin/cdrdao",
    'genisoimage': "/usr/bin/genisoimage",
    'mp3_decoder': "/usr/bin/mpg321",
    'mp3_decoder_option': "-q -w",
    'ogg_decoder': "/usr/bin/ogg123",
    'ogg_decoder_option': "-q -d wav -f",

    'tempdir': "/tmp/",
    'image': "burn_image.iso",
    'windows_read': "yes",
    'mount_dir': "/mnt/",

    'device': "/dev/cdrom",
    'speed': "4",
    'driver': "generic-mmc",
    'burnfree': "yes",

    'media-check': "no",
    'size': "700",
    }

config = ConfigParser.SafeConfigParser(config_defaults)


def read_from_files(parser=None, paths=None):
    """ Read the configuration from files into the config object.

        The ConfigParser behaviour is to silently ignore those paths
        that do not exist, allowing a cascade of potential config
        files to be read in sequence, each one overriding any previous
        settings.

        """

    if parser is None:
        parser = config
    if paths is None:
        paths = config_file_paths
    parser.read(paths)


def read_from_template(parser, template_path):
    """ Read the configuration from specified template file.
        """
    template_file = open(template_path)
    parser.readfp(template_file)


def make_config_from_template(template_path):
    """ Make a config object from specified template file.

        If an error occurs reading the configuration template, exit
        with an error message.

        """

    parser = ConfigParser.SafeConfigParser(config_defaults)
    try:
        read_from_template(parser, template_path)
    except EnvironmentError, exc:
        message = _(
            "Failed to read template configuration file: %(exc)s\n"
            ) % vars()
        sys.exit(message)

    return parser


def write_to_file(parser, path):
    """ Write configuration to specified path.

        If an error occurs opening or writing the configuration file,
        exit with an error message.

        """

    try:
        config_file = open(path, 'w')
        parser.write(config_file)
    except EnvironmentError, exc:
        message = _(
            "Failed to write configuration file: %(exc)s\n"
            ) % vars()
        sys.exit(message)


# Local variables:
# mode: python
# coding: utf-8
# End:
# vim: filetype=python fileencoding=utf-8 :