simplify and factorize code, remove dead code, follow conventions, use new-style classes
This commit is contained in:
parent
55a1574df5
commit
f1b3264a67
28 changed files with 202 additions and 251 deletions
|
|
@ -15,26 +15,28 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
|
||||
from weboob.tools.browser import BasePage
|
||||
|
||||
|
||||
__all__ = ['InitPage']
|
||||
|
||||
|
||||
class InitPage(BasePage):
|
||||
def on_loaded(self):
|
||||
channels = []
|
||||
### Parse liste des channels
|
||||
for elem in self.document[2].getchildren():
|
||||
channel = {}
|
||||
for e in elem.getchildren():
|
||||
subchannels = []
|
||||
if e.tag == "NOM":
|
||||
channel['nom'] = e.text
|
||||
elif e.tag == "SELECTIONS":
|
||||
|
||||
for select in e:
|
||||
subchannel = {}
|
||||
subchannel['id'] = select[0].text
|
||||
subchannel['nom'] = select[1].text
|
||||
subchannels.append(subchannel)
|
||||
channel['subchannels'] = subchannels
|
||||
channels.append(channel)
|
||||
def on_loaded(self):
|
||||
channels = []
|
||||
### Parse liste des channels
|
||||
for elem in self.document[2].getchildren():
|
||||
channel = {}
|
||||
for e in elem.getchildren():
|
||||
subchannels = []
|
||||
if e.tag == "NOM":
|
||||
channel['nom'] = e.text
|
||||
elif e.tag == "SELECTIONS":
|
||||
for select in e:
|
||||
subchannel = {}
|
||||
subchannel['id'] = select[0].text
|
||||
subchannel['nom'] = select[1].text
|
||||
subchannels.append(subchannel)
|
||||
channel['subchannels'] = subchannels
|
||||
channels.append(channel)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue