[Checkins] SVN: bluebream/website/docs/v1.0/concepts.rst change chapter title to "Concepts and Technologies"

Baiju M baiju.m.mail at gmail.com
Tue Jan 19 22:27:41 EST 2010


Log message for revision 108288:
  change chapter title to "Concepts and Technologies"
  

Changed:
  U   bluebream/website/docs/v1.0/concepts.rst

-=-
Modified: bluebream/website/docs/v1.0/concepts.rst
===================================================================
--- bluebream/website/docs/v1.0/concepts.rst	2010-01-20 02:36:40 UTC (rev 108287)
+++ bluebream/website/docs/v1.0/concepts.rst	2010-01-20 03:27:40 UTC (rev 108288)
@@ -1,8 +1,11 @@
+Concepts and Technologies
+=========================
+
 Concepts
-========
+--------
 
 Interface
----------
+~~~~~~~~~
 
 Interfaces are objects that specify (document) the external behavior
 of objects that "provide" them.  An interface specifies behavior
@@ -26,7 +29,7 @@
 - Document the API
 
 Zope Component Architecture
----------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The main idea in the Zope Component Architecture is the use of
 components, rather than multiple-inheritence for managing complexity.
@@ -45,74 +48,98 @@
 to create two basic kinds of components, adapters and utilities.
 
 Event
------
+~~~~~
 
 Events are objects that represent something happening in a system.
 They are used to extend processing by providing processing plug
 points.
 
 Adpater
--------
+~~~~~~~
 
 Adapter takes the Interface of an existing component and adapts it to
 provide another Interface.
 
 Utility
--------
+~~~~~~~
 
 Subscriber
-----------
+~~~~~~~~~~
 
 Handler
--------
+~~~~~~~
 
-ZCML
-----
 
-The Zope Configuration Markup Language (ZCML) is an XML based
-configuration system for registration of components.  Instead of
-using Python API for registration, you can use ZCML
+Object Publishing
+~~~~~~~~~~~~~~~~~
 
-WSGI
-----
+BlueBream puts your objects on the web.  This is called object
+publishing.  One of BlueBream's unique characteristics is the way it
+allows you to walk up to your objects and call methods on them with
+simple URLs.  In addition to HTTP, BlueBream makes your objects
+available to other network protocols including FTP, WebDAV and
+XML-RPC.
 
-ZODB
-----
-
-Python based object database.
-
-Object Publishing
------------------
-
 View
-----
+~~~~
 
 Browser Page
-------------
+~~~~~~~~~~~~
 
 Browser Resource
-----------------
+~~~~~~~~~~~~~~~~
 
 Container
----------
+~~~~~~~~~
 
 Content Object
---------------
+~~~~~~~~~~~~~~
 
 Layer
------
+~~~~~
 
 Skin
-----
+~~~~
 
 Annotation
-----------
+~~~~~~~~~~
 
 Content Provider
-----------------
+~~~~~~~~~~~~~~~~
 
 Viewlet
--------
+~~~~~~~
 
 Viewlets provide a generic framework for building pluggable user
 interfaces.
+
+Technologies
+------------
+
+ZODB
+~~~~
+
+.. todo:: Should we 
+
+The Zope Object Database provides an object-oriented database for
+Python that provides a high-degree of transparency.  Applications can
+take advantage of object database features with few, if any, changes
+to application logic.  ZODB includes features such as a plugable
+storage interface, rich transaction support, and undo.
+
+WSGI
+~~~~
+
+PasteScript
+~~~~~~~~~~~
+
+PasteDeploy
+~~~~~~~~~~~
+
+ZCML
+~~~~
+
+The Zope Configuration Markup Language (ZCML) is an XML based
+configuration system for registration of components.  Instead of
+using Python API for registration, you can use ZCML
+



More information about the checkins mailing list