summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-26 06:28:22 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-26 06:28:22 +0000
commit58dd42db901b0ee530492f5aa6b591b761a15a1f (patch)
treef56f435751288ca6cad53a9a0ef6a290faf6dcf3 /docs
parent649923746d5a1e8d3d3487640d99903fd0169c08 (diff)
downloadpyramid-58dd42db901b0ee530492f5aa6b591b761a15a1f.tar.gz
pyramid-58dd42db901b0ee530492f5aa6b591b761a15a1f.tar.bz2
pyramid-58dd42db901b0ee530492f5aa6b591b761a15a1f.zip
Tweaks.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/introduction.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/narr/introduction.rst b/docs/narr/introduction.rst
index bb6054ca3..c77b8053e 100644
--- a/docs/narr/introduction.rst
+++ b/docs/narr/introduction.rst
@@ -1,10 +1,10 @@
:mod:`repoze.bfg` Introduction
==============================
-:mod:`repoze.bfg` is a Python web application framework based on graph
-traversal. It is inspired by Zope's publisher, and uses Zope
-libraries to do much of its work. However, it is less ambitious and
-less featureful than any released version of Zope's publisher.
+:mod:`repoze.bfg` is a Python web application framework. It is
+inspired by Zope's publisher, and uses :term:`Zope` libraries to do
+much of its work. However, it is less ambitious and less featureful
+than any released version of Zope's publisher.
:mod:`repoze.bfg` uses the :term:`WSGI` protocol to handle requests
and responses, and integrates :term:`Zope`, :term:`Paste`, and
@@ -25,9 +25,9 @@ developer rather than the application developer.
Like Pylons, :mod:`repoze.bfg` is mostly policy-free. It makes no
assertions about which database you should use, and its built-in
templating facilities are only for convenience. In essence, it only
-supplies a mechanism to map URLs to view code, along with a convention
-for calling those views. You are free to use third-party components
-in your application that fit your needs. Also like Pylons,
+supplies a mechanism to map URLs to :term:`view` code, along with a
+convention for calling those views. You are free to use third-party
+components in your application that fit your needs. Also like Pylons,
:mod:`repoze.bfg` is heavily dependent on WSGI.
The Django docs state that Django is an "MTV" framework in their `FAQ