예제 #1
0
파일: ui.py 프로젝트: onenonlycasper/feedIO
    def addTopic(self):
        topic = unicode(self.ui.topicLine.text())
        classifier.addTopic(topic)
        self.ui.topicLine.clear()

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.displayTopics()
예제 #2
0
파일: ui.py 프로젝트: onenonlycasper/feedIO
    def addTopic(self):
        topic = unicode(self.ui.addTopicLinedit.text())
        #topic = purify.cleanText(topic) # gave an error when adding
        classifier.addTopic(topic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.close()
예제 #3
0
파일: ui.py 프로젝트: vagner4work/feedIO
    def addTopic(self):
        topic = unicode(self.ui.topicLine.text())
        classifier.addTopic(topic)
        self.ui.topicLine.clear()

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.displayTopics()
예제 #4
0
파일: ui.py 프로젝트: vagner4work/feedIO
    def addTopic(self):
        topic = unicode(self.ui.addTopicLinedit.text())
        #topic = purify.cleanText(topic) # gave an error when adding
        classifier.addTopic(topic)

        #Set the refreshDisplay status to true.
        self.parent.parent.refreshDisplay = True

        self.close()
예제 #5
0
파일: ui.py 프로젝트: Lanka/feedIO
 def addTopic(self):
     topic = unicode(self.ui.topicLine.text())
     classifier.addTopic(topic)
     self.ui.topicLine.clear()
     self.displayTopics()
예제 #6
0
파일: ui.py 프로젝트: Lanka/feedIO
 def addTopic(self):
     topic = unicode(self.ui.addTopicLinedit.text())
     topic = purify.cleanText(topic)
     classifier.addTopic(topic)
     self.close()