This file is indexed.

/usr/share/pyshared/elisa/plugins/base/messages/media_scanner.py is in moovida-plugins-good 1.0.9+bzr1614-1ubuntu1.

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
# -*- coding: utf-8 -*-
# Moovida - Home multimedia server
# Copyright (C) 2006-2009 Fluendo Embedded S.L. (www.fluendo.com).
# All rights reserved.
#
# This file is available under one of two license agreements.
#
# This file is licensed under the GPL version 3.
# See "LICENSE.GPL" in the root of this distribution including a special
# exception to use Moovida with Fluendo's plugins.
#
# The GPL part of Moovida is also available under a commercial licensing
# agreement from Fluendo.
# See "LICENSE.Moovida" in the root directory of this distribution package
# for details on that license.

"""
Messages for media scanner start/stop
"""

from elisa.core.components.message import Message

class InitialScanFinished(Message):
    """
    Sent over the L{elisa.core.bus.Bus} when the initial scan is finished.
    The message itself is not listened to by any Moovida callback. It is
    only used by the stand-alone media scanner capabilities of
    elisa/plugins/database/interactiv_test,py
    """
    pass