update pack NLog (che comunque ancora nON usa...)
This commit is contained in:
@@ -108,7 +108,7 @@
|
||||
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NLog.4.5.2\lib\net45\NLog.dll</HintPath>
|
||||
<HintPath>..\packages\NLog.4.5.3\lib\net45\NLog.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="StackExchange.Redis, Version=1.2.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\StackExchange.Redis.1.2.6\lib\net46\StackExchange.Redis.dll</HintPath>
|
||||
|
||||
@@ -139,8 +139,17 @@ namespace MoonProTablet.WebUserControls
|
||||
// recupero da anagrafica articoli...
|
||||
try
|
||||
{
|
||||
DS_ProdTempi.AnagArticoliRow riga = DataLayer.obj.taAnagArt.getByCod(_codArticolo.ToString())[0];
|
||||
outVal = string.Format("~/Files/Disegni/{0}.pdf", riga.Disegno);
|
||||
DS_ProdTempi.AnagArticoliDataTable tab = DataLayer.obj.taAnagArt.getByCod(_codArticolo.ToString());
|
||||
if (tab.Rows.Count > 0)
|
||||
{
|
||||
//DS_ProdTempi.AnagArticoliRow riga = DataLayer.obj.taAnagArt.getByCod(_codArticolo.ToString())[0];
|
||||
DS_ProdTempi.AnagArticoliRow riga = tab[0];
|
||||
outVal = string.Format("~/Files/Disegni/{0}.pdf", riga.Disegno);
|
||||
}
|
||||
else
|
||||
{
|
||||
logger.lg.scriviLog(string.Format("Attenzione! nessuna informazione trovata per l'articolo {0}", _codArticolo), tipoLog.WARNING);
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
<package id="Microsoft.Web.RedisSessionStateProvider" version="2.2.6" targetFramework="net462" />
|
||||
<package id="Modernizr" version="2.8.3" targetFramework="net45" />
|
||||
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net462" />
|
||||
<package id="NLog" version="4.5.2" targetFramework="net462" />
|
||||
<package id="NLog.Config" version="4.5.2" targetFramework="net462" />
|
||||
<package id="NLog.Schema" version="4.5.2" targetFramework="net462" />
|
||||
<package id="NLog" version="4.5.3" targetFramework="net462" />
|
||||
<package id="NLog.Config" version="4.5.3" targetFramework="net462" />
|
||||
<package id="NLog.Schema" version="4.5.3" targetFramework="net462" />
|
||||
<package id="popper.js" version="1.14.3" targetFramework="net462" />
|
||||
<package id="StackExchange.Redis" version="1.2.6" targetFramework="net462" />
|
||||
<package id="StackExchange.Redis.StrongName" version="1.2.6" targetFramework="net462" />
|
||||
|
||||
+64
-64
@@ -3,74 +3,74 @@ using System;
|
||||
|
||||
namespace MoonProTablet
|
||||
{
|
||||
public class utility
|
||||
public class utility
|
||||
{
|
||||
/// <summary>
|
||||
/// determina se si debba usare CDN x scaricare librerie asp.net ajax
|
||||
/// </summary>
|
||||
public static bool EnableCdnAjax
|
||||
{
|
||||
/// <summary>
|
||||
/// determina se si debba usare CDN x scaricare librerie asp.net ajax
|
||||
/// </summary>
|
||||
public static bool EnableCdnAjax
|
||||
get
|
||||
{
|
||||
bool answ = false;
|
||||
try
|
||||
{
|
||||
get
|
||||
{
|
||||
bool answ = false;
|
||||
try
|
||||
{
|
||||
answ = memLayer.ML.confReadBool("EnableCdnAjax");
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
answ = memLayer.ML.confReadBool("EnableCdnAjax");
|
||||
}
|
||||
/// <summary>
|
||||
/// determina se si debba usare CDN x scaricare librerie jquery
|
||||
/// </summary>
|
||||
public static bool EnableCdnJQ
|
||||
catch
|
||||
{
|
||||
get
|
||||
{
|
||||
bool answ = false;
|
||||
try
|
||||
{
|
||||
answ = memLayer.ML.confReadBool("EnableCdnJQ");
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// formatta la durata in minuti in un modo "human readable" gg/min/ore
|
||||
/// </summary>
|
||||
/// <param name="min">minuti</param>
|
||||
/// <returns></returns>
|
||||
public static string formatDurata(object min)
|
||||
{
|
||||
string answ = "";
|
||||
DateTime tempo = new DateTime();
|
||||
double minuti = 0;
|
||||
try
|
||||
{
|
||||
minuti = Convert.ToDouble(min);
|
||||
tempo = tempo.AddMinutes(minuti);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
if (minuti < memLayer.ML.confReadInt("maxMinuti"))
|
||||
{
|
||||
answ = string.Format("{0}m {1}s", tempo.Minute, tempo.Second);
|
||||
}
|
||||
else if (minuti < memLayer.ML.confReadInt("maxOre"))
|
||||
{
|
||||
answ = string.Format("{0}h {1}m", tempo.Hour, tempo.Minute);
|
||||
}
|
||||
else
|
||||
{
|
||||
answ = string.Format("{0}gg {1}h {2}m", tempo.DayOfYear, tempo.Hour, tempo.Minute);
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// determina se si debba usare CDN x scaricare librerie jquery
|
||||
/// </summary>
|
||||
public static bool EnableCdnJQ
|
||||
{
|
||||
get
|
||||
{
|
||||
bool answ = false;
|
||||
try
|
||||
{
|
||||
answ = memLayer.ML.confReadBool("EnableCdnJQ");
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// formatta la durata in minuti in un modo "human readable" gg/min/ore
|
||||
/// </summary>
|
||||
/// <param name="min">minuti</param>
|
||||
/// <returns></returns>
|
||||
public static string formatDurata(object min)
|
||||
{
|
||||
string answ = "";
|
||||
DateTime tempo = new DateTime();
|
||||
double minuti = 0;
|
||||
try
|
||||
{
|
||||
minuti = Convert.ToDouble(min);
|
||||
tempo = tempo.AddMinutes(minuti);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
if (minuti < memLayer.ML.confReadInt("maxMinuti"))
|
||||
{
|
||||
answ = string.Format("{0}m {1}s", tempo.Minute, tempo.Second);
|
||||
}
|
||||
else if (minuti < memLayer.ML.confReadInt("maxOre"))
|
||||
{
|
||||
answ = string.Format("{0}h {1}m", tempo.Hour, tempo.Minute);
|
||||
}
|
||||
else
|
||||
{
|
||||
answ = string.Format("{0}gg {1}h {2}m", tempo.DayOfYear, tempo.Hour, tempo.Minute);
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
-24079
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-26515
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-26614
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-26811
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-23305
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-24146
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-24857
File diff suppressed because it is too large
Load Diff
Vendored
BIN
Binary file not shown.
Vendored
-19648
File diff suppressed because it is too large
Load Diff
Vendored
BIN
Binary file not shown.
Vendored
-19738
File diff suppressed because it is too large
Load Diff
Vendored
BIN
Binary file not shown.
Vendored
-18914
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
-23979
File diff suppressed because it is too large
Load Diff
Binary file not shown.
-41
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
||||
autoReload="true"
|
||||
throwExceptions="false"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
||||
|
||||
<!-- optional, add some variables
|
||||
https://github.com/nlog/NLog/wiki/Configuration-file#variables
|
||||
-->
|
||||
<variable name="myvar" value="myvalue"/>
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
|
||||
<!--
|
||||
add your targets here
|
||||
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
|
||||
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Write events to a file with the date in the filename.
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
<!--
|
||||
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
|
||||
<logger name="*" minlevel="Debug" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
||||
autoReload="true"
|
||||
throwExceptions="false"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
||||
|
||||
<!-- optional, add some variables
|
||||
https://github.com/nlog/NLog/wiki/Configuration-file#variables
|
||||
-->
|
||||
<variable name="myvar" value="myvalue"/>
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
|
||||
<!--
|
||||
add your targets here
|
||||
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
|
||||
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Write events to a file with the date in the filename.
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
<!--
|
||||
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
|
||||
<logger name="*" minlevel="Debug" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
Binary file not shown.
-3162
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user