本文整理汇总了Python中post.Post.url_friendly_text方法的典型用法代码示例。如果您正苦于以下问题:Python Post.url_friendly_text方法的具体用法?Python Post.url_friendly_text怎么用?Python Post.url_friendly_text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类post.Post
的用法示例。
在下文中一共展示了Post.url_friendly_text方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: publish
# 需要导入模块: from post import Post [as 别名]
# 或者: from post.Post import url_friendly_text [as 别名]
def publish(post_meta):
doc_id = Post.url_friendly_text(post_meta["title"])
# Open the database
couch = couchdb.Server()
db = couch["mrvoxel_blog"]
# Load the database settings
blog_settings = settings.loadSettings(db)
# Check to see if we have a valid category
if not post_meta["category"] in blog_settings["blog_categories"]:
raise ValueError("No such category: %s" % post_meta["category"])
print "checking for [%s]" % doc_id
# Load the post (if it exists in our database)
post = Post.load(db, doc_id)
# If it exists, warn the user
if post:
raw = raw_input("This will replace an existing post of the same title...\nContinue? (y/N)")
# if the existing post is published but we're trying to preview
if (post["published"] == False) and post_meta["published"]:
raise ValueError("Cannot yet preview posts that are already published")
if raw != "y":
print "Canceling publish."
return None
else:
for k, v in post_meta.iteritems():
if k not in ["published", "title"]:
print k
post[k] = v
print post
"""
post.markdown = mdtext
post.html = html
post.author = author
post.timestamp = timestamp
post.published = not preview
post.title = title
post.tags = tags
post.category = category
"""
post.store(db)
else:
post = Post.create(**post_meta)
print post["_id"]
post.store(db)
print post["_id"]
return post["_id"]