This file is indexed.

/usr/share/pyshared/trytond/url.py is in tryton-server 2.2.1-1.

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
#This file is part of Tryton.  The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.

import encodings.idna
import urllib
import socket

from trytond.config import CONFIG
from trytond.transaction import Transaction


class URLMixin(object):

    def get_url(self):
        from trytond.model import Model
        from trytond.wizard import Wizard
        from trytond.report import Report

        hostname = CONFIG['hostname'] or unicode(socket.getfqdn(), 'utf8')
        hostname = '.'.join(encodings.idna.ToASCII(part) for part in
            hostname.split('.'))

        url_part = {}
        if isinstance(self, Model):
            url_part['type'] = 'model'
        elif isinstance(self, Wizard):
            url_part['type'] = 'wizard'
        elif isinstance(self, Report):
            url_part['type'] = 'report'
        else:
            raise NotImplementedError

        url_part['name'] = self._name
        url_part['database'] = Transaction().cursor.database_name

        local_part = urllib.quote('%(database)s/%(type)s/%(name)s' % url_part)
        return 'tryton://%s/%s' % (hostname, local_part)