如何将 ACL 与 webapp2 一起使用?

发布于 2024-11-26 20:17:54 字数 300 浏览 2 评论 0原文

我是 Tipfy 的忠实粉丝,但它不再得到维护。 Webapp2 似乎已经取代了它的位置,所以我想知道:我如何使用 访问控制列表 如果我使用 webapp2 而不是 Tipfy?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淤浪 2024-12-03 20:17:54

您需要将其移植到 webapp2。这应该不难。这里有一些提示:

  • cached_propertywebapp2.cached_property 中可用(它们是等效的)
  • get_request() 的调用应该使用 webapp2.get_request()
  • 您只需复制 PickleProperty 即可在您的端口中使用。
  • CURRENT_VERSION_IDos.environ 中可用(它是应用程序版本)。

其他一切都应该按原样工作(快速浏览后)。该模块中的依赖项很少;它主要是一些数据存储模型。

You'd need to port it to webapp2. It should not be hard. Here're a few tips:

  • cached_property is available in webapp2.cached_property (they are equivalent)
  • the call to get_request() should use webapp2.get_request()
  • You can simply copy PickleProperty to use in your port.
  • CURRENT_VERSION_ID is available in os.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文