update con conf + test x auth SOLO sulla subdir del SITE

This commit is contained in:
Samuele E. Locatelli
2020-01-10 14:42:59 +01:00
parent 8890023fec
commit 7b196080fd
7 changed files with 63 additions and 1 deletions
Vendored
+1 -1
View File
@@ -17,7 +17,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=166']) {
withEnv(['NEXT_BUILD_NUMBER=167']) {
// env.versionNumber = VersionNumber(versionNumberString : '0.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '0.7.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2019-07-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'NKC'
+8
View File
@@ -283,6 +283,7 @@
<Content Include="PartValidation.aspx" />
<Content Include="Reordering.aspx" />
<Content Include="SecondScreen.aspx" />
<Content Include="site\TestAuth.aspx" />
<Content Include="StackManager.aspx" />
<Content Include="SyncData.aspx" />
<Content Include="Unauth.aspx" />
@@ -590,6 +591,13 @@
<Compile Include="SiteContent.master.designer.cs">
<DependentUpon>SiteContent.master</DependentUpon>
</Compile>
<Compile Include="site\TestAuth.aspx.cs">
<DependentUpon>TestAuth.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="site\TestAuth.aspx.designer.cs">
<DependentUpon>TestAuth.aspx</DependentUpon>
</Compile>
<Compile Include="StackManager.aspx.cs">
<DependentUpon>StackManager.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+4
View File
@@ -4,5 +4,9 @@
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h1>User Unauthorized</h1>
<%: User.Identity.Name %>
<uc1:tpl_WIP runat="server" ID="tpl_WIP" />
</asp:Content>
+10
View File
@@ -397,6 +397,16 @@
-->
<security allowRemoteAccess="false"/>
</elmah>
<location path="site">
<system.web>
<!--<authentication mode="Windows"></authentication>-->
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
<location path="elmah.axd" inheritInChildApplications="false">
<system.web>
<httpHandlers>
+6
View File
@@ -0,0 +1,6 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="TestAuth.aspx.cs" Inherits="NKC_WF.site.TestAuth" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h1>User Auth test</h1>
<%: User.Identity.Name %>
</asp:Content>
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.site
{
public partial class TestAuth : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace NKC_WF.site
{
public partial class TestAuth
{
}
}