From 560ac5282d5dc1d61e27c4348dc3164899dc039a Mon Sep 17 00:00:00 2001 From: Lucas Nussbaum Date: Wed, 22 Jul 2015 19:21:05 +0200 Subject: [PATCH] Add https urls Closes: #2009 #1982 --- modules/orange/browser.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/orange/browser.py b/modules/orange/browser.py index d29b0fd7..b36e22a3 100644 --- a/modules/orange/browser.py +++ b/modules/orange/browser.py @@ -32,10 +32,16 @@ __all__ = ['OrangeBrowser'] class OrangeBrowser(Browser): DOMAIN = 'orange.fr' PAGES = { + 'http://id.orange.fr/auth_user/bin/auth_user.cgi.*': LoginPage, + 'http://id.orange.fr/auth_user/bin/auth0user.cgi.*': LoginPage, + 'https://id.orange.fr/auth_user/bin/auth_user.cgi.*': LoginPage, + 'https://id.orange.fr/auth_user/bin/auth0user.cgi.*': LoginPage, 'https://authweb.orange.fr/auth_user/bin/auth_user.cgi.*': LoginPage, 'https://authweb.orange.fr/auth_user/bin/auth0user.cgi.*': LoginPage, 'http://smsmms1.orange.fr/./Sms/sms_write.php.*' : ComposePage, 'http://smsmms1.orange.fr/./Sms/sms_write.php?command=send' : ConfirmPage, + 'https://smsmms1.orange.fr/./Sms/sms_write.php.*' : ComposePage, + 'https://smsmms1.orange.fr/./Sms/sms_write.php?command=send' : ConfirmPage, } def get_nb_remaining_free_sms(self):