johnsensible / django-sendfile

xsendfile etc wrapper
http://www.sensibledevelopment.com/2010/11/django-sendfile-an-for-abstraction-large-file-serving-in-django/
BSD 3-Clause "New" or "Revised" License
481 stars 98 forks source link

PyPi page looks strange #47

Open guettli opened 8 years ago

guettli commented 8 years ago

AFAIK pypi does not understand markdown syntax.

The page of django-sendfile looks strange:

https://pypi.python.org/pypi/django-sendfile

AFAIK there is online converter to convert markdown to restructured text.

johnsensible commented 8 years ago

It actually is an rst file, but for some reason (that I've never really got round to looking into) it doesn't seem to render on PyPi properly.

I'm guessing there's a subtle syntax difference between it and github.

Though possibly it's related to this:

http://stackoverflow.com/questions/16367770/my-rst-readme-is-not-formatted-on-pypi-python-org

(as it includes links to other projects)

On 11/02/16 08:27, Thomas Güttler wrote:

AFAIK pypi does not understand markdown syntax.

The page of django-sendfile looks strange:

https://pypi.python.org/pypi/django-sendfile

AFAIK there is online converter to convert markdown to restructured text.

— Reply to this email directly or view it on GitHub https://github.com/johnsensible/django-sendfile/issues/47.

vstoykov commented 8 years ago

The problem is missing URL for mod_rewrite. There are two options:

  1. Remove the underscore after mod_rewrite in the text
  2. At the bottom of the file add URL to somewhere (for example documentation for mod_rewrite

    .. _mod_rewrite: http://httpd.apache.org/docs/current/mod/mod_rewrite.html

@johnsensible I don't know which option do you prefer