This file is indexed.

/usr/share/doc/python-django-classy-tags-doc/html/_sources/changes.txt is in python-django-classy-tags-doc 0.5.1-4.

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
#########
Changelog
#########

*********************
0.4.0 (in Development
*********************

* Added :ref:`advanced-block-definition`.
* Added :doc:`arguments` documentation.

*****
0.3.3
*****

* Fixed issues with :class:`classytags.helpers.InclusionTag``.

*****
0.3.2
*****

* Fixed issue in :class:`classytags.arguments.MultiKeywordArgument` and
  :class:`classytags.arguments.KeywordArgument` and their behavior when given
  a default value.
  
*****
0.3.1
*****

* Fixed :class:`classytags.arguments.MultiKeywordArgument` and
  :class:`classytags.arguments.KeywordArgument` not returning sane defaults.
* Added ``child_nodelist`` attribute on tag instances as well as setting the
  child nodelists as attributes onto the instance during initialization for
  compatiblity with applications that require these attributes to be set.

*****
0.3.0
*****

* Added :class:`classytags.arguments.KeywordArgument`
* Added :class:`classytags.arguments.MultiKeywordArgument`
* Added :class:`classytags.arguments.ChoiceArgument` 
* Added ability to override the parser class in the initialization of the
  :class:`classytags.core.Options` class, to make the usage of custom parsers
  easier.
* Added :class:`classytags.values.DictValue`
* Added :class:`classytags.values.ChoiceValue`

*****
0.2.2
*****

* Fixed issue in :class:`classytags.helpers.AsTag` when trying to extract the
  variable to store the value in, but no argument is given.
* Fixed :class:`classytags.helpers.InclusionTag` not validating the ``template``
  attribute on initialization.
  
*****
0.2.1
*****

* Fixed version in documentation not matching release version.

*****
0.2.0
*****

* Added ability to have typed arguments.
* Added :class:`classytags.arguments.IntegerArgument`
* Added more graceful failing in non-debug mode by using warnings instead of
  exceptions.
  
*****
0.1.3
*****

* Added :class:`classytags.helpers.InclusionTag`