* Create a get_collection method similar to get_* methods for objects. * Fix title initialization of a collection * Remove the hack were both id and title were allowed when CDing. That hack only worked with the canalplus module, and failed with others like redmine (but they still showed in suggestions). Moreover, the canalplus module now has friendlier IDs so this is not really needed anymore. * Allow backends to tell if a path is valid or not. For instance, it now allows to cd in a Redmine project with no issues in it. It also won't display "404" for invalid project IDs. By default, we still use the unreliable method of checking there is at least one result in iter_resources(). * Fix cd completion to work with unicode strings (all strings after an unicode string were ignored!) * Do not suggest '..' when completing cd in the root refs #774
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010-2012 Nicolas Duhamel, Laurent Bachelier
|
|
#
|
|
# This file is part of weboob.
|
|
#
|
|
# weboob is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# weboob is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
from weboob.tools.browser import BasePage
|
|
|
|
from weboob.capabilities.collection import Collection
|
|
|
|
__all__ = ['InitPage']
|
|
|
|
|
|
class InitPage(BasePage):
|
|
def get_channels(self):
|
|
"""
|
|
Extract all possible channels (paths) from the page
|
|
"""
|
|
channels = list()
|
|
for elem in self.document[2].getchildren():
|
|
for e in elem.getchildren():
|
|
if e.tag == "NOM":
|
|
name = unicode(e.text.strip())
|
|
channels.append(Collection([name]))
|
|
elif e.tag == "SELECTIONS":
|
|
for select in e:
|
|
subname = unicode(select[1].text.strip())
|
|
sub = Collection([name, subname])
|
|
sub._link_id = select[0].text
|
|
channels.append(sub)
|
|
return channels
|