src/source/zca.rst
branchdoc-dc
changeset 50 6ed429390935
parent 16 aeb2f717165d
child 51 5ebe61e3a965
equal deleted inserted replaced
49:a33f67e15345 50:6ed429390935
     1 .. _zca:
     1 .. _zca:
     2 
     2 
     3 Managing ZCA with PyAMS
     3 Zope Component Architecture with PyAMS
     4 =======================
     4 ======================================
     5 
     5 
     6 The **Zope Component Architecture** (aka ZCA) is used by the Pyramid framework "under the hood" to handle interfaces,
     6 The **Zope Component Architecture** (aka **ZCA**) is used by the Pyramid framework "under the hood" to handle interfaces,
     7 adapters and utilities. You don't **have to** use it in your own applications. But you can.
     7 adapters and utilities. You don't **have to** use it in your own applications. But you can.
     8 
     8 
     9 The ZCA is mainly adding elements like **interfaces**, **adapters** and **utilities** to the Python language. It
     9 The ZCA is mainly adding elements like **interfaces**, **adapters** and **utilities** to the Python language. It
    10 allows you to write a framework or an application by using **components** which can be extended easily.
    10 allows you to write a framework or an application by using **components** which can be extended easily.
    11 
    11 
    12 You will find several useful resources about ZCA concepts on the internet.
    12 You will find several useful resources about ZCA concepts on the internet.
       
    13 
       
    14 
       
    15 .. seealso::
       
    16     Zope Documentations:
       
    17     - `Components and Interfaces <http://zope.readthedocs.io/en/latest/zdgbook/ComponentsAndInterfaces.html>`_
       
    18     - `Zope component <http://zopecomponent.readthedocs.io/en/latest/narr.html>`_
       
    19     - `Zope interface <https://docs.zope.org/zope.interface/README.html>`_
    13 
    20 
    14 
    21 
    15 Local utilities
    22 Local utilities
    16 ---------------
    23 ---------------
    17 
    24