diff --git a/README b/README index e3556b02..d3802c89 100644 --- a/README +++ b/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] - + diff --git a/flightdeck/base/views.py b/flightdeck/base/views.py index 231dc39e..229776d6 100644 --- a/flightdeck/base/views.py +++ b/flightdeck/base/views.py @@ -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: "

Hello World

" + """ return HttpResponse("

Hello World

")