diff --git a/Projects/WebGIM/GIM_data/bin/GIM_data.dll b/Projects/WebGIM/GIM_data/bin/GIM_data.dll index 93772a6..34c8df4 100644 Binary files a/Projects/WebGIM/GIM_data/bin/GIM_data.dll and b/Projects/WebGIM/GIM_data/bin/GIM_data.dll differ diff --git a/Projects/WebGIM/GIM_data/bin/SteamWare.dll b/Projects/WebGIM/GIM_data/bin/SteamWare.dll index b2dc936..f9d5d8b 100644 Binary files a/Projects/WebGIM/GIM_data/bin/SteamWare.dll and b/Projects/WebGIM/GIM_data/bin/SteamWare.dll differ diff --git a/Projects/WebGIM/GIM_site/Bootstrap.Master.cs b/Projects/WebGIM/GIM_site/Bootstrap.Master.cs index 1aa8a85..953a75f 100644 --- a/Projects/WebGIM/GIM_site/Bootstrap.Master.cs +++ b/Projects/WebGIM/GIM_site/Bootstrap.Master.cs @@ -21,7 +21,7 @@ namespace GIM_site } mod_testata.eh_nuovaRicerca += Mod_testata_eh_nuovaRicerca; } - + private void Mod_testata_eh_nuovaRicerca(object sender, EventArgs e) { if (eh_Search_Submit != null) diff --git a/Projects/WebGIM/GIM_site/GIM_site.csproj b/Projects/WebGIM/GIM_site/GIM_site.csproj index b8cd32a..0d96ae5 100644 --- a/Projects/WebGIM/GIM_site/GIM_site.csproj +++ b/Projects/WebGIM/GIM_site/GIM_site.csproj @@ -332,7 +332,6 @@ - @@ -941,48 +940,6 @@ ViewSwitcher.ascx - - Ajax.master - ASPXCodeBehind - - - Ajax.master - - - AjaxSearch.master - ASPXCodeBehind - - - AjaxSearch.master - - - AjaxSearchEmpty.master - ASPXCodeBehind - - - AjaxSearchEmpty.master - - - AjaxSimple.master - ASPXCodeBehind - - - AjaxSimple.master - - - AjaxSimpleUpload.master - ASPXCodeBehind - - - AjaxSimpleUpload.master - - - AjaxTitle.master - ASPXCodeBehind - - - AjaxTitle.master - anagAmbitiGuasto.aspx ASPXCodeBehind @@ -1081,13 +1038,6 @@ forceUser.aspx - - gestAnagrTbl.aspx - ASPXCodeBehind - - - gestAnagrTbl.aspx - gestioneCausali.aspx ASPXCodeBehind @@ -1137,13 +1087,6 @@ macchine.aspx - - MasterAjax.master - ASPXCodeBehind - - - MasterAjax.master - menu.aspx ASPXCodeBehind @@ -1575,12 +1518,6 @@ - - - - - - @@ -1688,7 +1625,6 @@ - @@ -1793,6 +1729,7 @@ + diff --git a/Projects/WebGIM/GIM_site/Web.config b/Projects/WebGIM/GIM_site/Web.config index 3030f40..ef59bf2 100644 --- a/Projects/WebGIM/GIM_site/Web.config +++ b/Projects/WebGIM/GIM_site/Web.config @@ -98,7 +98,7 @@ - + diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_login.ascx.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_login.ascx.cs index 9e9f60a..903ef3c 100644 --- a/Projects/WebGIM/GIM_site/WebUserControls/mod_login.ascx.cs +++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_login.ascx.cs @@ -77,8 +77,8 @@ public partial class mod_login : ApplicationUserControl } else { - lblMessage.Text = String.Format("{0}
There are some problems instatiating user: {1}/{2}", user_std.UtSn.Traduci("AccessFail"), dom_user[0], dom_user[1]); - SteamWare.logger.lg.scriviLog(String.Format("Accesso fallito, problemi ad istanziare l'utente {0}/{1}", dom_user[0], dom_user[1]), SteamWare.tipoLog.ERROR); + lblMessage.Text = String.Format("{0}
There are some problems instantiating user: {1}/{2}", user_std.UtSn.Traduci("AccessFail"), dom_user[0], dom_user[1]); + SteamWare.logger.lg.scriviLog(String.Format("Accesso fallito, problemi ad instanziare l'utente {0}/{1}", dom_user[0], dom_user[1]), SteamWare.tipoLog.ERROR); if (Login_Error != null) { Login_Error(this, new EventArgs()); diff --git a/Projects/WebGIM/GIM_site/WebUserControls/mod_testata.ascx.cs b/Projects/WebGIM/GIM_site/WebUserControls/mod_testata.ascx.cs index 9b655d4..f391bc2 100644 --- a/Projects/WebGIM/GIM_site/WebUserControls/mod_testata.ascx.cs +++ b/Projects/WebGIM/GIM_site/WebUserControls/mod_testata.ascx.cs @@ -24,8 +24,13 @@ namespace GIM_site.WebUserControls // se l'utente NON c'è torno a login... if (!user_std.UtSn.isAuth) { - Session["nextPage"] = Request.Url.LocalPath.Split('/').Last(); - Response.Redirect("login.aspx"); + string nextPage = Request.Url.LocalPath.Split('/').Last(); + // solo SE non sono già su login (x evitare loop...) + if (nextPage != "login") + { + Session["nextPage"] = nextPage; + Response.Redirect("login"); + } } else { diff --git a/Projects/WebGIM/GIM_site/bin/GIM_data.dll b/Projects/WebGIM/GIM_site/bin/GIM_data.dll index 93772a6..34c8df4 100644 Binary files a/Projects/WebGIM/GIM_site/bin/GIM_data.dll and b/Projects/WebGIM/GIM_site/bin/GIM_data.dll differ diff --git a/Projects/WebGIM/GIM_site/bin/GIM_site.dll b/Projects/WebGIM/GIM_site/bin/GIM_site.dll index 442aa03..60a7864 100644 Binary files a/Projects/WebGIM/GIM_site/bin/GIM_site.dll and b/Projects/WebGIM/GIM_site/bin/GIM_site.dll differ diff --git a/Projects/WebGIM/GIM_site/bin/GIM_site.dll.config b/Projects/WebGIM/GIM_site/bin/GIM_site.dll.config index 3030f40..ef59bf2 100644 --- a/Projects/WebGIM/GIM_site/bin/GIM_site.dll.config +++ b/Projects/WebGIM/GIM_site/bin/GIM_site.dll.config @@ -98,7 +98,7 @@ - + diff --git a/Projects/WebGIM/GIM_site/bin/SteamWare.dll b/Projects/WebGIM/GIM_site/bin/SteamWare.dll index b2dc936..f9d5d8b 100644 Binary files a/Projects/WebGIM/GIM_site/bin/SteamWare.dll and b/Projects/WebGIM/GIM_site/bin/SteamWare.dll differ diff --git a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx index 6a80ae6..78d7a15 100644 --- a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx +++ b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx @@ -1,9 +1,25 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxTitle.master" AutoEventWireup="true" Inherits="dettaglioIntervento" Codebehind="dettaglioIntervento.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="dettaglioIntervento" CodeBehind="dettaglioIntervento.aspx.cs" %> <%@ Register Src="~/WebUserControls/mod_dettaglioIntervento.ascx" TagName="mod_dettaglioIntervento" TagPrefix="uc2" %> <%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc3" %> - - - + + + + + + +
+
+
+
+

<%: traduci("DettInterventoLong") %>

+
+
+
+ + +
+
+
diff --git a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.cs b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.cs index ce11c00..3f53f65 100644 --- a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.cs +++ b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class dettaglioIntervento : System.Web.UI.Page +public partial class dettaglioIntervento : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.designer.cs b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.designer.cs index a719f19..8b5b132 100644 --- a/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/dettaglioIntervento.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/elencoRichieste.aspx b/Projects/WebGIM/GIM_site/elencoRichieste.aspx index 970e2bb..7b1d5de 100644 --- a/Projects/WebGIM/GIM_site/elencoRichieste.aspx +++ b/Projects/WebGIM/GIM_site/elencoRichieste.aspx @@ -1,12 +1,26 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSearch.master" AutoEventWireup="true" Inherits="elencoRichieste" Codebehind="elencoRichieste.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="elencoRichieste" CodeBehind="elencoRichieste.aspx.cs" %> <%@ Register Src="~/WebUserControls/mod_elencoRichieste.ascx" TagName="mod_elencoRichieste" TagPrefix="uc1" %> -<%@ Register Src="~/WebUserControls/mod_dettaglioIntervento.ascx" TagName="mod_dettaglioIntervento" - TagPrefix="uc2" %> - <%@ Register Src="~/WebUserControls/mod_fixCal.ascx" tagname="mod_fixCal" tagprefix="uc3" %> +<%@ Register Src="~/WebUserControls/mod_dettaglioIntervento.ascx" TagName="mod_dettaglioIntervento" TagPrefix="uc2" %> +<%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc3" %> <%@ Register Src="~/WebUserControls/mod_filtraMtzProg.ascx" TagPrefix="uc1" TagName="mod_filtraMtzProg" %> - - - + + + + + +
+
+
+
+

<%: traduci("ElencoRichiesteLong") %>

+
+
+
+ + +
+
+
diff --git a/Projects/WebGIM/GIM_site/elencoRichieste.aspx.cs b/Projects/WebGIM/GIM_site/elencoRichieste.aspx.cs index 0323a03..ef6592f 100644 --- a/Projects/WebGIM/GIM_site/elencoRichieste.aspx.cs +++ b/Projects/WebGIM/GIM_site/elencoRichieste.aspx.cs @@ -3,14 +3,15 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class elencoRichieste : System.Web.UI.Page +public partial class elencoRichieste : UserPage { protected void Page_Load(object sender, EventArgs e) { mod_filtraMtzProg.eh_newFiltroSel += new EventHandler(mod_filtraMtzProg1_eh_newFiltroSel); mod_elencoRichieste1.eh_selValore += new EventHandler(mod_elencoRichieste1_eh_selValore); - ((AjaxSearch)Master).eh_Search_Submit += elencoRichieste_eh_Search_Submit; + ((GIM_site.FullPage)Master).eh_Search_Submit += elencoRichieste_eh_Search_Submit; } /// diff --git a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx index 8f7a190..317fdf7 100644 --- a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx +++ b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx @@ -1,8 +1,23 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxTitle.master" AutoEventWireup="true" Inherits="famiglieMacchine" Codebehind="famiglieMacchine.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="famiglieMacchine" CodeBehind="famiglieMacchine.aspx.cs" %> -<%@ Register Src="~/WebUserControls/mod_famiglieMacchine.ascx" tagname="mod_famiglieMacchine" tagprefix="uc1" %> +<%@ Register Src="~/WebUserControls/mod_famiglieMacchine.ascx" TagName="mod_famiglieMacchine" TagPrefix="uc1" %> - - + + + + + +
+
+
+
+

<%: traduci("AnagAmbitiGuastoLong") %>

+
+
+
+ +
+
+
diff --git a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.cs b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.cs index 346458b..dce544f 100644 --- a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.cs +++ b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class famiglieMacchine : System.Web.UI.Page +public partial class famiglieMacchine : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.designer.cs b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.designer.cs index 06d91a7..3a10c66 100644 --- a/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/famiglieMacchine.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx index 9a45866..6d08ac7 100644 --- a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx +++ b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx @@ -1,8 +1,24 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSearch.master" AutoEventWireup="true" Inherits="gestUtentiGIM" Codebehind="gestUtentiGIM.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="gestUtentiGIM" CodeBehind="gestUtentiGIM.aspx.cs" %> -<%@ Register Src="~/WebUserControls/mod_gestUtentiGIM.ascx" tagname="mod_gestUtentiGIM" tagprefix="uc1" %> +<%@ Register Src="~/WebUserControls/mod_gestUtentiGIM.ascx" TagName="mod_gestUtentiGIM" TagPrefix="uc1" %> - - + + + + + +
+
+
+
+

<%: traduci("GestioneUtentiLong") %>

+
+
+
+ +
+
+
+ diff --git a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.cs b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.cs index 654fc22..804609a 100644 --- a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.cs +++ b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class gestUtentiGIM : System.Web.UI.Page +public partial class gestUtentiGIM : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.designer.cs b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.designer.cs index 546779b..18f5743 100644 --- a/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/gestUtentiGIM.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/gestioneCausali.aspx b/Projects/WebGIM/GIM_site/gestioneCausali.aspx index 8a94aa1..b2833b8 100644 --- a/Projects/WebGIM/GIM_site/gestioneCausali.aspx +++ b/Projects/WebGIM/GIM_site/gestioneCausali.aspx @@ -1,8 +1,24 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxTitle.master" AutoEventWireup="true" Inherits="gestioneCausali" Codebehind="gestioneCausali.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="gestioneCausali" CodeBehind="gestioneCausali.aspx.cs" %> -<%@ Register Src="~/WebUserControls/mod_gestCausali.ascx" tagname="mod_gestCausali" tagprefix="uc1" %> +<%@ Register Src="~/WebUserControls/mod_gestCausali.ascx" TagName="mod_gestCausali" TagPrefix="uc1" %> - - + + + + + +
+
+
+
+

<%: traduci("GestioneCausaliLong") %>

+
+
+
+ +
+
+
+ diff --git a/Projects/WebGIM/GIM_site/gestioneCausali.aspx.cs b/Projects/WebGIM/GIM_site/gestioneCausali.aspx.cs index 1c1eae8..20665df 100644 --- a/Projects/WebGIM/GIM_site/gestioneCausali.aspx.cs +++ b/Projects/WebGIM/GIM_site/gestioneCausali.aspx.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class gestioneCausali : System.Web.UI.Page +public partial class gestioneCausali : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/gestioneCausali.aspx.designer.cs b/Projects/WebGIM/GIM_site/gestioneCausali.aspx.designer.cs index 49650b6..0e400c5 100644 --- a/Projects/WebGIM/GIM_site/gestioneCausali.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/gestioneCausali.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/help.aspx b/Projects/WebGIM/GIM_site/help.aspx index 91663a7..300c399 100644 --- a/Projects/WebGIM/GIM_site/help.aspx +++ b/Projects/WebGIM/GIM_site/help.aspx @@ -1,7 +1,22 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxTitle.master" AutoEventWireup="true" Inherits="help" Codebehind="help.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="help" CodeBehind="help.aspx.cs" %> - -

- -

+ + + + + +
+
+
+
+

<%: traduci("HelpLong") %>

+
+
+
+

+ +

+
+
+
diff --git a/Projects/WebGIM/GIM_site/help.aspx.cs b/Projects/WebGIM/GIM_site/help.aspx.cs index 5c1b203..5fe9091 100644 --- a/Projects/WebGIM/GIM_site/help.aspx.cs +++ b/Projects/WebGIM/GIM_site/help.aspx.cs @@ -5,17 +5,8 @@ using System.Web.UI; using System.Web.UI.WebControls; using SteamWare; -public partial class help : System.Web.UI.Page +public partial class help : UserPage { - /// - /// wrapper traduzione - /// - /// - /// - public string traduci(object lemma) - { - return user_std.UtSn.Traduci(lemma.ToString()); - } protected void Page_Load(object sender, EventArgs e) { lnkHelp.Text = traduci("ApriManualeHelp"); diff --git a/Projects/WebGIM/GIM_site/impianti.aspx b/Projects/WebGIM/GIM_site/impianti.aspx index d6a5b87..54f4c37 100644 --- a/Projects/WebGIM/GIM_site/impianti.aspx +++ b/Projects/WebGIM/GIM_site/impianti.aspx @@ -1,10 +1,27 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSearch.master" AutoEventWireup="true" Inherits="impianti" Codebehind="impianti.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="impianti" CodeBehind="impianti.aspx.cs" %> <%@ Register Src="~/WebUserControls/mod_impianti.ascx" TagName="mod_impianti" TagPrefix="uc1" %> <%@ Register Src="~/WebUserControls/mod_macchine.ascx" TagName="mod_macchine" TagPrefix="uc2" %> <%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc3" %> - - - - + + + + + +
+
+
+
+

<%: traduci("GestImpiantiLong") %>

+
+
+
+ + + +
+
+
+
+ diff --git a/Projects/WebGIM/GIM_site/impianti.aspx.cs b/Projects/WebGIM/GIM_site/impianti.aspx.cs index bf9733e..ee705f4 100644 --- a/Projects/WebGIM/GIM_site/impianti.aspx.cs +++ b/Projects/WebGIM/GIM_site/impianti.aspx.cs @@ -5,7 +5,7 @@ using System.Web.UI; using System.Web.UI.WebControls; using SteamWare; -public partial class impianti : System.Web.UI.Page +public partial class impianti : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/insertRichiesta.aspx b/Projects/WebGIM/GIM_site/insertRichiesta.aspx index 4d50ee7..301478e 100644 --- a/Projects/WebGIM/GIM_site/insertRichiesta.aspx +++ b/Projects/WebGIM/GIM_site/insertRichiesta.aspx @@ -1,11 +1,27 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Ajax.master" AutoEventWireup="true" Inherits="insertRichiesta" Codebehind="insertRichiesta.aspx.cs" %> -<%@ MasterType virtualPath="~/WebMasterPages/Ajax.master"%> -<%@ Register Src="~/WebUserControls/mod_insertRichiesta.ascx" tagname="mod_insertRichiesta" tagprefix="uc1" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="insertRichiesta" CodeBehind="insertRichiesta.aspx.cs" %> -<%@ Register Src="~/WebUserControls/mod_fixCal.ascx" tagname="mod_fixCal" tagprefix="uc2" %> +<%--<%@ MasterType VirtualPath="~/FullPage.master" %>--%> +<%@ Register Src="~/WebUserControls/mod_insertRichiesta.ascx" TagName="mod_insertRichiesta" TagPrefix="uc1" %> - - - +<%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc2" %> + + + + + + +
+
+
+
+

<%: traduci("AnagAmbitiGuastoLong") %>

+
+
+
+ + +
+
+
diff --git a/Projects/WebGIM/GIM_site/insertRichiesta.aspx.cs b/Projects/WebGIM/GIM_site/insertRichiesta.aspx.cs index 6c04dc0..c951d9f 100644 --- a/Projects/WebGIM/GIM_site/insertRichiesta.aspx.cs +++ b/Projects/WebGIM/GIM_site/insertRichiesta.aspx.cs @@ -3,34 +3,11 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class insertRichiesta : System.Web.UI.Page +public partial class insertRichiesta : UserPage { protected void Page_Load(object sender, EventArgs e) - { - mod_insertRichiesta1.eh_newReq += new EventHandler(mod_insertRichiesta1_eh_newReq); - mod_insertRichiesta1.eh_done += new EventHandler(mod_insertRichiesta1_eh_done); - if (!Page.IsPostBack) - { - Master.sxMenuVisible = true; - } - } - /// - /// metto visibilità pannello laterale - /// - /// - /// - void mod_insertRichiesta1_eh_done(object sender, EventArgs e) - { - Master.sxMenuVisible = true; - } - /// - /// tolgo visibilità menù sx - /// - /// - /// - void mod_insertRichiesta1_eh_newReq(object sender, EventArgs e) - { - Master.sxMenuVisible = false; + { } } diff --git a/Projects/WebGIM/GIM_site/insertRichiesta.aspx.designer.cs b/Projects/WebGIM/GIM_site/insertRichiesta.aspx.designer.cs index 05dadcc..f76070d 100644 --- a/Projects/WebGIM/GIM_site/insertRichiesta.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/insertRichiesta.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -30,15 +29,5 @@ public partial class insertRichiesta { /// protected global::mod_fixCal mod_fixCal1; - /// - /// Master property. - /// - /// - /// Auto-generated property. - /// - public new Ajax Master { - get { - return ((Ajax)(base.Master)); - } - } + } diff --git a/Projects/WebGIM/GIM_site/login.aspx b/Projects/WebGIM/GIM_site/login.aspx index ff871ae..e38b6ca 100644 --- a/Projects/WebGIM/GIM_site/login.aspx +++ b/Projects/WebGIM/GIM_site/login.aspx @@ -1,9 +1,25 @@ -<%@ Page Language="C#" MasterPageFile="~/WebMasterPages/MasterAjax.master" AutoEventWireup="true" - Inherits="login" Title="Login" Codebehind="login.aspx.cs" %> +<%@ Page Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" + Inherits="login" Title="Login" CodeBehind="login.aspx.cs" %> <%@ Register Src="~/WebUserControls/mod_login.ascx" TagName="mod_login" TagPrefix="uc1" %> - -
- + + + + + + +
+
+
+
+

LOGIN

+
+
+
+
+ +
+
+
diff --git a/Projects/WebGIM/GIM_site/login.aspx.cs b/Projects/WebGIM/GIM_site/login.aspx.cs index 77a56da..6fe7d36 100644 --- a/Projects/WebGIM/GIM_site/login.aspx.cs +++ b/Projects/WebGIM/GIM_site/login.aspx.cs @@ -18,7 +18,7 @@ public partial class login : System.Web.UI.Page string pagina = SteamWare.memLayer.ML.StringSessionObj("nextPage"); if (pagina == "") { - pagina = "menu.aspx"; + pagina = "menu"; } return pagina; } @@ -38,7 +38,7 @@ public partial class login : System.Web.UI.Page void Mod_login1_Login_Error(object sender, EventArgs e) { - Response.Redirect("./unauthorized.aspx"); + Response.Redirect("./unauthorized"); } void Mod_login1_Login_ok(object sender, EventArgs e) diff --git a/Projects/WebGIM/GIM_site/login.aspx.designer.cs b/Projects/WebGIM/GIM_site/login.aspx.designer.cs index d4aa961..b9056dc 100644 --- a/Projects/WebGIM/GIM_site/login.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/login.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/macchine.aspx b/Projects/WebGIM/GIM_site/macchine.aspx index 21af336..fdf3bd4 100644 --- a/Projects/WebGIM/GIM_site/macchine.aspx +++ b/Projects/WebGIM/GIM_site/macchine.aspx @@ -1,10 +1,24 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSearch.master" AutoEventWireup="true" Inherits="macchine" Codebehind="macchine.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="macchine" CodeBehind="macchine.aspx.cs" %> -<%@ Register Src="~/WebUserControls/mod_macchine.ascx" tagname="mod_macchine" tagprefix="uc1" %> +<%@ Register Src="~/WebUserControls/mod_macchine.ascx" TagName="mod_macchine" TagPrefix="uc1" %> <%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc3" %> - - - + + + + + +
+
+
+
+

<%: traduci("MacchineLong") %>

+
+
+
+ + +
+
+
- diff --git a/Projects/WebGIM/GIM_site/macchine.aspx.cs b/Projects/WebGIM/GIM_site/macchine.aspx.cs index 5004cf6..b66716a 100644 --- a/Projects/WebGIM/GIM_site/macchine.aspx.cs +++ b/Projects/WebGIM/GIM_site/macchine.aspx.cs @@ -3,8 +3,9 @@ using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; +using SteamWare; -public partial class macchine : System.Web.UI.Page +public partial class macchine : UserPage { protected void Page_Load(object sender, EventArgs e) { diff --git a/Projects/WebGIM/GIM_site/macchine.aspx.designer.cs b/Projects/WebGIM/GIM_site/macchine.aspx.designer.cs index c34f47b..c904707 100644 --- a/Projects/WebGIM/GIM_site/macchine.aspx.designer.cs +++ b/Projects/WebGIM/GIM_site/macchine.aspx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/Projects/WebGIM/GIM_site/mtzProg.aspx b/Projects/WebGIM/GIM_site/mtzProg.aspx index ebd1380..66341d8 100644 --- a/Projects/WebGIM/GIM_site/mtzProg.aspx +++ b/Projects/WebGIM/GIM_site/mtzProg.aspx @@ -1,37 +1,44 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSearch.master" AutoEventWireup="true" Inherits="mtzProg" Codebehind="mtzProg.aspx.cs" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/FullPage.master" AutoEventWireup="true" Inherits="mtzProg" CodeBehind="mtzProg.aspx.cs" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> <%@ Register Src="~/WebUserControls/mod_elencoMtzProg.ascx" TagName="mod_elencoMtzProg" TagPrefix="uc1" %> <%@ Register Src="~/WebUserControls/mod_dettMtzProg.ascx" TagName="mod_dettMtzProg" TagPrefix="uc2" %> <%@ Register Src="~/WebUserControls/mod_fixCal.ascx" TagName="mod_fixCal" TagPrefix="uc3" %> -<%@ Register Src="~/WebUserControls/mod_mtzPrevPending.ascx" tagname="mod_mtzPrevPending" tagprefix="uc4" %> -<%@ Register src="~/WebUserControls/mod_filtraMtzProg.ascx" tagname="mod_filtraMtzProg" tagprefix="uc5" %> - - - - - - +<%@ Register Src="~/WebUserControls/mod_mtzPrevPending.ascx" TagName="mod_mtzPrevPending" TagPrefix="uc4" %> +<%@ Register Src="~/WebUserControls/mod_filtraMtzProg.ascx" TagName="mod_filtraMtzProg" TagPrefix="uc5" %> - - - - - - - - - - - - - - - - - - - + + + + +
+
+
+
+

<%: traduci("MtzProgLong") %>

+
+
+
+ + + + + + + + + + + + + + + +
+
+
+
+ diff --git a/Projects/WebGIM/GIM_site/sql/GIM_1.5_to_1.6.sql b/Projects/WebGIM/GIM_site/sql/GIM_1.5_to_1.6.sql index 55219b0..59973ae 100644 --- a/Projects/WebGIM/GIM_site/sql/GIM_1.5_to_1.6.sql +++ b/Projects/WebGIM/GIM_site/sql/GIM_1.5_to_1.6.sql @@ -123,4 +123,8 @@ exec voc.stp_insNewLemma 'chLangLong', 'Seleziona Lingua' UPDATE vocabolario SET traduzione = 'Language Selection' WHERE lemma = 'chLangLong' AND Lingua = 'EN' exec voc.stp_insNewLemma 'VocabolarioLong', 'Traduzione Interfaccia' UPDATE vocabolario SET traduzione = 'Interface translation' WHERE lemma = 'VocabolarioLong' AND Lingua = 'EN' +exec voc.stp_insNewLemma 'MacchineLong', 'Gestione Anagrafica Macchine' +UPDATE vocabolario SET traduzione = 'Machine List Management' WHERE lemma = 'MacchineLong' AND Lingua = 'EN' +exec voc.stp_insNewLemma 'DettInterventoLong', 'Dettaglio Intervento' +UPDATE vocabolario SET traduzione = 'Event Detail' WHERE lemma = 'DettInterventoLong' AND Lingua = 'EN'