This file is indexed.

/usr/share/pyshared/catwalk/tg2/controller.py is in python-catwalk 2.0.2-5.

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
"""

Catwalk Module

Classes:
Name                               Description
Catwalk

Copywrite (c) 2008 Christopher Perkins
Original Version by Christopher Perkins 2007
Released under MIT license.
"""
from tgext.admin import AdminController
from tgext.admin.tgadminconfig import TGAdminConfig
import warnings
from sqlalchemy import MetaData
from sqlalchemy.orm import _mapper_registry
from sqlalchemy.orm.session import Session
from sqlalchemy.orm import ScopedSession

class Catwalk(AdminController):
    config_type = TGAdminConfig
    
    def __init__(self, models, session=None, metadata=None):
        if isinstance(session, MetaData):
            metadata = session
            session = models
            models = []
        if isinstance(models, (ScopedSession, Session)):
            session = models
            models = []
        if metadata is not None:
            for item in _mapper_registry:
                if item.tables[0] is not None and item.tables[0].bind == session.bind:
                    models.append(item.class_)
            
            warnings.warn("""metadata variable is deprecated and no longer needed.  Please send in a list of models
or your model module for catwalk to find your models  The new signiture is  Catalk(models, DBSession)""")
        super(Catwalk, self).__init__(models, session, config_type=self.config_type)