Hi I was trying to run this project sphinx-gsoc 2009
http://bitbucket.org/gminick/sphinx-gsoc2009/ using mod_wsgi ... my
understanding of mod_wsgi is not much but what I did understand is
that you create an interface like this :
def application(environ, start_response):
status = '200 OK'
output = 'Hello World!'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
Now I tried to do the same thing with this project to serve the static
files but could not understand how multiple files would be serverd (ie
the .css and .js files with comments on them) It would be great if
some body could give an idea of how the development server of this
project runs and how i can make it work with apache using mod_wsgi
--
A-M-I-T S|S
--
You received this message because you are subscribed to the Google Groups
"sphinx-dev" group.
To post to this group, send email to [email protected].
For more options, visit this group at
http://groups.google.com/group/sphinx-dev?hl=.