From: Diane Trout Date: Fri, 29 Aug 2008 00:27:04 +0000 (+0000) Subject: return the project xml config file as text/plain so you can read it in X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=af5ec66d499acf5253bf8dd7098f5bb533e90d9a return the project xml config file as text/plain so you can read it in your browser. --- diff --git a/htswfrontend/htswfrontend/analys_track/main.py b/htswfrontend/htswfrontend/analys_track/main.py index a625145..015a69c 100644 --- a/htswfrontend/htswfrontend/analys_track/main.py +++ b/htswfrontend/htswfrontend/analys_track/main.py @@ -88,4 +88,4 @@ def getProjects(request): except ObjectDoesNotExist: outputfile = "" - return HttpResponse(outputfile) + return HttpResponse(outputfile, mimetype='text/plain')