update con conf + test x auth SOLO sulla subdir del SITE
This commit is contained in:
Vendored
+1
-1
@@ -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'
|
||||
|
||||
@@ -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,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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+17
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user