On Wednesday, June 29, 2011 5:08:26 PM UTC-4, Richard wrote: > > It the app associate to the slice... I made a comment. If the > product/create.load view was not created the page at app/product/create will > be blank... Create the product/create.load view fix it and may be it > requires to create product/create.html too since I create both... But didn't > test if only one of both is enought....
Yes, that's the same issue as has been discussed before regarding generic views and is not unique to that slice. Due to a potential security issue, generic views are now disabled by default and can be enabled by specifying response.generic_patterns. The 'welcome' app includes a statement in db.py that enables all generic views, but only for local requests. Also, response.generic_patterns is not getting passed to non-ajax components, so generic views aren't working at all for non-ajax components, unless you explicitly set response.view='generic.[extension]'. This problem will be fixed soon. Anthony

