本文整理汇总了Python中profiles.models.Profile.css_version方法的典型用法代码示例。如果您正苦于以下问题:Python Profile.css_version方法的具体用法?Python Profile.css_version怎么用?Python Profile.css_version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类profiles.models.Profile
的用法示例。
在下文中一共展示了Profile.css_version方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_profile
# 需要导入模块: from profiles.models import Profile [as 别名]
# 或者: from profiles.models.Profile import css_version [as 别名]
def create_profile(self, **kwargs):
profile = Profile()
# Raw Data
profile.request = self.request
profile.browscap = self.browscap.__dict__
# Platform
profile.os = self.os()
profile.ip = self.request["REMOTE_ADDR"]
# Browser
profile.browser = self.browser()
profile.is_mobile = self.browscap.is_mobile()
profile.http_protocol = self.request["SERVER_PROTOCOL"]
if self.browscap.supports_java():
profile.java = "supported"
if self.browscap.supports_javascript():
profile.javascript = "supported"
if self.browscap.supports_iframes():
profile.iframes = "supported"
if self.browscap.supports_frames():
profile.frames = "supported"
if self.browscap.supports_tables():
profile.tables = "supported"
if self.browscap.css_version() != 0:
profile.css = "supported"
profile.css_version = self.browscap.css_version()
if "gzip" in self.request["HTTP_ACCEPT_ENCODING"].lower():
profile.gzip = "supported"
profile.save(**kwargs)
return profile