This file is indexed.

/usr/share/pyshared/Blogofile-0.8b1.egg-info/PKG-INFO is in blogofile 0.8b1-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
Metadata-Version: 1.1
Name: Blogofile
Version: 0.8b1
Summary: A static website compiler and blog engine
Home-page: http://www.blogofile.com
Author: Ryan McGuire, Doug Latornell, and the Blogofile Contributors
Author-email: blogofile-discuss@googlegroups.com
License: MIT
Description: Blogofile is a static website compiler that lets you use various template
        libraries (Mako, Jinja2),
        and various markup languages (reStructuredText, Markdown, Textile)
        to create sites that can be served from any web server you like.
        
        Version 0.8 of Blogofile breaks out the core static site compiler
        and gives it a plugin interface.
        That allows features like the blog engine that was Blogofile's
        original raison d`ĂȘtre to be built on top of the core.
        
        `blogofile_blog`_ is a blog engine plugin created by the Blogofile developers.
        With it installed you get a simple blog engine that requires no
        database and no special hosting environment.
        You customize a set of Mako templates,
        create posts in reStructuredText, Markdown, or Textile, (or even plain HTML)
        and blogofile generates your entire blog as
        plain HTML, CSS, images, and Atom/RSS feeds
        which you can then upload to any old web server you like.
        No CGI or scripting environment is needed on the server.
        
        See the `Blogofile website`_ for an example of a Blogofile-generated
        site that includes a blog,
        and check out the `project docs`_ for a quick-start guide,
        and detailed usage instructions.
        
        Or, if you're the "just get it done sort",
        create a virtualenv,
        and dive in with::
        
          pip install -U Blogofile
          pip install -U blogofile_blog
        
        .. _blogofile_blog: http://pypi.python.org/pypi/blogofile_blog/
        .. _Blogofile website: http://www.blogofile.com/
        .. _project docs: http://blogofile.readthedocs.org/en/latest/
        
        
        0.8b1
        =====
        
        If you've been using the ``plugins`` branch from GitHub but haven't updated
        in a while you should take note of the following.
        
        Bug Fixes
        ---------
        
        - Fix a typo in the README.
          See  https://github.com/EnigmaCurry/blogofile/pull/127
        
        - Fix an issue with the template lookup order whereby user's templates
          failed to override plugin site_src template of the same name.
          See https://github.com/EnigmaCurry/blogofile/issues/126
        
        - Fix permalinks in RSS feeds for Apple Mail.
          See https://github.com/EnigmaCurry/blogofile/pull/114
        
        - Fix a class name reference error in the Jinga2 template loader.
          See https://github.com/EnigmaCurry/blogofile/issues/105
        
        
        Features
        --------
        
        - The documentation source files have been moved into the project
          repository.
          They are built and rendered at http://docs.blogofile.com/ thanks to
          the readthedocs.org service.
        
        - The init sub-command syntax and functionality has changed; see
          ``blogofile help init``.
        
        - The configuration system has been refactored.
          The default configuration settings are now in the ``default_config.py``
          module.
        
        - As a result of the refactoring of the initialization function,
          and the configuration system,
          the ``site_init`` directory has been eliminated.
        
        - Improved Unicode handling in slugs.
          See https://github.com/EnigmaCurry/blogofile/issues/124
        
        - The codebase has been unified for Python 2.6, 2.7 and 3.2
          (no 2to3 or 3to2 conversion required).
        
        - The command line completion feature has been removed so as to avoid
          maintaining a bundled version of the ``argparse`` library.
          ``argparse`` is included in the standard library for Python 2.7 and
          3.2+.
          ``setup.py`` will install it from PyPI for Python 2.6.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Environment :: Console
Classifier: Natural Language :: English