如何将 ACL 与 webapp2 一起使用?
I'm a huge fan of Tipfy, but it's no longer being maintained. Webapp2 seems to have take its place, so I was wondering: how do I use access control lists if I'm using webapp2 instead of Tipfy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将其移植到 webapp2。这应该不难。这里有一些提示:
cached_property
在webapp2.cached_property
中可用(它们是等效的)get_request()
的调用应该使用webapp2.get_request()
PickleProperty
即可在您的端口中使用。CURRENT_VERSION_ID
在os.environ
中可用(它是应用程序版本)。其他一切都应该按原样工作(快速浏览后)。该模块中的依赖项很少;它主要是一些数据存储模型。
You'd need to port it to webapp2. It should not be hard. Here're a few tips:
cached_property
is available inwebapp2.cached_property
(they are equivalent)get_request()
should usewebapp2.get_request()
PickleProperty
to use in your port.CURRENT_VERSION_ID
is available inos.environ
(it is the app version).Everything else should work as it is (after taking a quick look). There are few dependencies in that module; it is mostly some datastore models.