From 53dfb71fea844a56f9e8da982d247db352551598 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Thu, 6 Dec 2012 11:00:34 +0100 Subject: [PATCH] Bugfixes due to copy/paste. --- .cproject | 42 +++++++++++++ .project | 26 ++++++++ data/autoz-gui/gui/autoz-gui.ui | 103 +++++++++----------------------- src/authorization.c | 3 +- src/authorizations.c | 4 +- src/resource.c | 1 + src/role.c | 1 + 7 files changed, 103 insertions(+), 77 deletions(-) create mode 100644 .cproject create mode 100644 .project diff --git a/.cproject b/.cproject new file mode 100644 index 0000000..93af0a2 --- /dev/null +++ b/.cproject @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..e6d3d6c --- /dev/null +++ b/.project @@ -0,0 +1,26 @@ + + + autoz-gui + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + + diff --git a/data/autoz-gui/gui/autoz-gui.ui b/data/autoz-gui/gui/autoz-gui.ui index 681a72a..cdc38d6 100644 --- a/data/autoz-gui/gui/autoz-gui.ui +++ b/data/autoz-gui/gui/autoz-gui.ui @@ -1,6 +1,7 @@ + False 5 @@ -16,13 +17,12 @@ Andrea Zagli <azagli@libero.it> True - + True False - vertical 2 - + True False end @@ -139,6 +139,10 @@ True False • + False + False + True + True True @@ -149,11 +153,9 @@ ... - False True True True - False False @@ -198,12 +200,9 @@ - False True True False - False - 0.5 True True @@ -217,12 +216,9 @@ - False True True False - False - 0.5 True True radiobutton1 @@ -275,6 +271,10 @@ False • True + False + False + True + True True @@ -285,11 +285,9 @@ ... - False True True True - False False @@ -334,11 +332,9 @@ gtk-cancel - False True True True - False True @@ -350,11 +346,9 @@ gtk-save - False True True True - False True @@ -404,6 +398,8 @@ True True + automatic + automatic etched-in @@ -412,9 +408,6 @@ lstore_authorizations True 1 - - - Resource @@ -472,11 +465,9 @@ gtk-new - False True True True - False True True @@ -489,11 +480,9 @@ gtk-edit - False True True True - False True @@ -505,11 +494,9 @@ gtk-delete - False True True True - False True @@ -545,7 +532,6 @@ False - False True False _File @@ -557,7 +543,6 @@ gtk-open - False True False True @@ -568,7 +553,6 @@ gtk-close - False True False True @@ -585,7 +569,6 @@ gtk-quit - False True False True @@ -599,7 +582,6 @@ - False True False _View @@ -610,7 +592,6 @@ False - False True False _Roles @@ -620,7 +601,6 @@ - False True False Re_sources @@ -630,7 +610,6 @@ - False True False _Authorizations @@ -644,7 +623,6 @@ - False True False A_iuto @@ -656,7 +634,6 @@ gtk-about - False True False True @@ -739,6 +716,10 @@ True True • + False + False + True + True True @@ -785,11 +766,9 @@ gtk-cancel - False True True True - False True @@ -801,11 +780,9 @@ gtk-open - False True True True - False True @@ -936,6 +913,10 @@ True 255 • + False + False + True + True 1 @@ -961,11 +942,9 @@ gtk-cancel - False True True True - False True @@ -977,11 +956,9 @@ gtk-save - False True True True - False True @@ -1018,6 +995,8 @@ True True + automatic + automatic etched-in @@ -1027,9 +1006,6 @@ False True 1 - - - Resources @@ -1061,11 +1037,9 @@ gtk-new - False True True True - False True True @@ -1078,11 +1052,9 @@ gtk-edit - False True True True - False True @@ -1094,11 +1066,9 @@ gtk-delete - False True True True - False True @@ -1110,11 +1080,9 @@ gtk-cancel - False True True True - False True @@ -1126,11 +1094,9 @@ gtk-ok - False True True True - False True @@ -1221,6 +1187,10 @@ True 255 ● + False + False + True + True 1 @@ -1246,11 +1216,9 @@ gtk-cancel - False True True True - False True @@ -1262,11 +1230,9 @@ gtk-save - False True True True - False True @@ -1303,6 +1269,8 @@ True True + automatic + automatic etched-in @@ -1312,9 +1280,6 @@ False True 1 - - - Roles @@ -1346,11 +1311,9 @@ gtk-new - False True True True - False True True @@ -1363,11 +1326,9 @@ gtk-edit - False True True True - False True @@ -1379,11 +1340,9 @@ gtk-delete - False True True True - False True @@ -1395,11 +1354,9 @@ gtk-cancel - False True True True - False True @@ -1411,11 +1368,9 @@ gtk-ok - False True True True - False True diff --git a/src/authorization.c b/src/authorization.c index 44d4656..5029095 100644 --- a/src/authorization.c +++ b/src/authorization.c @@ -161,13 +161,14 @@ authorization_load (Authorization *authorization) GdaStatement *stmt; GdaDataModel *dm; - sql = g_strdup_printf ("SELECT id_roles, id_resource, type" + sql = g_strdup_printf ("SELECT id_roles, id_resources, type" " FROM %srules" " WHERE id = %d", priv->commons->prefix, priv->id); stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); g_free (sql); + error = NULL; dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error); g_object_unref (stmt); if (dm != NULL && gda_data_model_get_n_rows (dm) == 1) diff --git a/src/authorizations.c b/src/authorizations.c index 3f31624..74df47f 100644 --- a/src/authorizations.c +++ b/src/authorizations.c @@ -189,7 +189,7 @@ authorizations_load (Authorizations *authorizations) " ru.type" " FROM %srules AS ru" " INNER JOIN %sroles AS ro ON ru.id_roles = ro.id" - " INNER JOIN %sresources AS re ON ru.id_resources = re.id" + " LEFT JOIN %sresources AS re ON ru.id_resources = re.id" " ORDER BY ro.role_id, re.resource_id, ru.type", priv->commons->prefix, priv->commons->prefix, @@ -241,7 +241,7 @@ authorizations_edit (Authorizations *authorizations) g_signal_connect (G_OBJECT (c), "updated", G_CALLBACK (authorizations_on_authorization_updated), (gpointer)authorizations); - w = role_get_widget (c); + w = authorization_get_widget (c); gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); gtk_widget_show_all (w); } diff --git a/src/resource.c b/src/resource.c index 1b110fa..aa299e1 100644 --- a/src/resource.c +++ b/src/resource.c @@ -166,6 +166,7 @@ resource_load (Resource *resource) priv->id); stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); g_free (sql); + error = NULL; dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error); g_object_unref (stmt); if (dm != NULL && gda_data_model_get_n_rows (dm) == 1) diff --git a/src/role.c b/src/role.c index 1606850..c391a73 100644 --- a/src/role.c +++ b/src/role.c @@ -166,6 +166,7 @@ role_load (Role *role) priv->id); stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); g_free (sql); + error = NULL; dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error); g_object_unref (stmt); if (dm != NULL && gda_data_model_get_n_rows (dm) == 1) -- 2.49.0