Hi,

   This can be done if my application was written in the 'webapp'
framework, but as I mentioned earlier my project is done using
Django.

There is no
def main():
    app = webapp.WSGIApplication()

URL mapping is done through the url.py.

Thanks,
Arun Shanker Prasad.

On Feb 27, 8:35 pm, Iain Wade <iain.w...@gmail.com> wrote:
> you can specify the zip file when setup in python:
>
>   def main():
>     app = webapp.WSGIApplication(
>             [('/', MainPage),
>              ('/static/(.*)', zipserve.make_zip_handler('staticfiles.zip')),
>             ])
>
> --Iain
>
> On Sat, Feb 28, 2009 at 1:07 AM, Arun Shanker Prasad
>
> <arunshankerpra...@gmail.com> wrote:
>
> > Hi All,
>
> >  I tried to include the TinyMCE scripts as a zip file and serve it
> > using zipserve. I included the URL config in the app.yaml,
>
> > - url: /tinyMCE/.*
> >  script: $PYTHON_LIB/google/appengine/ext/zipserve
>
> > But this needs the tinyMCE.zip to be in the root path of my App (which
> > is a Django app). So this makes the zip outside my project source. I
> > was wondering if I could move these to the "project/media/js" folder
> > along with all of my other scripts?
>
> > Thanks,
> > Arun Shanker Prasad.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to