This file is indexed.

/usr/share/pyshared/blockdiag-1.3.2.egg-info/PKG-INFO is in python-blockdiag 1.3.2-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
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
Metadata-Version: 1.1
Name: blockdiag
Version: 1.3.2
Summary: blockdiag generates block-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/blockdiag
Description: `blockdiag` generate block-diagram image file from spec-text file.
        
        Features
        ========
        * Generate block-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/blockdiag/build/html/index.html>`_ .
        
        Setup
        =====
        
        by easy_install
        ----------------
        Make environment::
        
           $ easy_install blockdiag
        
        If you want to export as PDF format, give pdf arguments::
        
           $ easy_install "blockdiag[pdf]"
        
        by buildout
        ------------
        Make environment::
        
           $ hg clone http://bitbucket.org/tk0miya/blockdiag
           $ cd blockdiag
           $ python bootstrap.py
           $ bin/buildout
        
        Copy and modify ini file. example::
        
           $ cp <blockdiag 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/blockdiag/build/html/index.html>`_ .
        
        simple.diag
        ------------
        simple.diag is simply define nodes and transitions by dot-like text format::
        
            diagram admin {
              top_page -> config -> config_edit -> config_confirm -> top_page;
            }
        
        screen.diag
        ------------
        screen.diag is more complexly sample. diaglam nodes have a alternative label
        and some transitions::
        
            diagram admin {
              top_page [label = "Top page"];
        
              foo_index [label = "List of FOOs"];
              foo_detail [label = "Detail FOO"];
              foo_add [label = "Add FOO"];
              foo_add_confirm [label = "Add FOO (confirm)"];
              foo_edit [label = "Edit FOO"];
              foo_edit_confirm [label = "Edit FOO (confirm)"];
              foo_delete_confirm [label = "Delete FOO (confirm)"];
        
              bar_detail [label = "Detail of BAR"];
              bar_edit [label = "Edit BAR"];
              bar_edit_confirm [label = "Edit BAR (confirm)"];
        
              logout;
        
              top_page -> foo_index;
              top_page -> bar_detail;
        
              foo_index -> foo_detail;
                           foo_detail -> foo_edit;
                           foo_detail -> foo_delete_confirm;
              foo_index -> foo_add -> foo_add_confirm -> foo_index;
              foo_index -> foo_edit -> foo_edit_confirm -> foo_index;
              foo_index -> foo_delete_confirm -> foo_index;
        
              bar_detail -> bar_edit -> bar_edit_confirm -> bar_detail;
            }
        
        
        Usage
        =====
        Execute blockdiag command::
        
           $ blockdiag simple.diag
           $ ls simple.png
           simple.png
        
        
        Requirements
        ============
        * Python 2.6, 2.7, 3.2, 3.3
        * Pillow 2.2.1
        * funcparserlib 0.3.6
        * setuptools
        
        
        License
        =======
        Apache License 2.0
        
        
        History
        =======
        
        1.3.2 (2013-11-19)
        ------------------
        * Fix bugs
        
        1.3.1 (2013-10-22)
        ------------------
        * Fix bugs
        
        1.3.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
        
        1.2.4 (2012-11-21)
        ------------------
        * Fix bugs
        
        1.2.3 (2012-11-05)
        ------------------
        * Fix bugs
        
        1.2.2 (2012-10-28)
        ------------------
        * Fix bugs
        
        1.2.1 (2012-10-28)
        ------------------
        * Add external imagedraw plugin supports
        * Add node attribute: label_orientation*
        * Fix bugs
        
        1.2.0 (2012-10-22)
        ------------------
        * Optimize algorithm for rendering shadow
        * Add options to docutils directive
        * Fix bugs
        
        1.1.8 (2012-09-28)
        ------------------
        * Add --ignore-pil option
        * Fix bugs
        
        1.1.7 (2012-09-20)
        ------------------
        * Add diagram attribute: shadow_style
        * Add font path for centos 6.2
        * Add a setting 'antialias' in the configuration file
        * Fix bugs
        
        1.1.6 (2012-06-06)
        ------------------
        * Support for readthedocs.org
        * reST directive supports :caption: option
        * Fix bugs
        
        1.1.5 (2012-04-22)
        ------------------
        * Embed source code to SVG document as description
        * Fix bugs
        
        1.1.4 (2012-03-15)
        ------------------
        * Add new edge.hstyles: oneone, onemany, manyone, manymany
        * Add edge attribute: description (for build description-tables)
        * Fix bugs
        
        1.1.3 (2012-02-13)
        ------------------
        * Add new edge type for data-models (thanks to David Lang)
        * Add --no-transparency option
        * Fix bugs
        
        1.1.2 (2011-12-26)
        ------------------
        * Support font-index for TrueType Font Collections (.ttc file)
        * Allow to use reST syntax in descriptions of nodes
        * Fix bugs
        
        1.1.1 (2011-11-27)
        ------------------
        * Add node attribute: href (thanks to @r_rudi!)
        * Fix bugs
        
        1.1.0 (2011-11-19)
        ------------------
        * Add shape: square and circle
        * Add fontfamily attribute for switching fontface
        * Fix bugs
        
        1.0.3 (2011-11-13)
        ------------------
        * Add plugin: attributes
        * Change plugin syntax; (cf. plugin attributes [attr = value, attr, value])
        * Fix bugs
        
        1.0.2 (2011-11-07)
        ------------------
        * Fix bugs
        
        1.0.1 (2011-11-06)
        ------------------
        * Add group attribute: shape
        * Fix bugs
        
        1.0.0 (2011-11-04)
        ------------------
        * Add node attribute: linecolor
        * Rename diagram attributes:
           * fontsize -> default_fontsize
           * default_line_color -> default_linecolor
           * default_text_color -> default_textcolor
        * Add docutils extention
        * Fix bugs
        
        0.9.7 (2011-11-01)
        ------------------
        * Add node attribute: fontsize
        * Add edge attributes: thick, fontsize
        * Add group attribute: fontsize
        * Change color of shadow in PDF mode
        * Add class feature (experimental)
        * Add handler-plugin framework (experimental)
        
        0.9.6 (2011-10-22)
        ------------------
        * node.style supports dashed_array format style
        * Fix bugs
        
        0.9.5 (2011-10-19)
        ------------------
        * Add node attributes: width and height
        * Fix bugs
        
        0.9.4 (2011-10-07)
        ------------------
        * Fix bugs
        
        0.9.3 (2011-10-06)
        ------------------
        * Replace SVG core by original's (simplesvg.py)
        * Refactored
        * Fix bugs
        
        0.9.2 (2011-09-30)
        ------------------
        * Add node attribute: textcolor
        * Add group attribute: textcolor
        * Add edge attribute: textcolor
        * Add diagram attributes: default_text_attribute
        * Fix beginpoint shape and endpoint shape were reversed
        * Fix bugs
        
        0.9.1 (2011-09-26)
        ------------------
        * Add diagram attributes: default_node_color, default_group_color and default_line_color
        * Fix bugs
        
        0.9.0 (2011-09-25)
        ------------------
        * Add icon attribute to node
        * Make transparency to background of PNG images 
        * Fix bugs
        
        0.8.9 (2011-08-09)
        ------------------
        * Fix bugs
        
        0.8.8 (2011-08-08)
        ------------------
        * Fix bugs
        
        0.8.7 (2011-08-06)
        ------------------
        * Fix bugs
        
        0.8.6 (2011-08-01)
        ------------------
        * Support Pillow as replacement of PIL (experimental)
        * Fix bugs
        
        0.8.5 (2011-07-31)
        ------------------
        * Allow dot characters in node_id
        * Fix bugs
        
        0.8.4 (2011-07-05)
        ------------------
        * Fix bugs
        
        0.8.3 (2011-07-03)
        ------------------
        * Support input from stdin
        * Fix bugs
        
        0.8.2 (2011-06-29)
        ------------------
        * Add node.stacked
        * Add node shapes: dots, none
        * Add hiragino-font to font search list
        * Support background image fetching from web
        * Add diagram.edge_layout (experimental)
        * Fix bugs
        
        0.8.1 (2011-05-14)
        ------------------
        * Change license to Apache License 2.0
        * Fix bugs
        
        0.8.0 (2011-05-04)
        ------------------
        * Add --separate option and --version option
        * Fix bugs
        
        0.7.8 (2011-04-19)
        ------------------
        * Update layout engine
        * Update requirements: PIL >= 1.1.5
        * Update parser for tokenize performance
        * Add --nodoctype option
        * Fix bugs
        * Add many testcases
        
        0.7.7 (2011-03-29)
        ------------------
        * Fix bugs
        
        0.7.6 (2011-03-26)
        ------------------
        * Add new layout manager for portrait edges
        * Fix bugs
        
        0.7.5 (2011-03-20)
        ------------------
        * Support multiple nodes relations (cf. A -> B, C)
        * Support node group declaration at attribute of nodes
        * Fix bugs
        
        0.7.4 (2011-03-08)
        ------------------
        * Fix bugs
        
        0.7.3 (2011-03-02)
        ------------------
        * Use UTF-8 characters as Name token (by @swtw7466)
        * Fix htmlentities included in labels was not escaped on SVG images
        * Fix bugs
        
        0.7.2 (2011-02-28)
        ------------------
        * Add default_shape attribute to diagram
        
        0.7.1 (2011-02-27)
        ------------------
        * Fix edge has broken with antialias option
        
        0.7.0 (2011-02-25)
        ------------------
        * Support node shape
        
        0.6.7 (2011-02-12)
        ------------------
        * Change noderenderer interface to new style
        * Render dashed ellipse more clearly (contributed by @cocoatomo)
        * Support PDF exporting
        
        0.6.6 (2011-01-31)
        ------------------
        * Support diagram.shape_namespace
        * Add new node shapes; mail, cloud, beginpoint, endpoint, minidiamond, actor
        * Support plug-in structure to install node shapes
        * Fix bugs
        
        0.6.5 (2011-01-18)
        ------------------
        * Support node shape (experimental)
        
        0.6.4 (2011-01-17)
        ------------------
        * Fix bugs
        
        0.6.3 (2011-01-15)
        ------------------
        * Fix bugs
        
        0.6.2 (2011-01-08)
        ------------------
        * Fix bugs
        
        0.6.1 (2011-01-07)
        ------------------
        * Implement 'folded' attribute for edge
        * Refactor layout engine
        
        0.6 (2011-01-02)
        ------------------
        * Support nested groups.
        
        0.5.5 (2010-12-24)
        ------------------
        * Specify direction of edges as syntax (->, --, <-, <->)
        * Fix bugs.
        
        0.5.4 (2010-12-23)
        ------------------
        * Remove debug codes.
        
        0.5.3 (2010-12-23)
        ------------------
        * Support NodeGroup.label.
        * Implement --separate option (experimental)
        * Fix right-up edge overrapped on other nodes.
        * Support configration file: .blockdiagrc
        
        0.5.2 (2010-11-06)
        ------------------
        * Fix unicode errors for UTF-8'ed SVG exportion.
        * Refactoring codes for running on GAE.
        
        0.5.1 (2010-10-26)
        ------------------
        * Fix license text on diagparser.py
        * Update layout engine.
        
        0.5 (2010-10-15)
        ------------------
        * Support background-image of node (SVG)
        * Support labels for edge.
        * Fix bugs.
        
        0.4.2 (2010-10-10)
        ------------------
        * Support background-color of node groups.
        * Draw edge has jumped at edge's cross-points.
        * Fix bugs.
        
        0.4.1 (2010-10-07)
        ------------------
        * Fix bugs.
        
        0.4 (2010-10-07)
        ------------------
        * Support SVG exporting.
        * Support dashed edge drawing.
        * Support background image of nodes (PNG only)
        
        0.3.1 (2010-09-29)
        ------------------
        * Fasten anti-alias process.
        * Fix text was broken on windows.
        
        0.3 (2010-09-26)
        ------------------
        * Add --antialias option.
        * Fix bugs.
        
        0.2.2 (2010-09-25)
        ------------------
        * Fix edge bugs.
        
        0.2.1 (2010-09-25)
        ------------------
        * Fix bugs.
        * Fix package style.
        
        0.2 (2010-09-23)
        ------------------
        * Update layout engine.
        * Support group { ... } sentence for create Node-Groups.
        * Support numbered badge on node (cf. A [numbered = 5])
        
        0.1 (2010-09-20)
        -----------------
        * first release
        
        
Keywords: diagram,generator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Text Processing :: Markup