doc/book/en/intro/tutorial/create-cube.rst
branchstable
changeset 2175 16d3c37c5d28
parent 2172 cf8f9180e63e
child 2476 1294a6bdf3bf
--- a/doc/book/en/intro/tutorial/create-cube.rst	Thu Jun 25 20:29:27 2009 +0200
+++ b/doc/book/en/intro/tutorial/create-cube.rst	Fri Jun 26 13:51:08 2009 +0200
@@ -4,10 +4,10 @@
 ----------------
 
 The packages ``cubicweb`` and ``cubicweb-dev`` installs a command line tool
-for `CubicWeb` called ``cubicweb-ctl``. This tool provides a wide range of
+for *CubicWeb* called ``cubicweb-ctl``. This tool provides a wide range of
 commands described in details in :ref:`cubicweb-ctl`.
 
-Once your `CubicWeb` development environment is set up, you can create a new
+Once your *CubicWeb* development environment is set up, you can create a new
 cube::
 
   cubicweb-ctl newcube blog
@@ -21,7 +21,7 @@
 Define your data model
 ----------------------
 
-The data model or schema is the core of your `CubicWeb` application.
+The data model or schema is the core of your *CubicWeb* application.
 It defines the type of content your application will handle.
 
 The data model of your cube ``blog`` is defined in the file ``schema.py``:
@@ -91,7 +91,7 @@
 
 .. image:: ../../images/blog-demo-first-page.png
 
-Please notice that so far, the `CubicWeb` franework managed all aspects of
+Please notice that so far, the *CubicWeb* franework managed all aspects of
 the web application based on the schema provided at first.
 
 
@@ -183,7 +183,7 @@
 
 A view is defined by a Python class which includes:
 
-  - an identifier (all objects in `CubicWeb` are entered in a registry
+  - an identifier (all objects in *CubicWeb* are entered in a registry
     and this identifier will be used as a key)
 
   - a filter to select the result sets it can be applied to
@@ -191,11 +191,11 @@
 A view has a set of methods complying
 with the `View` class interface (`cubicweb.common.view`).
 
-`CubicWeb` provides a lot of standard views for the type `EntityView`;
+*CubicWeb* provides a lot of standard views for the type `EntityView`;
 for a complete list, read the code in directory ``cubicweb/web/views/``.
 
 A view is applied on a `result set` which contains a set of
-entities we are trying to display. `CubicWeb` uses a selector
+entities we are trying to display. *CubicWeb* uses a selector
 mechanism which computes for each available view a score:
 the view with the highest score is then used to display the given `result set`.
 The standard library of selectors is in