This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/lyceum/journal/ftests/__init__.py is in python-schooltool.lyceum.journal 2.6.3-0ubuntu1.

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
#
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2008 Shuttleworth Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
"""
Helper function for tests.
"""

from schooltool.testing.analyze import queryHTML


def format_table(table, header_rows=0):
    """Format an ASCII-art table.

    Example:

      >>> print format_table([['11', '12', '13'],
      ...                     ['21', 'center', '23'],
      ...                     ['31', 32, None]])
      +----+--------+------+
      | 11 | 12     | 13   |
      | 21 | center | 23   |
      | 31 | 32     | None |
      +----+--------+------+

      >>> print format_table([])
      +-+
      +-+

      >>> print format_table([['', 'x']])
      +-+---+
      | | x |
      +-+---+

      >>> print format_table([['x', 'y', 'z'],
      ...                     ['11', '12', '13'],
      ...                     ['31', 32, '33']], header_rows=1)
      +----+----+----+
      | x  | y  | z  |
      +----+----+----+
      | 11 | 12 | 13 |
      | 31 | 32 | 33 |
      +----+----+----+

    """
    ncols = table and len(table[0]) or 1
    col_width = [1] * ncols
    for row_data in table:
        for col, cell_data in enumerate(row_data):
            if cell_data != '':
                col_width[col] = max(col_width[col], len(str(cell_data)) + 2)
    hline = '+'.join([''] + ['-' * w for w in col_width] + [''])
    table_rows = ([hline] +
                  ['|'.join([''] +
                            [' ' + str(s).ljust(w - 1)
                             for s, w in zip(row_data, col_width)] +
                            [''])
                   for row_data in table] +
                  [hline])
    if 0 < header_rows < len(table):
        table_rows.insert(1 + header_rows, hline)
    table = '\n'.join(table_rows)
    return table


def printGradebookTable(contents):
    table_rows = []

    contents = contents.replace('<br />', ' ')
    headers = [header.strip()
               for header in queryHTML('//table[@class="data"]//th/span//text()',
                                       contents)]
    table_rows.append(headers)

    grade_rows = queryHTML('//table[@class="data"]//tr', contents)
    for row in grade_rows:
        grades = []
        grade_cells = queryHTML('//tr//td', row)
        for grade in grade_cells:
            text = queryHTML('//td/a/text()', grade)
            if not text:
                text_input_value = queryHTML('//td//input[@type="text"]/@value', grade)
                if text_input_value:
                    text = ["[%s]" % str(text_input_value[0]).ljust(5, '_')]
            if not text:
                checkbox = queryHTML('//td//input[@type="checkbox"]', grade)
                if checkbox:
                    text = ["[ ]"]
                    input_value = queryHTML('//td//input[@type="checkbox"]/@checked', grade)
                    if input_value:
                        text = ["[V]"]
            if not text:
                text = queryHTML('//td/strong/text()', grade)
                if text:
                    text = ['*%s*' % text[0].strip()]
            if not text:
                text = queryHTML('//td/text()', grade)
            if not text:
                text = ['']
            grades.append(text[0].strip())
        if grades:
            table_rows.append(grades)
    print format_table(table_rows, header_rows=1)