This file is indexed.

/usr/share/pyshared/actdiag-0.3.3.egg-info/PKG-INFO is in python-actdiag 0.3.3-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
 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
Metadata-Version: 1.1
Name: actdiag
Version: 0.3.3
Summary: actdiag generate activity-diagram image file from spec-text file.
Home-page: http://blockdiag.com/
Author: Takeshi Komiya
Author-email: i.tkomiya at gmail.com
License: Apache License 2.0
Description: `actdiag` generate activity-diagram image file from spec-text file.
        
        Features
        ========
        
        * Generate activity-diagram from dot like text (basic feature).
        * Multilingualization for node-label (utf-8 only).
        
        You can get some examples and generated images on 
        `blockdiag.com <http://blockdiag.com/actdiag/build/html/index.html>`_ .
        
        Setup
        =====
        
        by easy_install
        ----------------
        Make environment::
        
           $ easy_install actdiag
        
        by buildout
        ------------
        Make environment::
        
           $ hg clone http://bitbucket.org/tk0miya/actdiag
           $ cd actdiag
           $ python bootstrap.py
           $ bin/buildout
        
        spec-text setting sample
        ========================
        
        Few examples are available.
        You can get more examples at
        `blockdiag.com <http://blockdiag.com/actdiag/build/html/index.html>`_ .
        
        simple.diag
        ------------
        
        simple.diag is simply define nodes and transitions by dot-like text format::
        
            diagram {
              A -> B -> C;
              lane you {
                A; B;
              }
              lane me {
                C;
              }
            }
        
        
        Usage
        =====
        
        Execute actdiag command::
        
           $ actdiag simple.diag
           $ ls simple.png
           simple.png
        
        
        Requirements
        ============
        
        * Python 2.4 or later (not support 3.x)
        * Python Imaging Library 1.1.5 or later.
        * funcparserlib 0.3.4 or later.
        * setuptools or distribute.
        
        
        License
        =======
        Apache License 2.0
        
        
        History
        =======
        
        0.3.3 (2012-04-23)
        ------------------
        * Set hyperlinks to header of lanes on SVG image
        * Fill background of lane header with lane.color attribute
        
        0.3.2 (2012-03-15)
        ------------------
        * Fix bugs
        
        0.3.1 (2012-02-15)
        ------------------
        * Add autolane plugin
        * Update to new package structure (blockdiag >= 1.1.2)
        
        0.3.0 (2011-11-19)
        ------------------
        * Add fontfamily attribute for switching fontface
        * Fix bugs
        
        0.2.4 (2011-11-10)
        ------------------
        * Fix dependencies (do not depend PIL directly for pillow users)
        
        0.2.3 (2011-11-06)
        ------------------
        * Add docutils exetension
        * Fix bugs
        
        0.2.2 (2011-11-01)
        ------------------
        * Add class feature (experimental)
        
        0.2.1 (2011-11-01)
        ------------------
        * Follow blockdiag-0.9.7 interface
        
        0.2.0 (2011-10-19)
        ------------------
        * Follow blockdiag-0.9.5 interface 
        
        0.1.9 (2011-10-11)
        ------------------
        * Fix bugs
        
        0.1.8 (2011-09-30)
        ------------------
        * Add diagram attribute: default_text_color
        
        0.1.7 (2011-07-05)
        ------------------
        * Fix bugs
        
        0.1.6 (2011-07-03)
        ------------------
        * Support input from stdin
        
        0.1.5 (2011-05-15)
        ------------------
        * Fix bugs
        
        0.1.4 (2011-05-14)
        ------------------
        * Change license to Apache License 2.0
        * Support blockdiag 0.8.1 core interface 
        
        0.1.3 (2011-04-19)
        ------------------
        * Fix bugs
        
        0.1.2 (2011-04-11)
        ------------------
        * Fix bugs
        
        0.1.1 (2011-04-10)
        ------------------
        * Fix bugs
        
        0.1.0 (2011-04-09)
        ------------------
        * First release
        
        Todos
        ======
        
        Functionals
        ------------
        
        Known Issues
        -------------
        
Keywords: diagram,generator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Text Processing :: Markup