示例#1
0
 def handleArticleCommentThreaded(commentId):
     w.session()
     a.session()
     comment = handleArticleComment(commentId)
     w.session.remove()
     a.session.remove()
     return comment
示例#2
0
 def handleUserThreaded(userId):
     w.session()
     a.session()
     user = handleUser(userId)
     w.session.remove()
     a.session.remove()
     return user
示例#3
0
 def handleArticleThreaded(articleId):
     w.session()
     a.session()
     article = handleArticle(articleId)
     w.session.remove()
     a.session.remove()
     return article
示例#4
0
    def handleForumPostThreaded(postId):
        w.session()
        a.session()
        wpost = handleForumPost(postId)

        w.session.remove()
        a.session.remove()
        return wpost
示例#5
0
    def handleForumThreadsThreaded(threadId):
        w.session()
        a.session()
        wthread = handleForumThread(threadId)

        w.session.remove()
        a.session.remove()
        return wthread