diff -r 385a1d11dfeb -r d9196c0420fe doc/tutorials/advanced/part01_create-cube.rst --- a/doc/tutorials/advanced/part01_create-cube.rst Thu Feb 21 18:47:03 2019 +0100 +++ b/doc/tutorials/advanced/part01_create-cube.rst Thu Feb 21 18:47:35 2019 +0100 @@ -42,25 +42,29 @@ Almost everything I want to handle in my web-site is somehow already modelized in existing cubes that I'll extend for my need. So I'll pick the following cubes: -* `folder`, containing the `Folder` entity type, which will be used as - both 'album' and a way to map file system folders. Entities are - added to a given folder using the `filed_under` relation. +* `folder `_, containing the + `Folder` entity type, which will be used as both 'album' and a way to map + file system folders. Entities are added to a given folder using the + `filed_under` relation. -* `file`, containing `File` entity type, gallery view, and a file system import - utility. +* `file `_, containing `File` + entity type, gallery view, and a file system import utility. + +* `zone `_, containing the + `Zone` entity type for hierarchical geographical zones. Entities (including + sub-zones) are added to a given zone using the `situated_in` relation. -* `zone`, containing the `Zone` entity type for hierarchical geographical - zones. Entities (including sub-zones) are added to a given zone using the - `situated_in` relation. - -* `person`, containing the `Person` entity type plus some basic views. +* `person `_, containing the + `Person` entity type plus some basic views. -* `comment`, providing a full commenting system allowing one to comment entity types - supporting the `comments` relation by adding a `Comment` entity. +* `comment `_, providing a + full commenting system allowing one to comment entity types supporting the + `comments` relation by adding a `Comment` entity. -* `tag`, providing a full tagging system as an easy and powerful way to classify - entities supporting the `tags` relation by linking the to `Tag` entities. This - will allows navigation into a large number of picture. +* `tag `_, providing a full + tagging system as an easy and powerful way to classify entities supporting + the `tags` relation by linking the to `Tag` entities. This will allows + navigation into a large number of picture. Ok, now I'll tell my cube requires all this by editing :file:`cubicweb-sytweb/cubicweb_sytweb/__pkginfo__.py`: