示例#1
0
 def get_author(self):
     author = GenericNewsPage.get_author(self)
     try:
         source = self.document.getroot().xpath("//span[@class='sourceinfo']/a")[0]
         source = source.text
         author = author + " | " + source
         return author
     except:
         return author
示例#2
0
文件: article.py 项目: lissyx/weboob
 def get_author(self):
     author = GenericNewsPage.get_author(self)
     try:
         source = self.document.getroot().xpath(
                 "//span[@class='sourceinfo']/a")[0]
         source = source.text
         author = author + " | " + source
         return author
     except:
         return author
示例#3
0
文件: article.py 项目: lissyx/weboob
 def get_title(self):
     title = GenericNewsPage.get_title(self)
     title = title.split('|')[0]
     return title
示例#4
0
 def get_title(self):
     title = GenericNewsPage.get_title(self)
     return title.replace(u' - Libération', '')
示例#5
0
 def get_title(self):
     title = GenericNewsPage.get_title(self)
     return title
示例#6
0
 def get_title(self):
     title = GenericNewsPage.get_title(self)
     return title.replace(u' - Libération', '')