This file is indexed.

/usr/share/avant-window-navigator/applets/comics/main.py is in awn-applet-comics 0.4.1~bzr1507-0ubuntu7.

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
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright (c) 2008 Moses Palmér
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.


# Import standard modules
import gobject
import gtk
import os
import pynotify
import re
import sys
import tempfile
import threading
from awn.extras import _

# Import Comics! modules
import comics_manage
import comics_view
from feed.settings import Settings
from feed import FeedContainer
from shared import (
    ALT_USER_DIR, ICONS_DIR, STRIPS_DIR, SYS_FEEDS_DIR, USER_DIR,
    USER_FEEDS_DIR)


"""This is the path to the named pipe that is used to send commands to the
application."""
COMMAND_PIPE = os.path.join(STRIPS_DIR, 'commands')

"""If no commands are passed on the command line, this command will be
executed."""
DEFAULT_COMMAND = 'toggle_visibility'

"""The command that terminates the application."""
EXIT_COMMAND = 'exit'


class Command(object):
    """A class that describes a command."""

    """The regular expression that matches an entire command line. A command
    line is on the format 'a_command [parameter...]' or
    simply 'another_command'."""
    LINE_RE = re.compile(r'(?P<command>\w*)(?:\s+(?P<parameters>.+))?')

    """The regular expression that matches a single parameter value. A
    parameter value is in the format 123 or "a string"."""
    PARAMETER_RE = re.compile(r''
        + r'(?P<int>-?\d+)|'
        + r'(?:"(?P<str>(?:(?:\\")|.)*?)")|'
        + r'(?P<token>\S+)')

    """Parameter tokens with any of these values are interpreted as the boolean
    value True."""
    TRUE_VALUES = ['true', 'yes', 'on']

    """Parameter tokens with any of these values are interpreted as the boolean
    value False."""
    FALSE_VALUES = ['false', 'no', 'off']

    def __init__(self, command):
        self.command = ''
        self.parameters = []

        # Extract the command verb and its parameters
        line = self.LINE_RE.match(command)
        if line is None:
            return
        self.command = line.group('command')

        # There may be no parameters, and re.finditer does not like this
        if line.group('parameters') is None:
            return

        for parameter in self.PARAMETER_RE.finditer(line.group('parameters')):
            if parameter.group('int'):
                # Interpret all-digit tokens as numbers
                self.parameters.append(int(parameter.group('int')))
            elif parameter.group('str'):
                # Interpret quoted tokens as strings
                self.parameters.append(parameter.group('str'))
            elif parameter.group('token'):
                token = parameter.group('token')
                if token in self.TRUE_VALUES:
                    self.parameters.append(True)
                elif token in self.FALSE_VALUES:
                    self.parameters.append(False)
                else:
                    # Interpret unknown tokens a simple strings
                    self.parameters.append(token)

    def value_to_string(self, value):
        """Converts a value to a string."""
        if isinstance(value, int):
            return str(value)
        elif isinstance(value, bool):
            if value:
                return self.TRUE_VALUES[0]
            else:
                return self.FALSE_VALUES
        elif ' ' in value:
            return '"%s"' % value
        else:
            return value

    def __str__(self):
        return ' '.join([self.value_to_string(s) for s in
                         [self.command] + self.parameters])


class Application(object):

    def command_listener(self):
        """Reads commands from a stream until the exit command is received."""
        stream = open(COMMAND_PIPE, 'r+')

        try:
            while True:
                command = Command(stream.readline())
                gobject.idle_add(self.execute_command, command)
                if command.command == EXIT_COMMAND:
                    break
        except IOError:
            gobject.idle_add(self.execute_command, Command(EXIT_COMMAND))
        finally:
            stream.close()

    def execute_command(self, command):
        """Invoked by the command listening thread whenever a command is sent
        to the application."""
        try:
            # Execute the requested command
            getattr(self, 'do_' + command.command)(*command.parameters)
        except AttributeError:
            print _('Unknown command sent: %s') % str(command)
        except TypeError, e:
            print e

        # Make sure this callback is not called again
        return False

    def __init__(self, paths, cache):
        """Creates an application instance by loading feed descriptors from all
        paths in paths and strip caches from the directory cache."""
        self.feeds = FeedContainer()
        for path in paths:
            self.feeds.load_directory(path)

        # Create the comics
        self.comics = []
        for filename in (os.path.join(cache, f) for f in os.listdir(cache)
                         if f.endswith('.strip')):
            settings = Settings(filename)
            settings['cache-file'] = filename.rsplit('.', 1)[0] + '.cache'
            comic = comics_view.ComicsViewer(self, settings, False)
            comic.connect('removed', self.on_comic_removed)
            comic.connect('updated', self.on_comic_updated)
            self.comics.append(comic)

        # The comics are initially hidden
        for comic in self.comics:
            comic.set_visibility(False)
        self.visible = False

        # Start listening for commands
        self.command_thread = threading.Thread(target=self.command_listener)
        self.command_thread.start()

        self.feeds.update()

    def show_message(self, message, icon, body=None):
        pynotify.Notification(message, body, icon).show()

    def on_comic_updated(self, widget, title):
        self.show_message(_('There is a new strip of %s!') % widget.feed_name,
            os.path.join(ICONS_DIR, 'comics-icon.svg'))

    def on_comic_removed(self, widget):
        self.comics.remove(widget)

    def do_exit(self):
        """Causes the application to terminate."""
        gtk.main_quit()

    def do_set_visibility(self, visibility):
        """Shows or hides all comic strips depending of the value of
        visibility."""
        for comic in self.comics:
            comic.set_visibility(visibility)
        self.visible = visibility

    def do_show(self):
        """Shows all comic strips."""
        self.do_set_visibility(True)

    def do_hide(self):
        """Hides all comic strips."""
        self.do_set_visibility(False)

    def do_toggle_visibility(self):
        """Shows or hides all comic strips."""
        self.do_set_visibility(not self.visible)

    def do_manage_comics(self):
        """Shows the configuration interface."""
        manager = comics_manage.ComicsManager(self.feeds)
        manager.show()

    def do_include_comic(self, feed_name):
        """Adds a window for a specific comic if not already shown."""
        # Do not add an unknown comic
        if feed_name not in self.feeds.feeds:
            return

        # Do not add an already present comic
        for comic in self.comics:
            if comic.feed_name == feed_name:
                return

        # Create a temporary filename for the configuration file
        f, filename = tempfile.mkstemp('.strip', '', STRIPS_DIR, True)
        os.close(f)

        settings = Settings(filename)
        settings['feed_name'] = feed_name
        settings['cache-file'] = filename.rsplit('.', 1)[0] + '.cache'
        comic = comics_view.ComicsViewer(self, settings, self.visible)
        self.comics.append(comic)
        comic.connect('removed', self.on_comic_removed)
        comic.connect('updated', self.on_comic_updated)
        settings.save()

    def do_exclude_comic(self, feed_name):
        """Removes a window for a specific comic if shown."""
        # Do not remove an unknown comic
        if feed_name not in self.feeds.feeds:
            return

        comics = [c for c in self.comics if c.feed_name == feed_name]
        if not comics:
            return

        for comic in comics:
            comic.close()
            comic.destroy()

    def do_toggle_comic(self, feed_name):
        """Includes or excludes a comic depending on whether it is included."""
        if feed_name in self.feeds.feeds:
            self.exclude_comic(feed_name)
        else:
            self.include_comic(feed_name)

if __name__ == '__main__':
    # Read the command
    if len(sys.argv) > 1:
        command = Command(' '.join(sys.argv[1:]))
    else:
        command = Command(DEFAULT_COMMAND)

    # If the named pipe exists, another instance is running and we just pass
    # the command line on
    if os.access(COMMAND_PIPE, os.F_OK):
        out = open(COMMAND_PIPE, 'w+')
        try:
            out.write(str(command) + '\n')
        finally:
            out.close()
        sys.exit(0)

    # We do not start the application if the command to execute is exit
    if command.command == EXIT_COMMAND:
        sys.exit(0)

    # Initialise GObject and GTK
    gobject.threads_init()
    gobject.set_application_name(_('Comics!'))
    gtk.gdk.threads_init()
    gtk.window_set_default_icon_from_file(os.path.join(ICONS_DIR,
        'comics-icon.svg'))

    # Initialise notifications
    pynotify.init(_("Comics!"))

    # Initialize user agent string
    import urllib

    class ComicURLOpener(urllib.FancyURLopener):
        version = 'Mozilla/3.0'
    urllib._urlopener = ComicURLOpener()

    # Make sure that all required directories exist
    if not os.access(USER_DIR, os.W_OK):
        if os.access(ALT_USER_DIR, os.W_OK):
            os.symlink(ALT_USER_DIR, USER_DIR)
        else:
            os.makedirs(USER_DIR)
    if not os.access(USER_FEEDS_DIR, os.W_OK):
        os.makedirs(USER_FEEDS_DIR)

    # Create the command pipe
    os.mkfifo(COMMAND_PIPE)
    try:
        # Create the application and start the main loop
        application = Application([SYS_FEEDS_DIR, USER_FEEDS_DIR], STRIPS_DIR)
        application.execute_command(command)
        gtk.main()
    finally:
        # Remove the command pipe
        os.unlink(COMMAND_PIPE)