hi, im trying to use zipped modules for my app (python) because i have an app that is the same in the admin interface for all tenants but the frontend behaviour and templates are different.
what im trying to do is have a common logic (my app(s) like a blogapp and one to handle images) and then have different tennants using that logic. then i have a 'frontends' module with different apps in it with a main.py and a templates directory all in zipped folders i have a dispatcher.py that should dispatch the requests to the right frontend app. it works kind of right if the packages are simple folders. as soon as i zip those packages i have issues with the template rendering because in my case tornado does not see the zipped app as a folder and cant open the template file. is there a way to get this working? the structure is something like: /app.yaml /frontends/app1.zip /frontends/app2.zip /frontends-dispatcher.py -- the dispatcher which routes to the right app in /frontends /blogapp /imageapp /tornado any suggestions are highly appreciated! ...even if i have to restructure the whole thing. thx -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
