[aum] fix website change: mails.php renamed to mail.php

This commit is contained in:
Romain Bignon 2011-01-20 13:40:30 +01:00
commit 51f99b962e
2 changed files with 6 additions and 4 deletions

View file

@ -67,7 +67,9 @@ class AuMBrowser(BaseBrowser):
'http://www.adopteunmec.com/home.php': HomePage, 'http://www.adopteunmec.com/home.php': HomePage,
'http://www.adopteunmec.com/shop2c.php': ShopPage, 'http://www.adopteunmec.com/shop2c.php': ShopPage,
'http://www.adopteunmec.com/mails.php': ContactListPage, 'http://www.adopteunmec.com/mails.php': ContactListPage,
'http://www.adopteunmec.com/mail.php': ContactListPage,
'http://www.adopteunmec.com/mails.php\?type=1': BasketsPage, 'http://www.adopteunmec.com/mails.php\?type=1': BasketsPage,
'http://www.adopteunmec.com/mail.php\?type=1': BasketsPage,
'http://www.adopteunmec.com/thread.php\?id=([0-9]+)(&see=all)?': ContactThreadPage, 'http://www.adopteunmec.com/thread.php\?id=([0-9]+)(&see=all)?': ContactThreadPage,
'http://www.adopteunmec.com/edit.php\?type=1': EditPhotoPage, 'http://www.adopteunmec.com/edit.php\?type=1': EditPhotoPage,
'http://s\d+.adopteunmec.com/upload\d.php\?.*': EditPhotoCbPage, 'http://s\d+.adopteunmec.com/upload\d.php\?.*': EditPhotoCbPage,
@ -205,18 +207,18 @@ class AuMBrowser(BaseBrowser):
@pageaccess @pageaccess
def get_baskets(self): def get_baskets(self):
self.location('/mails.php?type=1') self.location('/mail.php?type=1')
return self.page.get_profiles_ids_list() return self.page.get_profiles_ids_list()
@pageaccess @pageaccess
def flush_visits(self): def flush_visits(self):
""" Does nothing, only flush new visits to increase my score """ """ Does nothing, only flush new visits to increase my score """
self.openurl('/mails.php?type=3') self.openurl('/mail.php?type=3')
@pageaccess @pageaccess
def get_threads_list(self): def get_threads_list(self):
if not self.is_on_page(ContactListPage): if not self.is_on_page(ContactListPage):
self.location('/mails.php') self.location('/mail.php')
return self.page.get_contact_list() return self.page.get_contact_list()

View file

@ -36,7 +36,7 @@ class PageBase(BasePage):
raise AdopteBanned('Your account is blocked. You have to unblock by yourself but we can\'t help you.') raise AdopteBanned('Your account is blocked. You have to unblock by yourself but we can\'t help you.')
def open_contact_list_page(self): def open_contact_list_page(self):
self.browser.follow_link(url_regex=r"/mails.php$") self.browser.follow_link(url_regex=r"/mail.php$")
def open_thread_page(self, id, all_messages=False): def open_thread_page(self, id, all_messages=False):
if all_messages: if all_messages: