本文整理汇总了Python中preferences.Preferences.createFromString方法的典型用法代码示例。如果您正苦于以下问题:Python Preferences.createFromString方法的具体用法?Python Preferences.createFromString怎么用?Python Preferences.createFromString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类preferences.Preferences
的用法示例。
在下文中一共展示了Preferences.createFromString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: home
# 需要导入模块: from preferences import Preferences [as 别名]
# 或者: from preferences.Preferences import createFromString [as 别名]
def home(request):
context = RequestContext(request)
context_dict = get_context_dict(request)
menu_path = os.path.join(conf.settings.PROJECT_ROOT, 'menu.txt')
menu = MenuParser(menu_path)
menu = menu.parse_menu()
preferences = context_dict['userprofile'].preferences
preferences = Preferences.createFromString(preferences)
matches = menu.match_with(preferences)
html = ""
for item in matches.get_items(): # TODO: make menu object iterable
html += "<div style='margin-bottom: 4px; width: 400px; float left;'>"
html += "<font style='text-decoration: underline;'>"+item.name+"</font><font color='black'> for "+item.meal+" @ "+item.location+"</font>"
html += "</div>"
context_dict['matches'] = html
return render_to_response("foodfinder/home.html", context_dict, context)