appobject.py
changeset 10496 e95b559a06a2
parent 8930 6a02be304486
equal deleted inserted replaced
10495:5bd914ebf3ae 10496:e95b559a06a2
    14 # details.
    14 # details.
    15 #
    15 #
    16 # You should have received a copy of the GNU Lesser General Public License along
    16 # You should have received a copy of the GNU Lesser General Public License along
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    18 """
    18 """
    19 .. _appobject:
       
    20 
    19 
    21 The `AppObject` class
    20 The `AppObject` class
    22 ---------------------
    21 ---------------------
    23 
    22 
    24 The AppObject class is the base class for all dynamically loaded objects
    23 The AppObject class is the base class for all dynamically loaded objects
    25 (application objects) accessible through the vregistry.
    24 (application objects) accessible through the vregistry.
    26 
    25 
    27 We can find a certain number of attributes and methods defined in this class and
    26 We can find a certain number of attributes and methods defined in this class and
    28 common to all the application objects.
    27 common to all the application objects.
    29 
    28 
    30 .. autoclass:: AppObject
       
    31 """
    29 """
    32 __docformat__ = "restructuredtext en"
    30 __docformat__ = "restructuredtext en"
    33 
    31 
    34 from logging import getLogger
    32 from logging import getLogger
    35 
    33