merge
authorSandrine Ribeau <sandrine.ribeau@logilab.fr>
Tue, 14 Apr 2009 11:30:14 -0700
changeset 1351 8c126c74647c
parent 1350 31e4c8d30e5d (diff)
parent 1347 01210bb805dc (current diff)
child 1352 9fae16f3e068
merge
--- a/doc/book/en/D010-faq.en.txt	Tue Apr 14 12:14:59 2009 +0200
+++ b/doc/book/en/D010-faq.en.txt	Tue Apr 14 11:30:14 2009 -0700
@@ -145,9 +145,15 @@
 
   It depends on what has been modified in the schema.
 
-  * Update of a non final relation.
+  * Update of an attribute permissions and properties: 
+    ``synchronize_eschema('MyEntity')``.
 
-  * Update of a final relation.
+  * Update of a relation permissions and properties: 
+    ``synchronize_rschema('MyRelation')``.
+
+  * Add an attribute: ``add_attribute('MyEntityType', 'myattr')``.
+
+  * Add a relation: ``add_relation_definition('SubjRelation', 'MyRelation', 'ObjRelation')``.
 
 
 * How to create an anonymous user?
@@ -164,9 +170,16 @@
     anonymous-password=anon
 
   You also must ensure that this `anon` user is a registered user of
-  the DB backend. This could be the admin account (for development
+  the DB backend. If not, you can create through the administation
+  interface of your instance by adding a user with the role `guests`.
+  This could be the admin account (for development
   purposes, of course).
 
+.. note::
+    While creating a new instance, you can decide to allow access
+    to anonymous user, which will automatically executes what is
+    decribed above.
+
 
 * How to change the application logo?