src/source/dev_guide/intro-dev.rst
branchdoc-dc
changeset 126 e0584f3de3fd
parent 111 097b0c025eec
equal deleted inserted replaced
125:c8081c2ffe56 126:e0584f3de3fd
       
     1 .. _introdev:
       
     2 
       
     3 Introduction
       
     4 ============
       
     5 
       
     6 PyAMS application used the Pyramid framework and Zope architecture, most of functionality of PyAMS
       
     7 are build on this base.
       
     8 
       
     9 What is Pyramid?
       
    10 ----------------
       
    11 
       
    12 Pyramid is an open source Python web application framework. It is designed to make creating web applications easier.
       
    13 
       
    14 
       
    15 What is Zope?
       
    16 -------------
       
    17 
       
    18 Zope is a free and open-source, object-oriented web application server written in the Python programming language. The term ZOPE is an acronym for “Z Object Publishing Environment” (the Z doesn’t really mean anything in particular). However, nowadays ZOPE is simply written as Zope. It has three distinct audiences.
       
    19 
       
    20 
       
    21 This guide is intended to document Zope for the second audience, Developers, as defined above. If you fit more into the “user” audience defined above, you’ll probably want to start by reading The Zope Book .
       
    22 
       
    23 Throughout this guide, it is assumed that you know how to program in the Python programming language. Most of the examples in this guide will be in Python. There are a number of great resources and books for learning Python; the best online resource is the python.org web site and many books can be found on the shelves of your local bookstore.
       
    24 1.2. Organization of the book
       
    25 
       
    26 This book describes Zope’s services to the developer from a hands on, example-oriented standpoint. This book is not a complete reference to the Zope API, but rather a practical guide to applying Zope’s services to develop and deploy your own web applications. This book covers the following topics:
       
    27 
       
    28 .. glossary::
       
    29 
       
    30 	Components and Interfaces
       
    31 		Zope use a component-centric development model. This chapter describes the component model in Zope and how Zope components are described through interfaces.
       
    32 
       
    33 	Object Publishing
       
    34 		Developing applications for Zope involves more than just creating a component, that component must be publishable on the web. This chapter describes publication, and how your components need to be designed to be published.
       
    35 
       
    36 	Zope Products
       
    37 		New Zope components are distributed and installed in packages called “Products”. This chapter explains Products in detail.
       
    38 
       
    39 	Persistent Components
       
    40 		Zope provides a built-in, transparent Python object database called ZODB. This chapter describes how to create persistent components, and how they work in conjunction with the ZODB.
       
    41 
       
    42 	Acquisition
       
    43 		Zope relies heavily on a dynamic technique called acquisition. This chapter explores acquisition thoroughly.
       
    44 
       
    45 	Security
       
    46 		When your component is used by many different people through the web, security becomes a big concern. This chapter describes Zope’s security API and how you can use it to make security assertions about your object.
       
    47 
       
    48 	Debugging and Testing
       
    49 		Zope has built in debugging and testing support. This chapter describes these facilities and how you can debug and test your components.
       
    50