# HG changeset patch # User Sandrine Ribeau # Date 1239733814 25200 # Node ID 8c126c74647cb15ae1bda9ace1e5cb57eaa66727 # Parent 31e4c8d30e5d7b2afde819dc233e4d90440aa304# Parent 01210bb805dc3461c7b82df1321369c0598c1d7d merge diff -r 01210bb805dc -r 8c126c74647c doc/book/en/D010-faq.en.txt --- 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?