autoz_add_role_with_parents
autoz_add_parent_to_role
autoz_add_parents_to_role
+autoz_role_is_child
autoz_get_role_from_id
autoz_add_resource
autoz_add_resource_with_parents
autoz_add_parent_to_resource
autoz_add_parents_to_resource
+autoz_resource_is_child
autoz_get_resource_from_id
autoz_allow
autoz_deny
Autoz *autoz, AutozIRole *irole, ...
</FUNCTION>
<FUNCTION>
+<NAME>autoz_role_is_child</NAME>
+<RETURNS>gboolean </RETURNS>
+Autoz *autoz, AutozIRole *irole, AutozIRole *irole_parent
+</FUNCTION>
+<FUNCTION>
<NAME>autoz_get_role_from_id</NAME>
<RETURNS>AutozIRole *</RETURNS>
Autoz *autoz, const gchar *role_id
Autoz *autoz, AutozIResource *iresource, ...
</FUNCTION>
<FUNCTION>
+<NAME>autoz_resource_is_child</NAME>
+<RETURNS>gboolean </RETURNS>
+Autoz *autoz, AutozIResource *iresource, AutozIResource *iresource_parent
+</FUNCTION>
+<FUNCTION>
<NAME>autoz_get_resource_from_id</NAME>
<RETURNS>AutozIResource *</RETURNS>
Autoz *autoz, const gchar *resource_id
<FUNCTION>
<NAME>autoz_is_allowed</NAME>
<RETURNS>gboolean </RETURNS>
-Autoz *autoz, AutozIRole *irole, AutozIResource *iresource
+Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gboolean exclude_null
</FUNCTION>
<FUNCTION>
<NAME>autoz_clear</NAME>
--- /dev/null
+2% symbol docs coverage.
+1 symbols documented.
+5 symbols incomplete.
+51 not documented.
+
+
+AUTOZ
+AUTOZ_CLASS
+AUTOZ_GET_CLASS
+Autoz
+AutozClass (<items>)
+AutozIResource
+AutozIResourceIface (<items>)
+AutozIRole
+AutozIRoleIface (<items>)
+AutozResource
+AutozResourceClass (<items>)
+AutozRole
+AutozRoleClass (<items>)
+IS_AUTOZ
+IS_AUTOZ_CLASS
+TYPE_AUTOZ
+autoz_add_parent_to_resource
+autoz_add_parent_to_role
+autoz_add_parents_to_resource
+autoz_add_parents_to_role
+autoz_add_resource
+autoz_add_resource_with_parents
+autoz_add_role
+autoz_add_role_with_parents
+autoz_allow
+autoz_clear
+autoz_deny
+autoz_get_resource_from_id
+autoz_get_role_from_id
+autoz_get_type
+autoz_get_xml
+autoz_iresource_get_resource_id
+autoz_irole_get_role_id
+autoz_is_allowed
+autoz_load_fro_xml
+autoz_load_from_db
+autoz_new
+autoz_resource_is_child
+autoz_resource_new
+autoz_role_is_child
+autoz_role_new
+autoz_save_to_db
+
+
+autoz:Short_Description
+resource:Long_Description
+resource:Short_Description
+resource_interface:Long_Description
+resource_interface:Short_Description
+role:Long_Description
+role:Short_Description
+role_interface:Long_Description
+role_interface:Short_Description
--- /dev/null
+autoz_add_parent_to_resource
+autoz_add_parent_to_role
+autoz_add_parents_to_resource
+autoz_add_parents_to_role
+autoz_clear
+autoz_deny
+autoz_get_xml
+autoz_load_from_db
+autoz_load_from_xml
+autoz_resource_is_child
+autoz_role_is_child
+autoz_save_to_db
--- /dev/null
+GObject
+ Autoz
+ AutozResource
+ AutozRole
+GInterface
+ GTypePlugin
+ AutozIResource
+ AutozIRole
--- /dev/null
+AutozResource AutozIResource
+AutozRole AutozIRole
--- /dev/null
+AutozIResource GObject
+AutozIRole GObject
@autoz:
@irole:
@iresource:
+@exclude_null:
@Returns:
static void autoz_class_init (AutozClass *class);
static void autoz_init (Autoz *autoz);
-static AutozIsAllowed _autoz_is_allowed_role (Autoz *autoz, Role *role, Resource *resource);
+static AutozIsAllowed _autoz_is_allowed_role (Autoz *autoz, Role *role, Resource *resource, gboolean exclude_null);
static AutozIsAllowed _autoz_is_allowed_resource (Autoz *autoz, Role *role, Resource *resource);
static gboolean _autoz_delete_table_content (GdaConnection *gdacon, const gchar *table_prefix);
}
}
+/**
+ * autoz_role_is_child:
+ * @autoz: an #Autoz object.
+ * @irole: an #AutozIRole object.
+ * @irole_parent: an #AutozIRole object.
+ *
+ * Returns: #TRUE if @irole is a @irole_parent's child; #FALSE otherwise.
+ */
+gboolean
+autoz_role_is_child (Autoz *autoz, AutozIRole *irole, AutozIRole *irole_parent)
+{
+ AutozPrivate *priv;
+ gboolean ret;
+
+ Role *role;
+ Role *role_parent;
+ const gchar *role_id_parent;
+ GList *parent;
+
+ g_return_val_if_fail (IS_AUTOZ (autoz), FALSE);
+ g_return_val_if_fail (AUTOZ_IS_IROLE (irole), FALSE);
+ g_return_val_if_fail (AUTOZ_IS_IROLE (irole_parent), FALSE);
+
+ ret = FALSE;
+ priv = AUTOZ_GET_PRIVATE (autoz);
+
+ role = g_hash_table_lookup (priv->roles, autoz_irole_get_role_id (irole));
+ if (role == NULL)
+ {
+ g_warning ("Role «%s» not found.", autoz_irole_get_role_id (irole));
+ return ret;
+ }
+ role_id_parent = autoz_irole_get_role_id (irole_parent);
+ role_parent = g_hash_table_lookup (priv->roles, role_id_parent);
+ if (role_parent == NULL)
+ {
+ g_warning ("Role parent «%s» not found.", role_id_parent);
+ return ret;
+ }
+
+ parent = g_list_first (role->parents);
+ while (parent != NULL)
+ {
+ /* TODO recursion */
+ role_parent = (Role *)parent->data;
+ if (g_strcmp0 (role_id_parent, autoz_irole_get_role_id (role_parent->irole)) == 0)
+ {
+ ret = TRUE;
+ break;
+ }
+
+ parent = g_list_next (parent);
+ }
+
+ return ret;
+}
+
/**
* autoz_get_role_from_id:
* @autoz: an #Autoz object.
/**
* autoz_add_parent_to_resource:
* @autoz: an #Autoz object.
- * @iresource:
- * @iresource_parent:
+ * @iresource: an #AutozIResource object.
+ * @iresource_parent: an #AutozIResource object.
*
*/
void
}
}
+/**
+ * autoz_resource_is_child:
+ * @autoz: an #Autoz object.
+ * @iresource: an #AutozIResource object.
+ * @iresource_parent: an #AutozIResource object.
+ *
+ * Returns: #TRUE if @iresource is a @iresource_parent's child; #FALSE otherwise.
+ */
+gboolean
+autoz_resource_is_child (Autoz *autoz, AutozIResource *iresource, AutozIResource *iresource_parent)
+{
+ AutozPrivate *priv;
+ gboolean ret;
+
+ Resource *resource;
+ Resource *resource_parent;
+ const gchar *resource_id_parent;
+ GList *parent;
+
+ g_return_val_if_fail (IS_AUTOZ (autoz), FALSE);
+ g_return_val_if_fail (AUTOZ_IS_IRESOURCE (iresource), FALSE);
+ g_return_val_if_fail (AUTOZ_IS_IRESOURCE (iresource_parent), FALSE);
+
+ ret = FALSE;
+ priv = AUTOZ_GET_PRIVATE (autoz);
+
+ resource = g_hash_table_lookup (priv->resources, autoz_iresource_get_resource_id (iresource));
+ if (resource == NULL)
+ {
+ g_warning ("Resource «%s» not found.", autoz_iresource_get_resource_id (iresource));
+ return ret;
+ }
+ resource_id_parent = autoz_iresource_get_resource_id (iresource_parent);
+ resource_parent = g_hash_table_lookup (priv->resources, resource_id_parent);
+ if (resource_parent == NULL)
+ {
+ g_warning ("Resource parent «%s» not found.", resource_id_parent);
+ return ret;
+ }
+
+ parent = g_list_first (resource->parents);
+ while (parent != NULL)
+ {
+ /* TODO recursion */
+ resource_parent = (Resource *)parent->data;
+ if (g_strcmp0 (resource_id_parent, autoz_iresource_get_resource_id (resource_parent->iresource)) == 0)
+ {
+ ret = TRUE;
+ break;
+ }
+
+ parent = g_list_next (parent);
+ }
+
+ return ret;
+}
+
/**
* autoz_get_resource_from_id:
* @autoz: an #Autoz object.
}
static AutozIsAllowed
-_autoz_is_allowed_role (Autoz *autoz, Role *role, Resource *resource)
+_autoz_is_allowed_role (Autoz *autoz, Role *role, Resource *resource, gboolean exclude_null)
{
AutozIsAllowed ret;
ret = AUTOZ_NOT_FOUND;
- /* first trying for a rule for every resource */
- str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
- "|NULL",
- NULL);
-
- if (g_hash_table_lookup (priv->rules_deny, str_id) != NULL)
+ if (!exclude_null)
{
- ret = AUTOZ_DENIED;
- return ret;
- }
- if (g_hash_table_lookup (priv->rules_allow, str_id) != NULL)
- {
- ret = AUTOZ_ALLOWED;
- return ret;
+ /* first trying for a rule for every resource */
+ str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
+ "|NULL",
+ NULL);
+
+ if (g_hash_table_lookup (priv->rules_deny, str_id) != NULL)
+ {
+ ret = AUTOZ_DENIED;
+ return ret;
+ }
+ if (g_hash_table_lookup (priv->rules_allow, str_id) != NULL)
+ {
+ ret = AUTOZ_ALLOWED;
+ return ret;
+ }
}
/* and after for specific resource */
parents = g_list_first (role->parents);
while (parents != NULL)
{
- ret = _autoz_is_allowed_role (autoz, (Role *)parents->data, resource);
+ ret = _autoz_is_allowed_role (autoz, (Role *)parents->data, resource, exclude_null);
if (ret != AUTOZ_NOT_FOUND)
{
break;
/**
* autoz_is_allowed:
* @autoz: an #Autoz object.
- * @irole:
- * @iresource:
+ * @irole: an #AutozIRole object.
+ * @iresource: an #AutozIResource object.
+ * @exclude_null: whether or not to exclude roles allowed to every resource.
*
*/
gboolean
-autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource)
+autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gboolean exclude_null)
{
gboolean ret;
AutozIsAllowed isAllowed;
return ret;
}
- /* first trying for a rule for every resource */
- str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
- "|NULL",
- NULL);
-
- if (g_hash_table_lookup (priv->rules_deny, str_id) != NULL)
+ if (!exclude_null)
{
- ret = FALSE;
- return ret;
- }
- if (g_hash_table_lookup (priv->rules_allow, str_id) != NULL)
- {
- ret = TRUE;
- return ret;
+ /* first trying for a rule for every resource */
+ str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
+ "|NULL",
+ NULL);
+
+ if (g_hash_table_lookup (priv->rules_deny, str_id) != NULL)
+ {
+ ret = FALSE;
+ return ret;
+ }
+ if (g_hash_table_lookup (priv->rules_allow, str_id) != NULL)
+ {
+ ret = TRUE;
+ return ret;
+ }
}
/* and after for specific resource */
parents = g_list_first (role->parents);
while (parents != NULL)
{
- isAllowed = _autoz_is_allowed_role (autoz, (Role *)parents->data, resource);
+ isAllowed = _autoz_is_allowed_role (autoz, (Role *)parents->data, resource, exclude_null);
if (isAllowed == AUTOZ_DENIED)
{
ret = FALSE;
void autoz_add_parent_to_role (Autoz *autoz, AutozIRole *irole, AutozIRole *irole_parent);
void autoz_add_parents_to_role (Autoz *autoz, AutozIRole *irole, ...);
+gboolean autoz_role_is_child (Autoz *autoz, AutozIRole *irole, AutozIRole *irole_parent);
+
AutozIRole *autoz_get_role_from_id (Autoz *autoz, const gchar *role_id);
void autoz_add_resource (Autoz *autoz, AutozIResource *iresource);
void autoz_add_parent_to_resource (Autoz *autoz, AutozIResource *iresource, AutozIResource *iresource_parent);
void autoz_add_parents_to_resource (Autoz *autoz, AutozIResource *iresource, ...);
+gboolean autoz_resource_is_child (Autoz *autoz, AutozIResource *iresource, AutozIResource *iresource_parent);
+
AutozIResource *autoz_get_resource_from_id (Autoz *autoz, const gchar *resource_id);
void autoz_allow (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource);
void autoz_deny (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource);
-gboolean autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource);
+gboolean autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gboolean exclude_null);
gboolean autoz_clear (Autoz *autoz);
}
g_message ("super-admin %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), AUTOZ_IRESOURCE (resource_page)) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), AUTOZ_IRESOURCE (resource_page), FALSE) ? "is" : "isn't"));
g_message ("super-admin %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph"))) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph")), FALSE) ? "is" : "isn't"));
g_message ("writer %s allowed to page.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource_page)) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource_page), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to page.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IRESOURCE (resource_page)) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IRESOURCE (resource_page), FALSE) ? "is" : "isn't"));
g_message ("writer %s allowed to paragraph.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph"))) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph")), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to paragraph.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph"))) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph")), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to page.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (resource_page)) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (resource_page), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to paragraph.",
- (autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph"))) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (autoz_get_resource_from_id (autoz, "paragraph")), FALSE) ? "is" : "isn't"));
return 0;
}
autoz = autoz_new ();
- if (argc == 0)
+ if (argc <= 1)
{
g_error ("You must specified an xml file to load.");
return 0;
}
g_message ("super-admin %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("super-admin %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
+ g_message ("super-admin %s allowed to paragraph (exclude_null).",
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "paragraph"), TRUE) ? "is" : "isn't"));
g_message ("writer %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("writer %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
+
+ g_message ("writer-child %s child of writer",
+ (autoz_role_is_child (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_role_from_id (autoz, "writer")) ? "is" : "isn't"));
+ g_message ("read-only %s child of super-admin",
+ (autoz_role_is_child (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_role_from_id (autoz, "super-admin")) ? "is" : "isn't"));
+
+ g_message ("page %s child of paragraph",
+ (autoz_resource_is_child (autoz, autoz_get_resource_from_id (autoz, "page"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ g_message ("paragraph %s child of page",
+ (autoz_resource_is_child (autoz, autoz_get_resource_from_id (autoz, "paragraph"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
return 0;
}
}
g_message ("super-admin %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("super-admin %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
g_message ("writer %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("writer %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
g_message ("writer-child %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "writer-child"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to page.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "page")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "page"), FALSE) ? "is" : "isn't"));
g_message ("read-only %s allowed to paragraph.",
- (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "paragraph")) ? "is" : "isn't"));
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "read-only"), autoz_get_resource_from_id (autoz, "paragraph"), FALSE) ? "is" : "isn't"));
return 0;
}