This file is indexed.

/usr/share/doc/python-wokkel/examples/pinger_component.tac is in python-wokkel 0.7.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
"""
An XMPP Ping client as an external server-side component.

This pinger client assumes the domain C{pinger}.
"""

from twisted.application import service
from twisted.words.protocols.jabber.jid import JID
from wokkel import component
from pinger import Pinger

# Configuration parameters

EXT_HOST = 'localhost'
EXT_PORT = 5347
SECRET = 'secret'
DOMAIN = 'pinger'
OTHER_DOMAIN = 'ping'
LOG_TRAFFIC = True


# Set up the Twisted application

application = service.Application("Pinger Component")

router = component.Router()
pingerComponent = component.Component(EXT_HOST, EXT_PORT, DOMAIN, SECRET)
pingerComponent.logTraffic = LOG_TRAFFIC
pingerComponent.setServiceParent(application)

pingerHandler = Pinger(JID(OTHER_DOMAIN), JID(DOMAIN))
pingerHandler.setHandlerParent(pingerComponent)