This file is indexed.

/usr/lib/python2.7/dist-packages/framework/subsystems/opimd/opimd.py is in fso-frameworkd 0.10.1-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
86
87
88
89
90
91
92
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#   Openmoko PIM Daemon
#   Settings storage
#
#   http://openmoko.org/
#   http://pyneo.org/
#
#   (C) 2008 Soeren Apel <abraxa@dar-clan.de>
#   (C) 2008-2009 Openmoko, Inc.
#   (C) 2009 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
#   (C) 2009 by Sebastian Krzyszkowiak <seba.dos1@gmail.com>
#   (C) 2009 Tom "TAsn" Hacohen <tom@stosb.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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#

DBUS_BUS_NAME_FSO = "org.freesmartphone.opimd"
DBUS_PATH_BASE_FSO = "/org/freesmartphone/PIM"
DIN_BASE_FSO = "org.freesmartphone.PIM"

MODULE_NAME = "opimd"

import logging
logger = logging.getLogger( MODULE_NAME )

try:
    import phoneutils
except ImportError:
    logger.error('Couldn\'t import phoneutils! Can\'t use normalizing phone numbers. Check if you have python-phoneutils installed.')

# We import the domain modules, so that there classes get registered
import pimd_contacts
import pimd_messages
import pimd_calls
import pimd_dates
import pimd_notes
import pimd_tasks


from domain_manager import DomainManager

from type_manager import TypeManager

INIT = False

#----------------------------------------------------------------------------#
def factory( prefix, subsystem ):
#----------------------------------------------------------------------------#
    """
    frameworkd factory method.
    """
    # TODO Check for exceptions

    global INIT

    if INIT:
        return []

    try:
        phoneutils.init()
    except:
        logger.error('Failed to init libphone-utils!')

    DomainManager.init()
    type_manager = TypeManager()

    dbus_objects = []

    # Create a list of all d-bus objects
    for dbus_obj in DomainManager.enumerate_dbus_objects():
        logger.debug( "adding object %s" % dbus_obj )
        dbus_objects.append(dbus_obj)

    dbus_objects.append(type_manager)

    INIT = True

    return dbus_objects