This file is indexed.

/usr/lib/python2.7/dist-packages/seqdiag-0.9.3.egg-info/PKG-INFO is in python-seqdiag 0.9.3-5.

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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
Metadata-Version: 1.1
Name: seqdiag
Version: 0.9.3
Summary: seqdiag generates sequence-diagram image from text
Home-page: http://blockdiag.com/
Author: Takeshi Komiya
Author-email: i.tkomiya at gmail.com
License: Apache License 2.0
Download-URL: http://pypi.python.org/pypi/seqdiag
Description: `seqdiag` generate sequence-diagram image file from spec-text file.
        
        .. image:: https://drone.io/bitbucket.org/blockdiag/seqdiag/status.png
           :target: https://drone.io/bitbucket.org/blockdiag/seqdiag
           :alt: drone.io CI build status
        
        .. image:: https://pypip.in/v/seqdiag/badge.png
           :target: https://pypi.python.org/pypi/seqdiag/
           :alt: Latest PyPI version
        
        .. image:: https://pypip.in/d/seqdiag/badge.png
           :target: https://pypi.python.org/pypi/seqdiag/
           :alt: Number of PyPI downloads
        
        
        Features
        ========
        
        * Generate sequence-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`_ .
        
        Setup
        =====
        
        Use easy_install or pip::
        
           $ sudo easy_install seqdiag
        
           Or
        
           $ sudo pip seqdiag
        
        
        Copy and modify ini file. example::
        
           $ cp <seqdiag installed path>/blockdiag/examples/simple.diag .
           $ vi simple.diag
        
        Please refer to `spec-text setting sample`_ section for the format of the
        `simpla.diag` configuration file.
        
        spec-text setting sample
        ========================
        
        Few examples are available.
        You can get more examples at
        `blockdiag.com <http://blockdiag.com/seqdiag/build/html/index.html>`_ .
        
        simple.diag
        ------------
        
        simple.diag is simply define nodes and transitions by dot-like text format::
        
            diagram {
              browser  -> webserver [label = "GET /index.html"];
              browser <-- webserver;
              browser  -> webserver [label = "POST /blog/comment"];
                          webserver  -> database [label = "INSERT comment"];
                          webserver <-- database;
              browser <-- webserver;
            }
        
        
        Usage
        =====
        
        Execute seqdiag command::
        
           $ seqdiag simple.diag
           $ ls simple.png
           simple.png
        
        
        Requirements
        ============
        * Python 2.6, 2.7, 3.2, 3.3, 3.4
        * Pillow 2.2.1 or later
        * funcparserlib 0.3.6 or later
        * reportlab (optional)
        * wand and imagemagick (optional)
        * setuptools
        
        
        License
        =======
        Apache License 2.0
        
        
        History
        =======
        
        0.9.3 (2014-07-03)
        ------------------
        * Fix bugs
        
        0.9.2 (2014-07-02)
        ------------------
        * Change interface of docutils node (for sphinxcontrib module)
        
        0.9.1 (2014-06-23)
        ------------------
        * Add options to blockdiag directive (docutils extension)
           - :width:
           - :height:
           - :scale:
           - :align:
           - :name:
           - :class:
           - :figwidth:
           - :figclass:
        
        0.9.0 (2013-10-05)
        ------------------
        * Support python 3.2 and 3.3 (thanks to @masayuko)
        * Drop supports for python 2.4 and 2.5
        * Replace dependency: PIL -> Pillow
        
        0.8.2 (2013-02-09)
        ------------------
        * Fix bugs
        
        0.8.1 (2012-11-12)
        ------------------
        * Add altblock feature (experimental)
        * Fix bugs
        
        0.8.0 (2012-10-22)
        ------------------
        * Optimize algorithm for rendering shadow
        * Add options to docutils directive
        * Fix bugs
        
        0.7.5 (2012-09-29)
        ------------------
        * Fix bugs
        
        0.7.4 (2012-09-20)
        ------------------
        * Support blockdiag-1.1.7 interface
        * Fix bugs
        
        0.7.3 (2012-03-16)
        ------------------
        * Allow to insert separators in subedge-group
        * Fix bugs
        
        0.7.2 (2011-12-12)
        ------------------
        * Fix bugs
        
        0.7.1 (2011-11-30)
        ------------------
        * Fix bugs
        
        0.7.0 (2011-11-19)
        ------------------
        * Add fontfamily attribute for switching fontface
        * Fix bugs
        
        0.6.3 (2011-11-06)
        ------------------
        * Add docutils extention
        * Fix bugs
        
        0.6.2 (2011-11-01)
        ------------------
        * Add class feature (experimental)
        
        0.6.1 (2011-11-01)
        ------------------
        * Follow blockdiag-0.9.7 interface
        
        0.6.0 (2011-10-28)
        ------------------
        * Add edge attributes: note, rightnote, leftnote, notecolor
        * Add diagram atteribute: default_note_color
        
        0.5.2 (2011-10-27)
        ------------------
        * Implement auto edge height adjusting
        * Fix bugs
        
        0.5.1 (2011-10-24)
        ------------------
        * Fix bugs
        
        0.5.0 (2011-10-21)
        ------------------
        * Add diagram attributes: activation, autonumber
        * Add edge attribute: failed
        * Add separator syntax
        
        0.4.3 (2011-10-19)
        ------------------
        * Follow blockdiag-0.9.5 interface
        
        0.4.2 (2011-10-11)
        ------------------
        * Fix bugs
        
        0.4.1 (2011-09-30)
        ------------------
        * Add diagram attribute: default_text_color
        * Add node attribte: textcolor
        * Fix bugs
        
        0.4.0 (2011-09-26)
        ------------------
        * Add diagram attributes: default_node_color, default_group_color and default_line_color
        
        0.3.8 (2011-08-02)
        ------------------
        * Allow dot characters in node_id
        * Fix bugs
        
        0.3.7 (2011-07-05)
        ------------------
        * Fix bugs
        
        0.3.6 (2011-07-03)
        ------------------
        * Support input from stdin
        
        0.3.5 (2011-06-02)
        ------------------
        * Fix bugs
        
        0.3.4 (2011-05-18)
        ------------------
        * Fix bugs
        
        0.3.3 (2011-05-16)
        ------------------
        * Add --version option
        * Add sphinxhelper module
        
        0.3.2 (2011-05-14)
        ------------------
        * Render group label
        * Support blockdiag 0.8.1 core interface 
        
        0.3.1 (2011-04-22)
        ------------------
        * Render group label
        * Fix sphinxcontrib_seqdiag does not work with seqdiag 0.3.0
        
        0.3.0 (2011-04-22)
        ------------------
        * Add group syntax
        
        0.2.7 (2011-04-15)
        ------------------
        * Adjust start coordinates of edges
        
        0.2.6 (2011-04-14)
        ------------------
        * Fix bugs
        * Allow unquoted utf8 characters
        
        0.2.5 (2011-03-26)
        ------------------
        * Fix seqdiag could not run under blockdiag 0.7.6
        
        0.2.4 (2011-03-20)
        ------------------
        * Fix bugs
        
        0.2.3 (2011-03-09)
        ------------------
        * Fix bugs
        
        0.2.2 (2011-03-07)
        ------------------
        * Fix could not run under python 2.4
        * Support edge colors
        
        0.2.1 (2011-02-28)
        ------------------
        * Add default_shape attribute to diagram
        
        0.2.0 (2011-02-27)
        ------------------
        * Add metrix parameters for edge label: edge_height, edge_length
        * Fix bugs
        
        0.1.7 (2011-01-21)
        ------------------
        * Fix TeX exporting in Sphinx extension
        
        0.1.6 (2011-01-15)
        ------------------
        * Support blockdiag-0.6.3
        * Fix bugs
        
        0.1.5 (2011-01-15)
        ------------------
        * Draw activity on lifelines
        * Support both direction edge with '=>' operator
        
        0.1.4 (2011-01-13)
        ------------------
        * Change synxtax around edges
        
        0.1.3 (2011-01-12)
        ------------------
        * Support diagonal edge
        * Fix bugs
        
        0.1.2 (2011-01-11)
        ------------------
        * Support nested edges
        * Add edge attributes; return, dir
        * Add sphinx extention module(sphinxcontrib_seqdiag)
        * Fix bugs
        
        0.1.1 (2011-01-11)
        ------------------
        * Fix bugs about layouting
        
        0.1.0 (2011-01-08)
        ------------------
        * first release
        
        
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