コード例 #1
0
ファイル: mreply2user.py プロジェクト: daimon99/TorCMS
    def update(self, uid, post_data, update_time=False):

        if 'id_spec' in post_data:
            id_spec = post_data['id_spec'][0]
        else:
            id_spec = 0

        if 'src_type' in post_data and post_data['src_type'][0] == '1':
            cnt_html = tools.rst2html(post_data['cnt_md'][0])
        else:
            cnt_html = tools.markdown2html(post_data['cnt_md'][0])

        if update_time:
            entry = CabVoter2Reply.update(
                title=post_data['title'][0],
                date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabVoter2Reply.uid == uid)
        else:
            entry = CabVoter2Reply.update(
                title=post_data['title'][0],
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabVoter2Reply.uid == uid)
        entry.execute()
コード例 #2
0
ファイル: mreply2user.py プロジェクト: tianzhaodong/TorCMS
    def update(self, uid, post_data, update_time=False):

        if 'id_spec' in post_data:
            id_spec = post_data['id_spec'][0]
        else:
            id_spec = 0

        if 'src_type' in post_data and post_data['src_type'][0] == '1':
            cnt_html = tools.rst2html(post_data['cnt_md'][0])
        else:
            cnt_html = tools.markdown2html(post_data['cnt_md'][0])

        if update_time:
            entry = CabVoter2Reply.update(
                title=post_data['title'][0],
                date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabVoter2Reply.uid == uid)
        else:
            entry = CabVoter2Reply.update(
                title=post_data['title'][0],
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabVoter2Reply.uid == uid)
        entry.execute()
コード例 #3
0
ファイル: mreply2user.py プロジェクト: daimon99/TorCMS
 def update_keywords(self, uid, inkeywords):
     entry = CabVoter2Reply.update(keywords=inkeywords).where(
         CabVoter2Reply.uid == uid)
     entry.execute()
コード例 #4
0
ファイル: mreply2user.py プロジェクト: daimon99/TorCMS
 def update_view_count_by_uid(self, uid):
     entry = CabVoter2Reply.update(
         view_count=CabVoter2Reply.view_count + 1).where(
             CabVoter2Reply.uid == uid)
     entry.execute()
コード例 #5
0
ファイル: mreply2user.py プロジェクト: daimon99/TorCMS
 def update_view_count(self, citiao):
     entry = CabVoter2Reply.update(
         view_count=CabVoter2Reply.view_count + 1).where(
             CabVoter2Reply.title == citiao)
     entry.execute()
コード例 #6
0
ファイル: mreply2user.py プロジェクト: tianzhaodong/TorCMS
 def update_keywords(self, uid, inkeywords):
     entry = CabVoter2Reply.update(keywords=inkeywords).where(
         CabVoter2Reply.uid == uid)
     entry.execute()
コード例 #7
0
ファイル: mreply2user.py プロジェクト: tianzhaodong/TorCMS
 def update_view_count_by_uid(self, uid):
     entry = CabVoter2Reply.update(view_count=CabVoter2Reply.view_count +
                                   1).where(CabVoter2Reply.uid == uid)
     entry.execute()
コード例 #8
0
ファイル: mreply2user.py プロジェクト: tianzhaodong/TorCMS
 def update_view_count(self, citiao):
     entry = CabVoter2Reply.update(view_count=CabVoter2Reply.view_count +
                                   1).where(CabVoter2Reply.title == citiao)
     entry.execute()