本文整理汇总了Python中torlite.model.mpost.MPost类的典型用法代码示例。如果您正苦于以下问题:Python MPost类的具体用法?Python MPost怎么用?Python MPost使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MPost类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: do1
def do1():
mpost = MPost()
recs = mpost.query_all()
for rec in recs:
text2 = html2text.html2text(tornado.escape.xhtml_unescape(rec.cnt_html))
print(text2)
writer.add_document(
title=rec.title,
type='<span style="color:green;">[文档]</span>',
link='/post/{0}.html'.format(rec.uid),
content=text2
)
示例2: initialize
def initialize(self):
self.mpost = MPost()
self.mcat = MCatalog()
self.cats = self.mcat.query_all()
self.mspec = SpesubModel()
self.specs = self.mspec.get_all()
self.mpost2catalog = MPost2Catalog()
示例3: render
def render(self, num, recent, with_date=True, with_catalog=True):
self.mpost = MPost()
recs = self.mpost.query_recent_most(num, recent)
kwd = {
'with_date': with_date,
'with_catalog': with_catalog,
}
return self.render_string('tplite/modules/post_list.html', recs=recs, kwd=kwd)
示例4: render
def render(self, current_id):
self.mpost = MPost()
next_record = self.mpost.get_next_record(current_id)
if next_record is None:
outstr = '<a>已经是最新一篇了</a>'
else:
outstr = '''<a href="/post/{0}.html">下一篇</a>'''.format(next_record.uid)
return outstr
示例5: previous_post_link
class previous_post_link(tornado.web.UIModule):
def render(self, current_id):
self.mpost = MPost()
prev_record = self.mpost.get_previous_record(current_id)
if prev_record is None:
outstr = '已经是最后一篇了'
else:
outstr = '''<a href="/post/{0}.html">上一篇</a>'''.format(prev_record.uid, prev_record.title)
return outstr
示例6: next_post_link
class next_post_link(tornado.web.UIModule):
def render(self, current_id):
self.mpost = MPost()
next_record = self.mpost.get_next_record(current_id)
if next_record is None:
outstr = '已经是最新一篇了'
else:
outstr = '''<a href="/post/{0}.html">下一篇</a>'''.format(next_record.uid)
return outstr
示例7: post_cat_random
class post_cat_random(tornado.web.UIModule):
def render(self, cat_id, num, with_date=True, with_catalog=True):
self.mpost = MPost()
recs = self.mpost.query_cat_random(cat_id, num)
kwd = {
'with_date': with_date,
'with_catalog': with_catalog,
}
return self.render_string('{0}/modules/post_list.html'.format(config.torlite_template_name), recs=recs, kwd=kwd)
示例8: post_most_view
class post_most_view(tornado.web.UIModule):
def render(self, num, with_date=True, with_catalog=True):
self.mpost = MPost()
recs = self.mpost.query_most(num)
kwd = {
'with_date': with_date,
'with_catalog': with_catalog,
}
return self.render_string('tplite/modules/post_list.html', recs=recs, kwd=kwd)
示例9: IndexHandler
class IndexHandler(tornado.web.RequestHandler):
def initialize(self):
self.mpost = MPost()
self.mcat = MCatalog()
def get(self, input=''):
if input == '':
self.index()
else:
self.render('/html/404.html')
def index(self):
dbdata = self.mpost.query_cat_recent(5, 16)
recent = self.mpost.query_recent(8)
self.render('tplite/index/index.html',
view=dbdata,
recent=recent,
unescape=tornado.escape.xhtml_unescape,
format_yr=tools.format_yr)
示例10: build_whoosh_database
def build_whoosh_database():
analyzer = ChineseAnalyzer()
schema = Schema(title=TEXT(stored=True, analyzer=analyzer), type=TEXT(stored=True), link=ID(stored=True),
content=TEXT(stored=True, analyzer=analyzer))
ix = create_in(whoosh_database, schema)
writer = ix.writer()
mpost = MPost()
recs = mpost.query_all()
for rec in recs:
text2 = html2text.html2text(tornado.escape.xhtml_unescape(rec.cnt_html))
print(text2)
writer.add_document(
title=rec.title,
type='<span style="color:blue;">[文档]</span>',
link='/post/{0}.html'.format(rec.uid),
content=text2
)
writer.commit()
示例11: render
def render(self, cat_id, num=10, with_catalog=True, with_date=True):
self.mpost = MPost()
self.mpost2cat = MPost2Catalog()
recs = self.mpost.query_cat_recent(cat_id, num)
kwd = {
'with_catalog': with_catalog,
'with_date': with_date,
}
return self.render_string('{0}/modules/post_list.html'.format(config.torlite_template_name),
recs=recs,
kwd=kwd, )
示例12: initialize
def initialize(self):
self.muser = MUser()
self.mpage = MPage()
self.mdb = MPost()
self.mcat = MCatalog()
self.cats = self.mcat.query_all()
self.mspec = SpesubModel()
if self.get_current_user():
self.userinfo = self.muser.get_by_id(self.get_current_user())
else:
self.userinfo = None
示例13: initialize
def initialize(self):
self.init()
self.mpost = MPost()
self.mcat = MCatalog()
self.cats = self.mcat.query_all()
self.mpost_hist = MPostHist()
self.mpost2catalog = MPost2Catalog()
self.mpost2reply = MPost2Reply()
self.mapp2tag = MPost2Label()
self.mrel = MRelation()
self.tmpl_router = 'post'
示例14: initialize
def initialize(self):
self.init()
self.muser = MUser()
self.mpost = MPost()
self.mcat = MCatalog()
self.cats = self.mcat.query_all()
self.mpost2catalog = MPost2Catalog()
if self.get_current_user():
self.userinfo = self.muser.get_by_id(self.get_current_user())
else:
self.userinfo = None
示例15: initialize
def initialize(self):
self.mapp = MApp()
self.mpost = MPost()
self.rel_post2app = MRelPost2App()
self.rel_app2post = MRelApp2Post()
self.muser = MUser()
if self.get_current_user():
self.userinfo = self.muser.get_by_id(self.get_current_user())
else:
self.userinfo = None
self.mvip = None