From 61b009c1ec0a10bca475970b28b23ab510b8351a Mon Sep 17 00:00:00 2001 From: Florent Date: Wed, 20 Aug 2014 11:55:59 +0200 Subject: [PATCH] Define backends/modules --- docs/source/overview.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/overview.rst b/docs/source/overview.rst index e23a66c5..3761fd0e 100644 --- a/docs/source/overview.rst +++ b/docs/source/overview.rst @@ -4,7 +4,7 @@ Overview Weboob (Web Outside Of Browsers) provides: * :doc:`applications ` to interact with websites -* :doc:`backends `, each one handles a specific website +* :doc:`modules `, each one handles a specific website * a :doc:`core library ` providing all the features needed by backends * :doc:`tools ` to help develop backends and applications @@ -25,10 +25,10 @@ The core library defines capabilities. They represent features common to various For example, http://www.youtube.com and http://www.dailymotion.com are both videos providers: Weboob defines the ``CapVideo`` capability. -Each backend interfaces a website and implements one or many of these -capabilities. Backends can be configured, which means that the end-user can +Each module interfaces a website and implements one or many of these +capabilities. Modules can be configured, which means that the end-user can provide personal information to access the underlaying website (login/password -for example). +for example). We call a configured module a Backend. Multi-backend call ------------------