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

        w.session.remove()
        a.session.remove()
        return wpost
Exemplo n.º 5
0
    def handleForumThreadsThreaded(threadId):
        w.session()
        a.session()
        wthread = handleForumThread(threadId)

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