licenses updated, test for docutils (admin automatic documentation)

This commit is contained in:
zalun 2010-01-24 16:43:56 +00:00
Родитель fe93e1a76d
Коммит 6ae9ebadf0
2 изменённых файлов: 13 добавлений и 2 удалений

10
README
Просмотреть файл

@ -3,9 +3,15 @@ FlightDeck is a SDK for creating JetPack
Uses following third-party software:
* Python (http://www.python.org/) [GPL-compatible]
* Docutils (http://docutils.sourceforge.net/) [Python compatible]
* WSGIRef (http://www.python.org/doc/2.5.2/lib/module-wsgiref.html) [Python compatible]
* Django (http://www.djangoproject.com/) [BSD]
* VirtualEnv (http://pypi.python.org/pypi/virtualenv) [MIT]
* Pip (http://pip.openplans.org/) [TBC]
* Pip (http://pip.openplans.org/) [?]
* Yolk (http://tools.assembla.com/yolk/) [GPL-2]
* MySQL-python (http://mysql-python.sourceforge.net/) [?]
* South (http://south.aeracode.org/) [Apache 2.0]
* Grappelli (http://code.google.com/p/django-grappelli/) [New BSD]
* PIL (http://www.pythonware.com/products/pil/) [free custom - http://www.pythonware.com/products/pil/license.htm]
* Mootools (http://mootools.net/) [MIT]

Просмотреть файл

@ -1,4 +1,9 @@
from django.http import Http404, HttpResponseRedirect, HttpResponse
def placeholder(req):
"""
Display simple text. Just a proof the system is working
@return HttpResponse: "<h1>Hello World</h1>"
"""
return HttpResponse("<h1>Hello World</h1>")