当前位置: 首页>>代码示例>>Python>>正文


Python Entry.convert方法代码示例

本文整理汇总了Python中models.Entry.convert方法的典型用法代码示例。如果您正苦于以下问题:Python Entry.convert方法的具体用法?Python Entry.convert怎么用?Python Entry.convert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Entry的用法示例。


在下文中一共展示了Entry.convert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _create_or_edit

# 需要导入模块: from models import Entry [as 别名]
# 或者: from models.Entry import convert [as 别名]
 def _create_or_edit(self, entry_key, status):
     title, slug, markdown, author, kind_name, reference = self.get_argument('title'), \
         self.get_argument('slug', ''), \
         self.get_argument('content', strip=False), \
         self.get_argument('author', None), \
         self.get_argument('kind_name', None), \
         self.get_argument('reference', None)
     # Check title and markdown is empty.
     if not (title and markdown):
         raise SaveException('标题或者内容为空!')
     if not slug:
         slug = title
     slug = Entry.check_slug(slug, entry_key)
     if slug==None:
         raise SlugException('该 Slug 已经存在!')
     now = get_now()
     if entry_key:
         entry = db.get(entry_key)
         if entry.entry_kind.name != 'blog':
             if not author:
                 raise Exception('作者未知!')
             entry.author = author
         entry.title = title
         entry.slug = slug
         entry.markdown = markdown
         entry.html = Entry.convert(markdown)
         entry.abstract = self._process_abstract(markdown)
         if entry.status == 'draft':
             entry.published = now
         else:
             entry.updated = now
         entry.status = status
     else:
         if kind_name not in KINDS:
             raise Exception('非法类型文章!')
         if kind_name == 'blog':
             author = self.current_user.nickname()
         if not author:
             raise Exception('作者未知!')
         entry = Entry(
             entry_kind = KINDS.get(kind_name),
             author = author or self.current_user.nickname(),
             reference = reference,
             title = title,
             slug = slug,
             markdown = markdown,
             html = Entry.convert(markdown),
             abstract = self._process_abstract(markdown),
             status = status,
             published = now
         )
     entry.put()
     return entry
开发者ID:mrwlwan,项目名称:workspace2014,代码行数:55,代码来源:main.py

示例2: post

# 需要导入模块: from models import Entry [as 别名]
# 或者: from models.Entry import convert [as 别名]
 def post(self):
     markdown = self.get_argument('markdown', '', strip=False)
     self.write(Entry.convert(markdown))
开发者ID:mrwlwan,项目名称:workspace2014,代码行数:5,代码来源:main.py

示例3: _process_abstract

# 需要导入模块: from models import Entry [as 别名]
# 或者: from models.Entry import convert [as 别名]
 def _process_abstract(self, markdown, char_count=500):
     markdown = markdown[:char_count]
     return Entry.convert('%s ...' % markdown.rstrip())
开发者ID:mrwlwan,项目名称:workspace2014,代码行数:5,代码来源:main.py


注:本文中的models.Entry.convert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。