From 7f0f361dc13538b08066cb7da6548579a063a17a Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Fri, 14 Aug 2020 09:35:35 +0200 Subject: [PATCH 1/4] new rel --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f3cda57..527ee6e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { steps { /* calcolo numero versione... diverso x branch MASTER/DEVELOP */ script { - withEnv(['NEXT_BUILD_NUMBER=329']) { + withEnv(['NEXT_BUILD_NUMBER=330']) { // env.versionNumber = VersionNumber(versionNumberString : '1.1.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true) env.versionNumber = VersionNumber(versionNumberString : '1.1.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') env.versionNumberBeta = VersionNumber(versionNumberString : '1.1.${BUILD_DATE_FORMATTED, "yyMM"}-beta.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') From 87525d4b4d30bfd9e18eef6ebd6dc5a6a26e57d3 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Fri, 14 Aug 2020 09:35:44 +0200 Subject: [PATCH 2/4] aggiunto download LPA --- NKC_WF/site/UpdMan.aspx | 10 ++++++++++ NKC_WF/site/UpdMan.aspx.designer.cs | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/NKC_WF/site/UpdMan.aspx b/NKC_WF/site/UpdMan.aspx index 79b440a..64ca2f6 100644 --- a/NKC_WF/site/UpdMan.aspx +++ b/NKC_WF/site/UpdMan.aspx @@ -45,6 +45,16 @@ +
+
+
+

LPA

+
+
+ STABLE +
+
+
diff --git a/NKC_WF/site/UpdMan.aspx.designer.cs b/NKC_WF/site/UpdMan.aspx.designer.cs index 02a7432..9a21335 100644 --- a/NKC_WF/site/UpdMan.aspx.designer.cs +++ b/NKC_WF/site/UpdMan.aspx.designer.cs @@ -41,6 +41,15 @@ namespace NKC_WF.site /// protected global::System.Web.UI.WebControls.LinkButton lbtDownloadZCode; + /// + /// Controllo hlLPA. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink hlLPA; + /// /// Controllo UpdateProgressDisplay. /// From 46b4d0df416ad04ae6abc58c1c8bd63c9ed1943d Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Fri, 14 Aug 2020 09:35:54 +0200 Subject: [PATCH 3/4] fix vari contacts --- NKC_WF/site/Contact.aspx | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/NKC_WF/site/Contact.aspx b/NKC_WF/site/Contact.aspx index bddf06d..acef28f 100644 --- a/NKC_WF/site/Contact.aspx +++ b/NKC_WF/site/Contact.aspx @@ -10,30 +10,35 @@
-
+
Egaltech srl
+
Via Cremasca 24
24052 Azzano San Paolo
Bergamo – Italy
- +39035 0444806 + + +39 035-0444806
- Support: info@egaltech.com + info@egaltech.com
-
+
+
Steamware srl
- via Briolo Fuori, 27
- 24015 San Giovanni Bianco
+
+ via Nazionale 93
+ 24068 Seriate
Bergamo – Italy
- +39 035-460560 + + +39 035-460560
- Support: info@steamware.net + info@steamware.net
From 9696a0805528ee83269c99869a618796c34ceb0d Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Fri, 14 Aug 2020 09:36:18 +0200 Subject: [PATCH 4/4] =?UTF-8?q?fix=20clear=20sessione=20utente=20pre=20log?= =?UTF-8?q?in=20x=20problema=20men=C3=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NKC_WF/NKC_WF.csproj | 8 ++++++-- NKC_WF/Web.config | 3 ++- NKC_WF/site/Default.aspx.cs | 3 +++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/NKC_WF/NKC_WF.csproj b/NKC_WF/NKC_WF.csproj index acd3b3d..cba8a56 100644 --- a/NKC_WF/NKC_WF.csproj +++ b/NKC_WF/NKC_WF.csproj @@ -292,8 +292,12 @@ - - + + Always + + + Always + diff --git a/NKC_WF/Web.config b/NKC_WF/Web.config index af03bc1..097e881 100644 --- a/NKC_WF/Web.config +++ b/NKC_WF/Web.config @@ -36,7 +36,8 @@ - + + diff --git a/NKC_WF/site/Default.aspx.cs b/NKC_WF/site/Default.aspx.cs index 8edae34..7fc9251 100644 --- a/NKC_WF/site/Default.aspx.cs +++ b/NKC_WF/site/Default.aspx.cs @@ -7,6 +7,9 @@ namespace NKC_WF { protected void Page_Load(object sender, EventArgs e) { + // resetto sessione utente + Session.Clear(); + // vado a login Response.Redirect("Login"); } ///