Here's one more reminder note for anybody else that goes with any lazy-
loading technique. You exchange compile time errors for run-time
errors. So after I changed my 200+ pages to lazy-loading, I then had
to manually test all of them (and still afraid I might have missed
some).
WebApp-Improved let's you specify a string containing the
module.classname, as shown below.
application = webapp.WSGIApplication([ ('/',
'web.HomeCMS.Home'),
("/reportUsers",
'web.adminReports.ReportUsers'), ... etc...
The are several possible mistakes:
1) Leaving out the period
2) Mistyping the module name (or the class name)
3) Specifying the wrong module name that won't have the class in it
(for example, what if ReportUsers was in "web.userreports" instead of
"web.adminReports"
Neal
--
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.