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

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

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