]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Utilizzo di Territorio::init.
authorAndrea Zagli <azagli@libero.it>
Sat, 2 Dec 2017 11:47:07 +0000 (12:47 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 2 Dec 2017 11:47:07 +0000 (12:47 +0100)
docs/organigramma/examples/organigramma.conf
src/main.c
src/persona.c

index 1c39a6fe298df0b8d4edf639fe460eda4c6ee846..206886a8de1dc5bc43a18f458ad97601127e9fd5 100644 (file)
@@ -1,7 +1,7 @@
-[DB_TERRITORIO]
+[TERRITORIO_DB]
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=territorio
 
-[ZAKAUTHO_TERRITORIO]
+[TERRITORIO_ZAKAUTHO]
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
 
 [libzakauthe]
index 8b96e35c584b06737e47b18ca69059aa72d60c6d..483156c3e572130f34e5d854d9c5ed29b3c5d0bf 100644 (file)
@@ -309,7 +309,7 @@ main (int argc, char *argv[])
        commons = g_new0 (OrganigrammaCommons, 1);
        commons->utente = utente;
 
-       commons->territorio_commons = g_new0 (TerritorioCommons, 1);
+       commons->territorio_commons = territorio_init (confi, "TERRITORIO_");
        commons->territorio_commons->utente = utente;
 
 #ifdef G_OS_WIN32
@@ -326,8 +326,6 @@ main (int argc, char *argv[])
                {
                        commons->guidir = g_strdup (GUIDIR);
                        commons->formdir = g_strdup (FORMDIR);
-                       commons->territorio_commons->guidir = g_build_filename ("/mingw", "share", "territorio", "gui", NULL);
-                       commons->territorio_commons->formdir = g_build_filename ("/mingw", "share", "territorio", "form", NULL);
                }
        else
                {
@@ -336,21 +334,16 @@ main (int argc, char *argv[])
 
                        commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
                        commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL);
-                       commons->territorio_commons->guidir = g_build_filename (moddir, "share", "territorio", "gui", NULL);
-                       commons->territorio_commons->formdir = g_build_filename (moddir, "share", "territorio", "form", NULL);
                }
 
 #else
 
        commons->guidir = g_strdup (GUIDIR);
        commons->formdir = g_strdup (FORMDIR);
-       commons->territorio_commons->guidir = g_build_filename ("/usr", "local", "share", "territorio", "gui", NULL);
-       commons->territorio_commons->formdir = g_build_filename ("/usr", "local", "share", "territorio", "form", NULL);
 
 #endif
 
        commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL);
-       commons->territorio_commons->guifile = g_build_filename (commons->territorio_commons->guidir, "territorio.gui", NULL);
 
        /* leggo i parametri per libzakautho */
        cnc_string = zak_confi_path_get_value (confi, "ZAKAUTHO/cnc_string");
@@ -424,47 +417,6 @@ main (int argc, char *argv[])
                        g_error ("Errore nella connessione al database: %s", cnc_string);
                }
 
-       /* leggo la stringa di connessione al db territorio */
-       cnc_string = zak_confi_path_get_value (confi, "DB_TERRITORIO/cnc_string");
-       if (cnc_string == NULL)
-               {
-                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione.");
-               }
-
-       commons->territorio_commons->gdaex = gdaex_new_from_string (cnc_string);
-       if (commons->territorio_commons->gdaex == NULL)
-               {
-                       g_error ("Errore nella connessione al database: %s", cnc_string);
-               }
-
-       /* leggo i parametri per libautoz di territorio */
-       cnc_string = zak_confi_path_get_value (confi, "ZAKAUTHO_TERRITORIO/cnc_string");
-       if (cnc_string == NULL)
-               {
-                       g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione.");
-                       return 0;
-               }
-
-       error = NULL;
-       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
-       if (gdacon == NULL)
-               {
-                       g_warning ("Impossibile creare la connessione al db per libzakautho di territorio: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
-                       return 0;
-               }
-
-       commons->territorio_commons->autoz = zak_autho_new ();
-       if (commons->territorio_commons->autoz == NULL)
-               {
-                       g_warning ("Impossibile creare l'oggetto per libzakautho.");
-                       return 0;
-               }
-       if (!zak_autho_load_from_db (commons->territorio_commons->autoz, gdacon, NULL, TRUE))
-               {
-                       g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
-                       return 0;
-               }
-
        commons->territorio_commons->role_utente = zak_autho_get_role_from_id (commons->territorio_commons->autoz, commons->territorio_commons->utente);
        if (commons->territorio_commons->role_utente == NULL)
                {
@@ -474,7 +426,6 @@ main (int argc, char *argv[])
 
        /* gtkbuilder */
        commons->gtkbuilder = gtk_builder_new ();
-       commons->territorio_commons->gtkbuilder = gtk_builder_new ();
 
        error = NULL;
        gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile,
index 8e958b3136c02dd2fb309f86402a02b877718bd3..1b913cdc6812ba25c4c29df98b41c90c6de4e9c0 100644 (file)
@@ -1215,7 +1215,7 @@ static gchar
 
        if (ht_comune != NULL)
                {
-                       g_string_append (ret, g_hash_table_lookup (ht_comune, "nome"));
+                       g_string_append (ret, g_value_get_string (g_hash_table_lookup (ht_comune, "nome")));
                }
 
        return ret->str;