# Checks for libraries.
PKG_CHECK_MODULES(ORGANIGRAMMA, [gio-2.0 >= 2.36
- gtk+-3.0 >= 3.0
- libgtkform >= 0.5.0
- libaute >= 0.0.2
- libterritorio >= 0.0.1
- libpq])
+ gtk+-3.0 >= 3.0
+ libgtkform >= 0.5.0
+ libzakauthe >= 0.0.2
+ libzakautho >= 0.0.5
+ libterritorio >= 0.0.1
+ libpq])
AC_SUBST(ORGANIGRAMMA_CFLAGS)
AC_SUBST(ORGANIGRAMMA_LIBS)
/*
- * Copyright (C) 2010-2013 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
+ * Copyright (C) 2010-2016 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
#include <libgdaex/libgdaex.h>
-#include <libautoz/autoz.h>
-#include <libautoz/role_interface.h>
+#include <libzakautho/autoz.h>
+#include <libzakautho/role_interface.h>
#include <libsolipa/libsolipa.h>
#include <libterritorio/commons.h>
const gchar *guifile;
const gchar *utente;
- Autoz *autoz;
- AutozIRole *role_utente;
+ ZakAutho *autoz;
+ ZakAuthoIRole *role_utente;
Solipa *solipa;
/*
- * Copyright (C) 2010-2013 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
+ * Copyright (C) 2010-2016 Andrea Zagli <a.zagli@comune.scandicci.fi.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <glib/gi18n-lib.h>
#include <gtk/gtk.h>
-#include <libaute.h>
-#include <libautoz/autoz.h>
+#include <libzakauthe.h>
+#include <libzakautho/autoz.h>
#include <libterritorio/commons.h>
GdaConnection *gdacon;
- Aute *aute;
+ ZakAuthe *aute;
gchar **aute_params;
gsize n_aute_params;
GSList *sl_aute_params;
/* leggo i parametri per l'autenticazione */
error = NULL;
- aute_params = g_key_file_get_keys (config, "AUTE", &n_aute_params, &error);
+ aute_params = g_key_file_get_keys (config, "ZAKAUTHE", &n_aute_params, &error);
if (aute_params == NULL)
{
g_error ("Impossibile leggere la configurazione per il sistema di autenticazione.");
for (i = 0; i < n_aute_params; i++)
{
error = NULL;
- sl_aute_params = g_slist_append (sl_aute_params, g_key_file_get_string (config, "AUTE", aute_params[i], &error));
+ sl_aute_params = g_slist_append (sl_aute_params, g_key_file_get_string (config, "ZAKAUTHE", aute_params[i], &error));
}
g_strfreev (aute_params);
/* autenticazione */
- aute = aute_new ();
- aute_set_config (aute, sl_aute_params);
+ aute = zak_authe_new ();
+ zak_authe_set_config (aute, sl_aute_params);
while (TRUE)
{
- utente = aute_autentica (aute);
+ utente = zak_authe_authe (aute);
if (utente == NULL)
{
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 libautoz */
+ /* leggo i parametri per libzakautho */
error = NULL;
- cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error);
+ cnc_string = g_key_file_get_value (config, "ZAKAUTHO", "cnc_string", &error);
if (cnc_string == NULL)
{
- g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
return 0;
}
gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
if (gdacon == NULL)
{
- g_warning ("Impossibile creare la connessione al db per libautoz: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ g_warning ("Impossibile creare la connessione al db per libzakautho: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
return 0;
}
- commons->autoz = autoz_new ();
+ commons->autoz = zak_autho_new ();
if (commons->autoz == NULL)
{
- g_warning ("Impossibile creare l'oggetto per libautoz.");
+ g_warning ("Impossibile creare l'oggetto per libzakautho.");
return 0;
}
- if (!autoz_load_from_db (commons->autoz, gdacon, NULL, TRUE))
+ if (!zak_autho_load_from_db (commons->autoz, gdacon, NULL, TRUE))
{
- g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+ g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
return 0;
}
- commons->role_utente = autoz_get_role_from_id (commons->autoz, commons->utente);
+ commons->role_utente = zak_autho_get_role_from_id (commons->autoz, commons->utente);
if (commons->role_utente == NULL)
{
- g_warning ("Utente «%s» non trovato nell configurazione di libautoz.", commons->utente);
+ g_warning ("Utente «%s» non trovato nell configurazione di libzakautho.", commons->utente);
return 0;
}
- if (!autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_ro"), FALSE)
- && !autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_rw"), FALSE))
+ if (!zak_autho_is_allowed (commons->autoz, commons->role_utente, zak_autho_get_resource_from_id (commons->autoz, "organigramma_ro"), FALSE)
+ && !zak_autho_is_allowed (commons->autoz, commons->role_utente, zak_autho_get_resource_from_id (commons->autoz, "organigramma_rw"), FALSE))
{
g_critical ("Non si è autorizzati all'utilizzo di questa applicazione.");
return 0;
/* leggo i parametri per libautoz di territorio */
error = NULL;
- cnc_string = g_key_file_get_value (config, "AUTOZ_TERRITORIO", "cnc_string", &error);
+ cnc_string = g_key_file_get_value (config, "ZAKAUTHO_TERRITORIO", "cnc_string", &error);
if (cnc_string == NULL)
{
- g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
return 0;
}
gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
if (gdacon == NULL)
{
- g_warning ("Impossibile creare la connessione al db per libautoz di territorio: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ 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 = autoz_new ();
+ commons->territorio_commons->autoz = zak_autho_new ();
if (commons->territorio_commons->autoz == NULL)
{
- g_warning ("Impossibile creare l'oggetto per libautoz.");
+ g_warning ("Impossibile creare l'oggetto per libzakautho.");
return 0;
}
- if (!autoz_load_from_db (commons->territorio_commons->autoz, gdacon, NULL, TRUE))
+ if (!zak_autho_load_from_db (commons->territorio_commons->autoz, gdacon, NULL, TRUE))
{
- g_warning ("Impossibile caricare la configurazione per libautoz dal db.");
+ g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
return 0;
}
- commons->territorio_commons->role_utente = autoz_get_role_from_id (commons->territorio_commons->autoz, commons->territorio_commons->utente);
+ 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)
{
- g_warning ("Utente \"%s\" non trovato nell configurazione di libautoz.", commons->territorio_commons->utente);
+ g_warning ("Utente \"%s\" non trovato nell configurazione di libzakautho.", commons->territorio_commons->utente);
return 0;
}
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "nodi.h"
*organigramma_nodi_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaNodi *a = ORGANIGRAMMA_NODI (g_object_new (organigramma_nodi_get_type (), NULL));
error = NULL;
gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
- g_strsplit (g_strconcat ("tstore_nodi|",
+ g_strsplit (g_strconcat ("tstore_nodi|",
(selezione ? "w_nodi" : "vbx_nodi"),
NULL), "|", -1),
&error);
organigramma_nodi_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button1")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button3")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_nodo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaNodo *a = ORGANIGRAMMA_NODO (g_object_new (organigramma_nodo_get_type (), NULL));
organigramma_nodo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button5")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button152")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_persona_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersona *a = ORGANIGRAMMA_PERSONA (g_object_new (organigramma_persona_get_type (), NULL));
organigramma_persona_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button79")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button81")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_incarico_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaIncarico *a = ORGANIGRAMMA_PERSONA_INCARICO (g_object_new (organigramma_persona_incarico_get_type (), NULL));
organigramma_persona_incarico_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button99")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button158")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_nodo_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaNodo *a = ORGANIGRAMMA_PERSONA_NODO (g_object_new (organigramma_persona_nodo_get_type (), NULL));
organigramma_persona_nodo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button92")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button159")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_nodo_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_nodi)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaNodoRecapito *a = ORGANIGRAMMA_PERSONA_NODO_RECAPITO (g_object_new (organigramma_persona_nodo_recapito_get_type (), NULL));
organigramma_persona_nodo_recapito_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button94")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button160")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaRecapito *a = ORGANIGRAMMA_PERSONA_RECAPITO (g_object_new (organigramma_persona_recapito_get_type (), NULL));
organigramma_persona_recapito_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button88")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button163")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkformui/gtkformdecoder.h>
#include <libsolipa/utils.h>
*organigramma_persona_ufficio_new (OrganigrammaCommons *commons, guint id, guint id_persone)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaUfficio *a = ORGANIGRAMMA_PERSONA_UFFICIO (g_object_new (organigramma_persona_ufficio_get_type (), NULL));
organigramma_persona_ufficio_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button84")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button161")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_persona_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersonaUfficioRecapito *a = ORGANIGRAMMA_PERSONA_UFFICIO_RECAPITO (g_object_new (organigramma_persona_ufficio_recapito_get_type (), NULL));
organigramma_persona_ufficio_recapito_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button86")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button162")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "persone.h"
guint id_uffici, GDateTime *when)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPersone *a = ORGANIGRAMMA_PERSONE (g_object_new (organigramma_persone_get_type (), NULL));
organigramma_persone_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button102")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button104")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_posizione_economica_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPosizioneEconomica *a = POSIZIONE_ECONOMICA (g_object_new (organigramma_posizione_economica_get_type (), NULL));
organigramma_posizione_economica_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button122")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button147")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "posizionieconomiche.h"
*organigramma_posizioni_economiche_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaPosizioniEconomiche *a = ORGANIGRAMMA_POSIZIONI_ECONOMICHE (g_object_new (organigramma_posizioni_economiche_get_type (), NULL));
organigramma_posizioni_economiche_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button116")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button118")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "profiliprofessionali.h"
*organigramma_profili_professionali_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaProfiliProfessionali *a = ORGANIGRAMMA_PROFILI_PROFESSIONALI (g_object_new (organigramma_profili_professionali_get_type (), NULL));
organigramma_profili_professionali_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button130")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button132")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_profilo_professionale_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaProfiloProfessionale *a = ORGANIGRAMMA_PROFILO_PROFESSIONALE (g_object_new (organigramma_profilo_professionale_get_type (), NULL));
organigramma_profilo_professionale_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button136")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button148")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "ruoli.h"
*organigramma_ruoli_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaRuoli *a = ORGANIGRAMMA_RUOLI (g_object_new (organigramma_ruoli_get_type (), NULL));
organigramma_ruoli_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button52")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button168")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ruolo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaRuolo *a = ORGANIGRAMMA_RUOLO (g_object_new (organigramma_ruolo_get_type (), NULL));
organigramma_ruolo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button172")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button173")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <libpq-fe.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libterritorio/via.h>
#include <libsolipa/utils.h>
*organigramma_struttura_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaStruttura *a = ORGANIGRAMMA_STRUTTURA (g_object_new (organigramma_struttura_get_type (), NULL));
organigramma_struttura_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button47")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button51")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <libpq-fe.h>
#include <libsolipa/libsolipa.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include "strutturaallegato.h"
*organigramma_struttura_allegato_new (OrganigrammaCommons *commons, guint id, guint id_strutture)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaStrutturaAllegato *a = ORGANIGRAMMA_STRUTTURA_ALLEGATO (g_object_new (organigramma_struttura_allegato_get_type (), NULL));
organigramma_struttura_allegato_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button189")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button190")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*/
#include <libsolipa/libsolipa.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include "strutturacollegamento.h"
*organigramma_struttura_collegamento_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaStrutturaCollegamento *a = ORGANIGRAMMA_STRUTTURA_COLLEGAMENTO (g_object_new (organigramma_struttura_collegamento_get_type (), NULL));
organigramma_struttura_collegamento_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button186")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button187")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libterritorio/vie.h>
#include <libsolipa/utils.h>
*organigramma_struttura_indirizzo_new (OrganigrammaCommons *commons, guint id, guint id_strutture)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaStrutturaIndirizzo *a = ORGANIGRAMMA_STRUTTURA_INDIRIZZO (g_object_new (organigramma_struttura_indirizzo_get_type (), NULL));
organigramma_struttura_indirizzo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button56")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button150")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "strutture.h"
*organigramma_strutture_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaStrutture *a = ORGANIGRAMMA_STRUTTURE (g_object_new (organigramma_strutture_get_type (), NULL));
organigramma_strutture_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button32")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button34")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "tipinodo.h"
*organigramma_tipi_nodo_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipiNodo *a = ORGANIGRAMMA_TIPI_NODO (g_object_new (organigramma_tipi_nodo_get_type (), NULL));
error = NULL;
gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
- g_strsplit (g_strconcat ("lstore_tipi_nodo|",
+ g_strsplit (g_strconcat ("lstore_tipi_nodo|",
(selezione ? "w_tipi_nodo" : "vbx_tipi_nodo"),
NULL), "|", -1),
&error);
organigramma_tipi_nodo_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button7")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button11")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "tipiprestazione.h"
*organigramma_tipi_prestazione_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipiPrestazione *a = ORGANIGRAMMA_TIPI_PRESTAZIONE (g_object_new (organigramma_tipi_prestazione_get_type (), NULL));
organigramma_tipi_prestazione_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button123")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button125")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "tipirapportolavoro.h"
*organigramma_tipi_rapporto_lavoro_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipiRapportoLavoro *a = ORGANIGRAMMA_TIPI_RAPPORTO_LAVORO (g_object_new (organigramma_tipi_rapporto_lavoro_get_type (), NULL));
organigramma_tipi_rapporto_lavoro_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button109")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button111")), FALSE);
-/*
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "tipirecapito.h"
*organigramma_tipi_recapito_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipiRecapito *a = ORGANIGRAMMA_TIPI_RECAPITO (g_object_new (organigramma_tipi_recapito_get_type (), NULL));
error = NULL;
gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile,
- g_strsplit (g_strconcat ("lstore_tipi_recapito|",
+ g_strsplit (g_strconcat ("lstore_tipi_recapito|",
(selezione ? "w_tipi_recapito" : "vbx_tipi_recapito"),
NULL), "|", -1),
&error);
organigramma_tipi_recapito_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button16")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button18")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_tipo_nodo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipoNodo *a = ORGANIGRAMMA_TIPO_NODO (g_object_new (organigramma_tipo_nodo_get_type (), NULL));
organigramma_tipo_nodo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button9")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button142")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_tipo_prestazione_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipoPrestazione *a = ORGANIGRAMMA_TIPO_PRESTAZIONE (g_object_new (organigramma_tipo_prestazione_get_type (), NULL));
organigramma_tipo_prestazione_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button129")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button143")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_tipo_rapporto_lavoro_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipoRapportoLavoro *a = ORGANIGRAMMA_TIPO_RAPPORTO_LAVORO (g_object_new (organigramma_tipo_rapporto_lavoro_get_type (), NULL));
organigramma_tipo_rapporto_lavoro_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button115")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button144")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <libpq-fe.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_tipo_recapito_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTipoRecapito *a = ORGANIGRAMMA_TIPO_RECAPITO (g_object_new (organigramma_tipo_recapito_get_type (), NULL));
organigramma_tipo_recapito_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button22")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button145")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "titoli.h"
*organigramma_titoli_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTitoli *a = ORGANIGRAMMA_TITOLI (g_object_new (organigramma_titoli_get_type (), NULL));
organigramma_titoli_carica (a);
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button95")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button97")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_titolo_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaTitolo *a = ORGANIGRAMMA_TITOLO (g_object_new (organigramma_titolo_get_type (), NULL));
organigramma_titolo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button106")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button146")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libsolipa/utils.h>
#include "uffici.h"
*organigramma_uffici_new (OrganigrammaCommons *commons, gboolean selezione)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUffici *a = ORGANIGRAMMA_UFFICI (g_object_new (organigramma_uffici_get_type (), NULL));
organigramma_uffici_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button23")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button25")), FALSE);
-/*
- * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <libpq-fe.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libgtkform/fielddatetime.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_new (OrganigrammaCommons *commons, gint id)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficio *a = ORGANIGRAMMA_UFFICIO (g_object_new (organigramma_ufficio_get_type (), NULL));
organigramma_ufficio_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button28")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button43")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <libpq-fe.h>
#include <libsolipa/libsolipa.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include "ufficioallegato.h"
*organigramma_ufficio_allegato_new (OrganigrammaCommons *commons, guint id, guint id_strutture)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioAllegato *a = ORGANIGRAMMA_UFFICIO_ALLEGATO (g_object_new (organigramma_ufficio_allegato_get_type (), NULL));
organigramma_ufficio_allegato_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button196")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button197")), FALSE);
-/*
- * Copyright (C) 2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2013-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*/
#include <libsolipa/libsolipa.h>
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include "ufficiocollegamento.h"
*organigramma_ufficio_collegamento_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioCollegamento *a = ORGANIGRAMMA_UFFICIO_COLLEGAMENTO (g_object_new (organigramma_ufficio_collegamento_get_type (), NULL));
organigramma_ufficio_collegamento_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button175")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button176")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_nodo_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioNodo *a = ORGANIGRAMMA_UFFICIO_NODO (g_object_new (organigramma_ufficio_nodo_get_type (), NULL));
organigramma_ufficio_nodo_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button46")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button154")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_orario_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioOrario *a = ORGANIGRAMMA_UFFICIO_ORARIO (g_object_new (organigramma_ufficio_orario_get_type (), NULL));
organigramma_ufficio_orario_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button58")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button155")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioRecapito *a = ORGANIGRAMMA_UFFICIO_RECAPITO (g_object_new (organigramma_ufficio_recapito_get_type (), NULL));
organigramma_ufficio_recapito_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button49")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button156")), FALSE);
-/*
- * Copyright (C) 2009-2013 Andrea Zagli <azagli@libero.it>
+/*
+ * Copyright (C) 2009-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include <config.h>
#endif
-#include <libautoz/autoz.h>
+#include <libzakautho/autoz.h>
#include <libgtkform/form.h>
#include <libsolipa/utils.h>
*organigramma_ufficio_stanza_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
{
GError *error;
- AutozIResource *ires1;
+ ZakAuthoIResource *ires1;
OrganigrammaUfficioStanza *a = ORGANIGRAMMA_UFFICIO_STANZA (g_object_new (organigramma_ufficio_stanza_get_type (), NULL));
organigramma_ufficio_stanza_carica (a);
}
- ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
- if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+ ires1 = zak_autho_get_resource_from_id (priv->commons->autoz, "organigramma_rw");
+ if (!zak_autho_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
{
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button139")), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button157")), FALSE);