Fix encoding and remove some unused files

fix #819
This commit is contained in:
Florent 2013-01-08 19:21:53 +01:00
commit 3c6348d7ad
3 changed files with 1 additions and 66 deletions

View file

@ -29,10 +29,10 @@ class IndexPage(BasePage):
class NewspaperFigaroBrowser(BaseBrowser):
"NewspaperFigaroBrowser class"
ENCODING = None
PAGES = {
"http://\w+.lefigaro.fr/flash-.*/(\d{4})/(\d{2})/(\d{2})/(.*$)": FlashActuPage,
"http://\w+.lefigaro.fr/bd/(\d{4})/(\d{2})/(\d{2})/(.*$)": FlashActuPage,
"http://\w+.lefigaro.fr/actualite/(\d{4})/(\d{2})/(\d{2})/(.*$)": SpecialPage,
"http://\w+.lefigaro.fr/(?!flash-|bd|actualite).+/(\d{4})/(\d{2})/(\d{2})/(.*$)": ArticlePage,
"http://\w+.lefigaro.fr/actualite-.*/(\d{4})/(\d{2})/(\d{2})/(.*$)": ArticlePage,
"http://\w+.lefigaro.fr/": IndexPage,