This file is indexed.

/usr/share/opendict/lib/info.py is in opendict 0.6.5-3.

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
#
# OpenDict
# Copyright (c) 2003-2006 Martynas Jocius <martynas.jocius@idiles.com>
# Copyright (c) 2007 IDILES SYSTEMS, UAB <support@idiles.com>
#
# 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 opinion) any later version.
#
# This program is distributed in the hope that will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MECHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more detals.
#
# You shoud have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA
#

import sys
import os
import imp

# OpenDict version
VERSION = "0.6.5"

# File system objects
__OPENDICT_LOCAL_DIR = ".opendict"

__DICT_DIR = "dictionaries"
__PLUGIN_DICT_DIR = "plugins" # plugin dictionaries
__PLAIN_DICT_DIR = "plain" # used for downloaded dictionaries
__PLAIN_DICT_CONFIG_DIR = "conf"
__PLAIN_DICT_FILE_DIR = "file"
_PLAIN_DICT_DATA_DIR = "data"

LOG_DIR = 'log'

PLAIN_DICT_DIR = os.path.join(__DICT_DIR, __PLAIN_DICT_DIR)
PLUGIN_DICT_DIR = os.path.join(__DICT_DIR, __PLUGIN_DICT_DIR)

GLOBAL_HOME = None
LOCAL_HOME = None

## if sys.platform == "win32":
##    import _winreg
##    x = _winreg.ConnectRegistry(None, _winreg.HKEY_CURRENT_USER)
##    try:
##       y = _winreg.OpenKey(x, "SOFTWARE\OpenDict\Settings")
##       GLOBAL_HOME = _winreg.QueryValueEx(y, "Path")[0]
##    except:
##       GLOBAL_HOME = "C:\\Program Files\\OpenDict"

##    LOCAL_HOME = GLOBAL_HOME

## else:
##    if not os.path.exists(os.path.join(os.environ.get("HOME"),
##                                       __OPENDICT_LOCAL_DIR)):
##       os.mkdir(os.path.join(os.environ.get("HOME"), __OPENDICT_LOCAL_DIR))

##    LOCAL_HOME = os.path.join(os.environ.get("HOME"), __OPENDICT_LOCAL_DIR)
##    GLOBAL_HOME = "/usr/share/opendict"


# main_is_frozen() returns True when running the exe, and False when 
# running from a script. 
def main_is_frozen():
    return (hasattr(sys, "frozen") or # new py2exe 
            hasattr(sys, "importers") # old py2exe 
            or imp.is_frozen("__main__")) # tools/freeze 

if main_is_frozen():
    GLOBAL_HOME = os.path.realpath(os.path.join(os.path.dirname(\
        os.path.realpath(__file__)), '../..'))
else:
    GLOBAL_HOME = os.path.realpath(os.path.join(os.path.dirname(\
        os.path.realpath(__file__)), '..'))

if sys.platform == 'win32':
   LOCAL_HOME = GLOBAL_HOME
else:
   LOCAL_HOME = os.path.join(os.environ.get('HOME', GLOBAL_HOME),
                             __OPENDICT_LOCAL_DIR)