The project home page links to http://api.rst2a.com/1.0/rst2/html?uri=http://django-tagging.googlecode.com/svn/trunk/docs/overview.txt
This results in a Django server error. Please fix so we can browse docs online.
Comment #1
Posted on May 30, 2012 by Happy BearHere's the page I see when following that link: Page not found (404) Request Method: GET Request URL: http://api.rst2a.com/1.0/rst2/html?uri=http://django-tagging.googlecode.com/svn/trunk/docs/overview.txt Using the URLconf defined in wsgi_iceborg.urls, Django tried these URL patterns, in this order: ^$ ^signup/$ ^admin_tools/ ^admin/$ ^admin/ ^iceborg/ ^analytics/api/alpha/$ ^analytics/api/rules/$ ^feed/ ^api/version-(?P\d+)/login$ ^api/version-(?P\d+)/logout$ ^api/version-(?P\d+)/(?P\w+)/available-feed$ ^api/version-(?P\d+)/get-products$ ^api/version-(?P\d+)/get-product-types$ ^api/version-(?P\d+)/get-feed$ ^api/version-(?P\d+)/get-packages$ ^api/version-(?P\d+)/entitled-packages$ ^api/version-(?P\d+)/register-subscription$ ^api/version-(?P\d+)/get-files$ ^api/version-(?P\d+)/entitled-files$ ^api/version-(?P\d+)/register-push-token$ ^static/(?P.)$ ^media/(?P.)$ The current URL, 1.0/rst2/html, didn't match any of these. You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
Comment #2
Posted on May 30, 2012 by Happy BearI've added a readable version here: https://github.com/inactivist/django-tagging/blob/master/docs/overview.rst
Status: New