This file is indexed.

/usr/share/zope/Products/ReplaceSupport/__init__.py is in zope-replacesupport 1.0.3-6.

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
# ReplaceSupport 1.0.3
# (c) 2000-2005, Stefan H. Holek, stefan@epy.co.at
# http://zope.org/Members/shh/ReplaceSupport
# License: ZPL
# Zope: 2.6-2.8

__doc__ = 'Add a Replace tab to Folders'
__version__ = '1.0.3'

# Register the helpfile
def initialize( context ):
    if hasattr( context, 'registerHelp' ):
        context.registerHelp()
        context.registerHelpTitle( 'Zope Help' )

# Register the replace handlers
import Handlers

# Comment out the following line if you want to use the advanced
# installation method. See the INSTALL.txt document for more.
import SimplePatch