doc/tutorials/advanced/part01_create-cube.rst
changeset 12403 d901fc62eb01
parent 12402 e4da2575ac37
child 12530 9d88e1177c35
--- a/doc/tutorials/advanced/part01_create-cube.rst	Thu Feb 21 19:08:44 2019 +0100
+++ b/doc/tutorials/advanced/part01_create-cube.rst	Thu Feb 21 18:46:39 2019 +0100
@@ -72,11 +72,11 @@
 
     __depends__ = {'cubicweb': '>= 3.26.7',
                    'cubicweb-file': '>= 1.9.0',
-		   'cubicweb-folder': '>= 1.1.0',
-		   'cubicweb-person': '>= 1.2.0',
-		   'cubicweb-comment': '>= 1.2.0',
-		   'cubicweb-tag': '>= 1.2.0',
-		   'cubicweb-zone': None}
+                   'cubicweb-folder': '>= 1.1.0',
+                   'cubicweb-person': '>= 1.2.0',
+                   'cubicweb-comment': '>= 1.2.0',
+                   'cubicweb-tag': '>= 1.2.0',
+                   'cubicweb-zone': None}
 
 Notice that you can express minimal version of the cube that should be used,
 `None` meaning whatever version available. All packages starting with 'cubicweb-'
@@ -102,27 +102,34 @@
 
     from yams.buildobjs import RelationDefinition
 
+
     class comments(RelationDefinition):
-	subject = 'Comment'
-	object = 'File'
-	cardinality = '1*'
-	composite = 'object'
+        subject = 'Comment'
+        object = 'File'
+        # a Comment can be on only one File
+        # but a File can have several comments
+        cardinality = '1*'
+        composite = 'object'
+
 
     class tags(RelationDefinition):
-	subject = 'Tag'
-	object = 'File'
+        subject = 'Tag'
+        object = 'File'
+
 
     class filed_under(RelationDefinition):
-	subject = 'File'
-	object = 'Folder'
+        subject = 'File'
+        object = 'Folder'
+
 
     class situated_in(RelationDefinition):
-	subject = 'File'
-	object = 'Zone'
+        subject = 'File'
+        object = 'Zone'
+
 
     class displayed_on(RelationDefinition):
-	subject = 'Person'
-	object = 'File'
+        subject = 'Person'
+        object = 'File'
 
 
 This schema: