本文整理汇总了Python中link.Link.write方法的典型用法代码示例。如果您正苦于以下问题:Python Link.write方法的具体用法?Python Link.write怎么用?Python Link.write使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类link.Link
的用法示例。
在下文中一共展示了Link.write方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post_link
# 需要导入模块: from link import Link [as 别名]
# 或者: from link.Link import write [as 别名]
def post_link():
'''
Performed when a link is POSTed.
Inserts the (sanitized) data into the database. The description is parsed as Markdown
and saved in HTML, while allowing a few attributes
------------------
NOTE: `request` is global and is implicitly passed as a parameter. It would probably
be better to pass the data as a param for testing purposes.
------------------
NOTE: Maybe save the raw data as Markdown and only render it once needed ? Makes editing
posts easier, but puts more load on the server.
'''
allowed_tags = ("p", "h1", "h2", "h3", "h4", "h5", "h6", "b", "em", "small", "code", "i", "pre", "strong", "table", 'thead', 'tbody', 'th', 'tr', 'td', 'ul', 'ol', 'li', 'input')
allowed_attrs = ('type', 'disabled', 'checked')
title = bleach.clean(request.form['title'])
desc = bleach.clean(request.form['desc'], tags=allowed_tags, attributes=allowed_attrs)
url = bleach.clean(request.form["url"])
timestamp = time.time()
tags = []
post = Link(title, url, desc, timestamp)
post.set_tags(bleach.clean(request.form['tags']))
post.write()
return redirect("/")