eliminazione site-old superato

This commit is contained in:
Samuele E. Locatelli
2018-11-13 23:57:22 +01:00
parent c911c498f1
commit 1038e39747
384 changed files with 0 additions and 142074 deletions
-61
View File
@@ -1,61 +0,0 @@
<%@ Page Title="Analisi Produzione" Language="C#" MasterPageFile="~/WebMasterPages/MAPO_refresh30.master" AutoEventWireup="true" CodeBehind="AnalisiProduzione.aspx.cs" Inherits="MoonPro.AnalisiProduzione" %>
<%@ Register Src="~/WebUserControls/mod_mainMap.ascx" TagPrefix="uc1" TagName="mod_mainMap" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagPrefix="uc1" TagName="mod_periodoAnalisi" %>
<%@ Register Src="~/WebUserControls/mod_AnPro_Totali.ascx" TagPrefix="uc1" TagName="mod_AnPro_Totali" %>
<%@ Register Src="~/WebUserControls/mod_AnPro_DettArt.ascx" TagPrefix="uc1" TagName="mod_AnPro_DettArt" %>
<%@ Register Src="~/WebUserControls/mod_AnPro_DettGg.ascx" TagPrefix="uc1" TagName="mod_AnPro_DettGg" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id="alto" class="menuMainY">
<uc1:mod_mainMap runat="server" ID="mod_mainMap" />
</div>
<div id="medio" class="p-2">
<div class="row">
<div class="col-3">
<div class="uiMini">
<div class="card ">
<div class="card-header">
<h4><%: traduci("FiltroPeriodoImpianti") %></h4>
</div>
<div class="card-body p-0">
<div class="row p-1">
<div class="col-4">
<asp:CheckBox CssClass="btn btn-default" ID="chkOdlClosed" Checked="false" runat="server" AutoPostBack="True" Text="ODL Chiusi" Width="100%" OnCheckedChanged="chkOdlClosed_CheckedChanged" />
</div>
<div class="col-4">
<asp:CheckBox CssClass="btn btn-default" ID="chkOdlOpen" Checked="true" runat="server" AutoPostBack="True" Text="ODL Aperti" Width="100%" OnCheckedChanged="chkOdlOpen_CheckedChanged" />
</div>
<div class="col-4">
<asp:CheckBox CssClass="btn btn-default" ID="chkOdlNew" Checked="false" runat="server" AutoPostBack="True" Text="Prom ODL" Width="100%" OnCheckedChanged="chkOdlNew_CheckedChanged" />
</div>
<div class="col-12">
<uc1:mod_periodoAnalisi runat="server" ID="mod_periodoAnalisi" />
<asp:ListBox ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label" DataValueField="value" SelectionMode="Multiple" Height="30em" Width="100%" AutoPostBack="true" OnSelectedIndexChanged="listMacchine_SelectedIndexChanged" OnDataBound="listMacchine_DataBound" Font-Size="1.5em"></asp:ListBox>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getAttive" TypeName="MapoDb.DS_UtilityTableAdapters.v_selMacchineTableAdapter"></asp:ObjectDataSource>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-9">
<asp:UpdatePanel ID="upAnProd" runat="server">
<ContentTemplate>
<div class="row">
<div class="col-8">
<uc1:mod_AnPro_Totali runat="server" ID="mod_AnPro_Totali" />
</div>
<div class="col-4">
<uc1:mod_AnPro_DettArt runat="server" ID="mod_AnPro_DettArt" />
<br />
<uc1:mod_AnPro_DettGg runat="server" ID="mod_AnPro_DettGg" />
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
</div>
</asp:Content>
-227
View File
@@ -1,227 +0,0 @@
using SteamWare;
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MoonPro
{
public partial class AnalisiProduzione : System.Web.UI.Page
{
protected resoconti _resoconti;
protected intervalloDate _intervalloAnalisi;
protected intervalloDate intervalloAnalisi
{
get
{
return _intervalloAnalisi;
}
set
{
// controllo che la data di fine non sia posteriore ad adesso...
if (value.fine > DateTime.Now)
{
value.fine = DateTime.Now;
}
_intervalloAnalisi = value;
}
}
protected int durataMin;
/// <summary>
/// elenco idx COMMA separated da controllo selezione multiplo
/// </summary>
protected string idxMulti
{
get
{
string answ = "";
try
{
foreach (ListItem riga in listMacchine.Items)
{
// se è selezionata creo riga anche x lei...
if (riga.Selected)
{
answ += string.Format(",{0}", riga.Value);
}
}
answ = answ.Substring(1, answ.Length - 1);
}
catch
{
answ = "";
}
return answ;
}
}
/// <summary>
/// effettua traduzione del lemma
/// </summary>
/// <param name="lemma"></param>
/// <returns></returns>
public string traduci(string lemma)
{
return user_std.UtSn.Traduci(lemma);
}
protected void Page_Load(object sender, EventArgs e)
{
_resoconti = new resoconti();
if (memLayer.ML.isInSessionObject("_durataMin"))
{
durataMin = memLayer.ML.IntSessionObj("_durataMin");
}
else
{
durataMin = 0;
memLayer.ML.setSessionVal("_durataMin", durataMin);
}
mod_periodoAnalisi.eh_doUpdate += new EventHandler(Mod_periodoAnalisi1_eh_doUpdate);
if (!Page.IsPostBack)
{
listMacchine.DataBind();
showDetails(false);
ridisegnaChk();
ridisegna();
}
mod_AnPro_Totali.eh_selVal += Mod_AnPro_Totali_eh_selVal;
mod_AnPro_Totali.eh_reset += Mod_AnPro_Totali_eh_reset;
}
/// <summary>
/// richiesta reset: nascondo!
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Mod_AnPro_Totali_eh_reset(object sender, EventArgs e)
{
fixVisDet();
}
private void showDetails(bool showMod)
{
mod_AnPro_DettArt.Visible = showMod;
mod_AnPro_DettGg.Visible = showMod;
}
/// <summary>
/// selezionato articolo e macchina --> dettaglio!
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Mod_AnPro_Totali_eh_selVal(object sender, EventArgs e)
{
fixVisDet();
}
/// <summary>
/// sistema visualizzazione dettagli---
/// </summary>
private void fixVisDet()
{
if (mod_AnPro_Totali.IdxMacchina != "" && mod_AnPro_Totali.CodArticolo != "")
{
// passo parametri selezione ai moduli
mod_AnPro_DettArt.doUpdate(mod_AnPro_Totali.IdxMacchina, mod_AnPro_Totali.CodArticolo, chkOdlClosed.Checked, chkOdlOpen.Checked, chkOdlNew.Checked);
mod_AnPro_DettGg.doUpdate(mod_AnPro_Totali.IdxMacchina, mod_AnPro_Totali.CodArticolo, chkOdlClosed.Checked, chkOdlOpen.Checked, chkOdlNew.Checked);
// mostro 2 moduli dettaglio
showDetails(true);
}
else
{
// nascondo moduli
showDetails(false);
}
}
/// <summary>
/// valorizzazione iniziale filtro impianti
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void listMacchine_DataBound(object sender, EventArgs e)
{
foreach (ListItem item in ((ListBox)sender).Items)
{
item.Selected = true;
}
}
/// <summary>
/// salvo elenco impianti selected
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void listMacchine_SelectedIndexChanged(object sender, EventArgs e)
{
ridisegna();
}
void Mod_periodoAnalisi1_eh_doUpdate(object sender, EventArgs e)
{
ridisegna();
}
/// <summary>
/// ridisegna buttons checkbox
/// </summary>
protected void ridisegnaChk()
{
// verifico cosa sia selezionato e cosa no...
string baseCss = "btn btn-default";
string selCss = "btn btn-info";
if (chkOdlClosed.Checked)
{
chkOdlClosed.CssClass = "btn btn-danger";
}
else
{
chkOdlClosed.CssClass = baseCss;
}
if (chkOdlOpen.Checked)
{
chkOdlOpen.CssClass = selCss;
}
else
{
chkOdlOpen.CssClass = baseCss;
}
if (chkOdlNew.Checked)
{
chkOdlNew.CssClass = "btn btn-success";
}
else
{
chkOdlNew.CssClass = baseCss;
}
}
/// <summary>
/// aggiorna dati x ridisegno
/// </summary>
private void ridisegna()
{
showDetails(false);
// update controlli child
intervalloAnalisi = (intervalloDate)memLayer.ML.objSessionObj("_intervallo");
mod_AnPro_Totali.doUpdate(idxMulti, chkOdlClosed.Checked, chkOdlOpen.Checked, chkOdlNew.Checked);
}
protected void chkOdlClosed_CheckedChanged(object sender, EventArgs e)
{
ridisegnaChk();
ridisegna();
}
protected void chkOdlOpen_CheckedChanged(object sender, EventArgs e)
{
ridisegnaChk();
ridisegna();
}
protected void chkOdlNew_CheckedChanged(object sender, EventArgs e)
{
ridisegnaChk();
ridisegna();
}
protected void btnUpdate_Click(object sender, EventArgs e)
{
ridisegnaChk();
ridisegna();
}
}
}
-114
View File
@@ -1,114 +0,0 @@
//------------------------------------------------------------------------------
// <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 MoonPro {
public partial class AnalisiProduzione {
/// <summary>
/// Controllo mod_mainMap.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_mainMap mod_mainMap;
/// <summary>
/// Controllo chkOdlClosed.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.CheckBox chkOdlClosed;
/// <summary>
/// Controllo chkOdlOpen.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.CheckBox chkOdlOpen;
/// <summary>
/// Controllo chkOdlNew.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.CheckBox chkOdlNew;
/// <summary>
/// Controllo mod_periodoAnalisi.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_periodoAnalisi mod_periodoAnalisi;
/// <summary>
/// Controllo listMacchine.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ListBox listMacchine;
/// <summary>
/// Controllo odsMacchine.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsMacchine;
/// <summary>
/// Controllo upAnProd.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.UpdatePanel upAnProd;
/// <summary>
/// Controllo mod_AnPro_Totali.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_AnPro_Totali mod_AnPro_Totali;
/// <summary>
/// Controllo mod_AnPro_DettArt.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_AnPro_DettArt mod_AnPro_DettArt;
/// <summary>
/// Controllo mod_AnPro_DettGg.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_AnPro_DettGg mod_AnPro_DettGg;
}
}
-15
View File
@@ -1,15 +0,0 @@
A new HTTP handler has been configured in your application for consulting the
error log and its feeds. It is reachable at elmah.axd under your application
root. If, for example, your application is deployed at http://www.example.com,
the URL for ELMAH would be http://www.example.com/elmah.axd. You can, of
course, change this path in your application's configuration file.
ELMAH is also set up to be secure such that it can only be accessed locally.
You can enable remote access but then it is paramount that you secure access
to authorized users or/and roles only. This can be done using standard
authorization rules and configuration already built into ASP.NET. For more
information, see http://code.google.com/p/elmah/wiki/SecuringErrorLogPages on
the project site.
Please review the commented out authorization section under
<location path="elmah.axd"> and make the appropriate changes.
-67
View File
@@ -1,67 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Optimization;
namespace MoonPro
{
public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/Global").Include(
"~/Scripts/jquery-{version}.js",
"~/Scripts/jquery-ui.js"));
bundles.Add(new ScriptBundle("~/bundles/GlobalHead").Include(
"~/Scripts/modernizr*"));
bundles.Add(new StyleBundle("~/Content/Global").Include(
"~/Content/bootstrap.css",
"~/Content/Style.css"));
//bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
// "~/Scripts/bootstrap.js"));
//bundles.Add(new StyleBundle("~/Content/css").Include(
// "~/Content/bootstrap.css",
// "~/Content/Style.css"));
//bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
// "~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/vis").Include(
"~/vis/vis.js"));
//bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
// "~/Scripts/jquery-ui-{version}.js"));
//bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
// "~/Scripts/jquery.unobtrusive*",
// "~/Scripts/jquery.validate*"));
//bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include(
// "~/Scripts/WebForms/WebForms.js",
// "~/Scripts/WebForms/WebUIValidation.js",
// "~/Scripts/WebForms/MenuStandards.js",
// "~/Scripts/WebForms/Focus.js",
// "~/Scripts/WebForms/GridView.js",
// "~/Scripts/WebForms/DetailsView.js",
// "~/Scripts/WebForms/TreeView.js",
// "~/Scripts/WebForms/WebParts.js"));
//bundles.Add(new ScriptBundle("~/bundles/MsAjaxJs").Include(
// "~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
// "~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"));
//bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
// "~/Scripts/modernizr-*"));
}
}
}
-13
View File
@@ -1,13 +0,0 @@
using SteamWare;
namespace MoonPro
{
public class MP_Startup
{
public static void Init()
{
// inizializzo appConf prima di tutto il resto...
memLayer.ML.resetAppConf();
}
}
}
-15
View File
@@ -1,15 +0,0 @@
using Microsoft.AspNet.FriendlyUrls;
using System.Web.Routing;
namespace MoonPro
{
public static class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
var settings = new FriendlyUrlSettings();
settings.AutoRedirectMode = RedirectMode.Permanent;
routes.EnableFriendlyUrls(settings);
}
}
}
-33
View File
@@ -1,33 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<bundles version="1.0">
<styleBundle path="~/Content/css">
<include path="~/Content/bootstrap.min.css" />
<include path="~/Content/font-awesome.min.css" />
<include path="~/Content/fonts.min.css" />
<include path="~/Content/typeahead.min.css" />
<include path="~/Content/dichMan.min.css" />
<include path="~/Content/bloccoMacc.min.css" />
<include path="~/Content/flashing.min.css" />
<include path="~/Content/baseStyle.min.css" />
</styleBundle>
<styleBundle path="~/Content/themes/base/css">
<!--<include path="~/Content/themes/base/jquery.ui.all.css" />-->
<include path="~/Content/themes/base/jquery.ui.css" />
<include path="~/Content/themes/base/jquery.ui.accordion.css" />
<include path="~/Content/themes/base/jquery.ui.autocomplete.css" />
<include path="~/Content/themes/base/jquery.ui.base.css" />
<include path="~/Content/themes/base/jquery.ui.button.css" />
<include path="~/Content/themes/base/jquery.ui.core.css" />
<include path="~/Content/themes/base/jquery.ui.datepicker.css" />
<include path="~/Content/themes/base/jquery.ui.dialog.css" />
<include path="~/Content/themes/base/jquery.ui.menu.css" />
<include path="~/Content/themes/base/jquery.ui.progressbar.css" />
<include path="~/Content/themes/base/jquery.ui.resizable.css" />
<include path="~/Content/themes/base/jquery.ui.selectable.css" />
<include path="~/Content/themes/base/jquery.ui.slider.css" />
<include path="~/Content/themes/base/jquery.ui.spinner.css" />
<include path="~/Content/themes/base/jquery.ui.tabs.css" />
<include path="~/Content/themes/base/jquery.ui.theme.css" />
<include path="~/Content/themes/base/jquery.ui.tooltip.css" />
</styleBundle>
</bundles>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
-331
View File
@@ -1,331 +0,0 @@
/*!
* Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
dfn {
font-style: italic;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
-ms-overflow-style: scrollbar;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */
File diff suppressed because one or more lines are too long
-8
View File
@@ -1,8 +0,0 @@
/*!
* Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
File diff suppressed because one or more lines are too long
-9030
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
-24
View File
@@ -1,24 +0,0 @@
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('OpenSans.woff') format('woff');
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 300;
src: url('OpenSansCondensed.woff') format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('Roboto.woff') format('woff');
}
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: url('RobotoCondensed.woff') format('woff');
}
-27
View File
@@ -1,27 +0,0 @@
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('OpenSans.woff') format('woff');
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 300;
src: url('OpenSansCondensed.woff') format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('Roboto.woff') format('woff');
}
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: url('RobotoCondensed.woff') format('woff');
}
-1
View File
@@ -1 +0,0 @@
@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url('OpenSans.woff') format('woff');}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:300;src:url('OpenSansCondensed.woff') format('woff');}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url('Roboto.woff') format('woff');}@font-face{font-family:'Roboto Condensed';font-style:normal;font-weight:400;src:url('RobotoCondensed.woff') format('woff');}
File diff suppressed because one or more lines are too long
-16
View File
@@ -1,16 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" Inherits="_Default" Codebehind="Default.aspx.cs" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Pagina Default
</div>
</form>
</body>
</html>
-9
View File
@@ -1,9 +0,0 @@
using System;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("MappaStato.aspx");
}
}
-23
View File
@@ -1,23 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4952
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
public partial class _Default {
/// <summary>
/// form1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
}
-67
View File
@@ -1,67 +0,0 @@
<%@ Page Language="C#" MasterPageFile="~/WebMasterPages/MAPO_refresh30.master" AutoEventWireup="true" Inherits="MoonPro.DettaglioMacchina" Title="Dettaglio Macchina" CodeBehind="DettaglioMacchina.aspx.cs" Async="true" %>
<%@ Register Src="~/WebUserControls/mod_sequencerStati.ascx" TagName="mod_sequencerStati"
TagPrefix="uc5" %>
<%@ Register Src="~/WebUserControls/mod_grafico.ascx" TagName="mod_grafico" TagPrefix="uc4" %>
<%@ Register Src="~/WebUserControls/mod_immagineStato.ascx" TagName="mod_immagineStato" TagPrefix="uc3" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi" TagPrefix="uc2" %>
<%@ Register Src="~/WebUserControls/mod_listaStatiEventi.ascx" TagName="mod_listaStatiEventi" TagPrefix="uc1" %>
<%@ Register Src="WebUserControls/mod_sequencerTempiCiclo.ascx" TagName="mod_sequencerTempiCiclo" TagPrefix="uc6" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div id="contenuto">
<div id="alto">
<div id="Div1" class="menuMainY">
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Always">
<ContentTemplate>
<div style="float: left;">
<asp:Button runat="server" ID="toStato" PostBackUrl="~/MappaStato.aspx" Text="Mappa Generale"></asp:Button>
&nbsp;
</div>
<div style="float: left;">
<uc2:mod_periodoAnalisi ID="Mod_periodoAnalisi1" runat="server" />
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
<div id="medio">
<asp:UpdatePanel ID="up_grafici" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<uc5:mod_sequencerStati ID="Mod_sequencerStati1" runat="server"></uc5:mod_sequencerStati>
<uc6:mod_sequencerTempiCiclo ID="mod_sequencerTempiCiclo1" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
<div id="basso" style="margin: 0 16px;">
<div class="row panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
<%: traduci("StatoMacchina") %>
</h3>
</div>
<div class="col-xs-6 pad3">
<div id="alto1">
<uc3:mod_immagineStato ID="Mod_immagineStato1" runat="server" />
</div>
<div id="medio1">
<asp:CheckBox ID="chkHideSpenta" runat="server" AutoPostBack="True" OnCheckedChanged="chkHideSpenta_CheckedChanged" Text="Nascondi spenta" />
</div>
<div id="basso1">
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<uc4:mod_grafico ID="Mod_grafico2" runat="server" height="250" width="250"></uc4:mod_grafico>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
<div class="col-xs-6 pad3">
<asp:UpdatePanel ID="UpdatePanel1" runat="server" RenderMode="Block" UpdateMode="Always">
<ContentTemplate>
<uc1:mod_listaStatiEventi ID="Mod_listaStatiEventi1" runat="server"></uc1:mod_listaStatiEventi>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
</div>
</div>
</asp:Content>
-203
View File
@@ -1,203 +0,0 @@
using SteamWare;
using System;
using System.Web.UI;
namespace MoonPro
{
public partial class DettaglioMacchina : UserPage
{
protected resoconti _resoconti;
protected string idxMacchina;
protected intervalloDate _intervalloAnalisi;
protected intervalloDate intervalloAnalisi
{
get
{
return _intervalloAnalisi;
}
set
{
// controllo che la data di fine non sia posteriore ad adesso...
if (value.fine > DateTime.Now)
{
value.fine = DateTime.Now;
}
_intervalloAnalisi = value;
}
}
protected int durataMin;
protected long standardZoom = 3;
protected bool graphDataRefresh
{
get
{
return memLayer.ML.BoolSessionObj("graphDataRefresh");
}
set
{
memLayer.ML.setSessionVal("graphDataRefresh", value);
}
}
/// <summary>
/// effettua traduzione del lemma
/// </summary>
/// <param name="lemma"></param>
/// <returns></returns>
public string traduci(string lemma)
{
return user_std.UtSn.Traduci(lemma);
}
/// <summary>
/// caricamento pagina
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
// al primo caricamento imposto il refresh obbligatorio
if (!Page.IsPostBack)
{
graphDataRefresh = true;
}
Mod_periodoAnalisi1.eh_doUpdate += new EventHandler(Mod_periodoAnalisi1_eh_doUpdate);
Mod_listaStatiEventi1.eh_doUpdate += new EventHandler(Mod_listaStatiEventi1_eh_doUpdate);
Mod_sequencerStati1.eh_richiestaZoom += new EventHandler(Mod_sequencerStati1_eh_richiestaZoom);
mod_sequencerTempiCiclo1.eh_richiestaZoom += new EventHandler(mod_sequencerTempiCiclo1_eh_richiestaZoom);
_resoconti = new resoconti();
idxMacchina = memLayer.ML.QSS("IdxMacchina");
intervalloAnalisi = (intervalloDate)memLayer.ML.objSessionObj("_intervallo");
durataMin = memLayer.ML.IntSessionObj("_durataMin");
// chiamo routine disegno
impostaGrafici();
}
void mod_sequencerTempiCiclo1_eh_richiestaZoom(object sender, EventArgs e)
{
updateDaZoom();
}
void Mod_sequencerStati1_eh_richiestaZoom(object sender, EventArgs e)
{
updateDaZoom();
}
private void updateDaZoom()
{
graphDataRefresh = true;
// chiamo procedura zoom in controllo periodo
Mod_periodoAnalisi1.dateZoom();
}
void Mod_listaStatiEventi1_eh_doUpdate(object sender, EventArgs e)
{
graphDataRefresh = false;
impostaGrafici();
}
void Mod_periodoAnalisi1_eh_doUpdate(object sender, EventArgs e)
{
graphDataRefresh = true;
intervalloAnalisi = (intervalloDate)memLayer.ML.objSessionObj("_intervallo");
impostaGrafici();
Mod_listaStatiEventi1.aggiornamento();
}
protected void impostaGrafici()
{
if (graphDataRefresh)
{
try
{
setTorta();
if (memLayer.ML.CRB("showSeqStati"))
{
setSequencer();
}
else
{
Mod_sequencerStati1.Visible = false;
}
if (memLayer.ML.CRB("showSeqTC"))
{
setTC();
}
else
{
mod_sequencerTempiCiclo1.Visible = false;
}
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Errore nella renderizzazione dettaglio macchina: intervallo analisi da {0} a {1}, macchina {2}{3}{4}", intervalloAnalisi.inizio, intervalloAnalisi.fine, idxMacchina, Environment.NewLine, exc));
}
graphDataRefresh = false;
up_grafici.Update();
}
}
private void setTC()
{
// procedo SOLO SE ho dei dati...
bool datiOk = false;
objTempiCiclo datiTC;
try
{
datiTC = _resoconti.tempiCiclo(idxMacchina, intervalloAnalisi, 0);
datiOk = (datiTC.serieDati != null);
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Errore in recupero seq TC {0}{1}{2}", idxMacchina, Environment.NewLine, exc));
datiTC = new objTempiCiclo();
}
// procedo SE ho dati...
if (datiOk)
{
mod_sequencerTempiCiclo1.larghezza = memLayer.ML.IntSessionObj("WindowWidth") - 2;
mod_sequencerTempiCiclo1.plotReversed = true;
mod_sequencerTempiCiclo1.graphHeight = 100;
mod_sequencerTempiCiclo1.numSplit = 600;
mod_sequencerTempiCiclo1.grafico = datiTC;
mod_sequencerTempiCiclo1.doUpdate();
}
}
protected void setSequencer()
{
// procedo SOLO SE ho dei dati...
bool datiOk = false;
objSequencer datiSeq;
try
{
datiSeq = _resoconti.sequenzaDati(idxMacchina, intervalloAnalisi);
datiOk = (datiSeq.serieDati != null);
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Errore in recupero seq DATI {0}{1}{2}", idxMacchina, Environment.NewLine, exc));
datiSeq = new objSequencer();
}
// procedo SE ho dati...
if (datiOk)
{
Mod_sequencerStati1.larghezza = memLayer.ML.IntSessionObj("WindowWidth") - 2;
Mod_sequencerStati1.graphHeight = 100;
Mod_sequencerStati1.numSplit = 1000;
Mod_sequencerStati1.datiSequencer = datiSeq;
Mod_sequencerStati1.doUpdate();
}
}
protected void setTorta()
{
Mod_grafico2.graficoTorta = new pieChart();
Mod_grafico2.graficoTorta.serie = _resoconti.tortaStati(idxMacchina, intervalloAnalisi, durataMin, chkHideSpenta.Checked);
}
protected void chkHideSpenta_CheckedChanged(object sender, EventArgs e)
{
// in base a quello ridisegno la torta...
setTorta();
}
}
}
-123
View File
@@ -1,123 +0,0 @@
//------------------------------------------------------------------------------
// <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 MoonPro {
public partial class DettaglioMacchina {
/// <summary>
/// Controllo UpdatePanel2.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.UpdatePanel UpdatePanel2;
/// <summary>
/// Controllo toStato.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Button toStato;
/// <summary>
/// Controllo Mod_periodoAnalisi1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_periodoAnalisi Mod_periodoAnalisi1;
/// <summary>
/// Controllo up_grafici.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.UpdatePanel up_grafici;
/// <summary>
/// Controllo Mod_sequencerStati1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_sequencerStati Mod_sequencerStati1;
/// <summary>
/// Controllo mod_sequencerTempiCiclo1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_sequencerTempiCiclo mod_sequencerTempiCiclo1;
/// <summary>
/// Controllo Mod_immagineStato1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_immagineStato Mod_immagineStato1;
/// <summary>
/// Controllo chkHideSpenta.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.CheckBox chkHideSpenta;
/// <summary>
/// Controllo UpdatePanel3.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.UpdatePanel UpdatePanel3;
/// <summary>
/// Controllo Mod_grafico2.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_grafico Mod_grafico2;
/// <summary>
/// Controllo UpdatePanel1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.UpdatePanel UpdatePanel1;
/// <summary>
/// Controllo Mod_listaStatiEventi1.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_listaStatiEventi Mod_listaStatiEventi1;
}
}
-73
View File
@@ -1,73 +0,0 @@
 <appSettings>
<add key="mainRev" value="2.0" />
<add key="minRev" value="325" />
<add key="CopyRight" value="SteamWare © 2007-2012" />
<add key="CodModulo" value="MoonPro" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridMed" value="10" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="MoonPro@steamware.net" />
<add key="_logDir" value="~/logs/" />
<add key="_logLevel" value="6" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_treeMaxChar" value="35" />
<add key="_showAllTree" value="false" />
<add key="_adminEmail" value="samuele@steamware.net" />
<add key="_smtpCli" value="localhost" />
<add key="keepAliveMin" value="60" />
<add key="MinCharAutocomplete" value="1" />
<add key="_pdwRefreshDb" value="steamware" />
<!--abilita auth solo con username-->
<add key="authSenzaDominio" value="true" />
<!--area codici per barcode, dichiarazioni produzione-->
<add key="prefDichProd" value="XX" />
<add key="MostraProd" value="XXPRD" />
<add key="ConfermaProd" value="XXOK" />
<add key="AnnullaProd" value="XXCAN" />
<add key="AumentaProd" value="XXP" />
<add key="DiminuisciProd" value="XXM" />
<!--area codici per barcode, dichiarazioni fermate-->
<add key="prefDichFerm" value="FE" />
<!--area codici per barcode, dichiarazioni operatore-->
<add key="prefDichOp" value="OP" />
<!--area codici per barcode, dichiarazioni operatore-->
<add key="prefDichCodArt" value="KA" />
<!--area codici per barcode, attrezzaggi-->
<add key="prefDichAttrezzaggio" value="AT" />
<add key="StartSetup" value="AT02" />
<add key="EndSetup" value="AT01" />
<add key="EndProd" value="AT07" />
<!--area codici per gestione turni-->
<add key="prefModTurno" value="MT" />
<add key="modTurno1" value="MT01" />
<add key="modTurno2" value="MT02" />
<add key="modTurno3" value="MT03" />
<!--gestione default interfaccia UI-->
<add key="idxPostazioneStd" value="P1005" />
<add key="idxMacchinaStd" value="1005" />
<!--minuti per cui un operatore admin è abilitato a fare input sulla macchina-->
<add key="minutiUpdateAdmin" value="5" />
<!--area config termini tooltip sequencer-->
<add key="codV" value="Lavora" />
<add key="codG" value="???" />
<add key="codR" value="Ferma" />
<add key="codS" value="Spenta" />
<!--abilita auth solo con username-->
<add key="authSenzaDominio" value="true" />
<!--limite max tempi da considerare per calcolo-->
<add key="TcMaxFactor" value="2" />
<!--definisce se controllare ODL in caso di chiusura produzione-->
<add key="chkIdxOdlEndProd" value="false" />
<!--stringhe connessione-->
<add key="MoonProConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16" />
<add key="PermessiConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16" />
<add key="UtenteCdcConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=SteamWare_Anagrafica;Persist Security Info=True;User ID=steamware;Password=viadante16" />
<add key="VocabolarioConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_Vocabolario;Persist Security Info=True;User ID=steamware;Password=viadante16" />
<!--gestione charting-->
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />
</appSettings>
-4
View File
@@ -1,4 +0,0 @@
 <connectionStrings>
<add name="MoonProConnectionString" connectionString="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16" providerName="System.Data.SqlClient" />
</connectionStrings>
-1
View File
@@ -1 +0,0 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="MoonPro.Global" Language="C#" %>
-44
View File
@@ -1,44 +0,0 @@
using System;
using System.Web.Optimization;
using System.Web.Routing;
namespace MoonPro
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
// Codice eseguito all'avvio dell'applicazione
BundleConfig.RegisterBundles(BundleTable.Bundles);
RouteConfig.RegisterRoutes(RouteTable.Routes);
// avvio il metodo init x applicazione...
MP_Startup.Init();
}
protected void Session_Start(object sender, EventArgs e)
{
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}
-16
View File
@@ -1,16 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="M6Started.aspx.cs" Inherits="MoonPro.M6Started" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label runat="server" ID="lblOut" Text="ok" />
</div>
</form>
</body>
</html>
-51
View File
@@ -1,51 +0,0 @@
using SteamWare;
using System;
namespace MoonPro
{
public partial class M6Started : System.Web.UI.Page
{
/// <summary>
/// caricamento pagina
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
// legge i get x registrare che una amcchian è stata riavviata
string idxMacchina = "";
string IPv4 = "";
string agent = "";
string macAddr = "";
try
{
idxMacchina = Request.QueryString["idxMacchina"];
macAddr = Request.QueryString["mac"]; // opzionale, mac address!!!
}
catch
{ }
try
{
// recupero IP del client remoto
IPv4 = Request.UserHostName;
agent = Request.UserAgent;
}
catch
{ }
try
{
// ora salvo che la macchina è stata (ri)avviata...
MapoDb.MapoDb.obj.registraStartup(idxMacchina, IPv4, agent, macAddr);
}
catch (Exception exc)
{
if (memLayer.ML.CRI("_logLevel") > 5)
{
string errore = string.Format("Errore: {0}{1}", Environment.NewLine, exc);
logger.lg.scriviLog(errore, tipoLog.EXCEPTION);
lblOut.Text = errore;
}
}
}
}
}
-34
View File
@@ -1,34 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MoonPro
{
public partial class M6Started {
/// <summary>
/// form1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// lblOut control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOut;
}
}
-976
View File
@@ -1,976 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props')" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Donati|AnyCPU'">
<OutputPath>bin\</OutputPath>
<DefineConstants>
</DefineConstants>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisLogFile>bin\MoonPro_site.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
<DeployIisAppPath>Default Web Site/MoonPro</DeployIisAppPath>
<ExcludeApp_Data>true</ExcludeApp_Data>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'IIS02|AnyCPU' ">
<OutputPath>bin\</OutputPath>
<DefineConstants>
</DefineConstants>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisLogFile>bin\MoonPro_site.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
<DeployIisAppPath>Default Web Site/MoonPro</DeployIisAppPath>
<ExcludeApp_Data>true</ExcludeApp_Data>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'IIS01|AnyCPU'">
<OutputPath>bin\</OutputPath>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'OVH-Demo|AnyCPU'">
<OutputPath>bin\</OutputPath>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Jetco|AnyCPU'">
<OutputPath>bin\</OutputPath>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Prod|AnyCPU' ">
<OutputPath>bin\</OutputPath>
<Optimize>true</Optimize>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{616F889A-BDBE-48B3-ADF6-32D69CB1EA96}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MoonPro</RootNamespace>
<AssemblyName>MoonPro</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<UseIISExpress>true</UseIISExpress>
<TargetFrameworkProfile />
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<Use64BitIISExpress />
<TypeScriptToolsVersion>2.6</TypeScriptToolsVersion>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<DeployIisAppPath>Default Web Site/MoonPro</DeployIisAppPath>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<DeployIisAppPath>Default Web Site/MoonPro</DeployIisAppPath>
<ExcludeApp_Data>true</ExcludeApp_Data>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="AjaxControlToolkit, Version=18.1.1.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e, processorArchitecture=MSIL">
<HintPath>..\packages\AjaxControlToolkit.18.1.1\lib\net40\AjaxControlToolkit.dll</HintPath>
</Reference>
<Reference Include="AjaxMin, Version=5.14.5506.26196, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f, processorArchitecture=MSIL">
<HintPath>..\packages\AjaxMin.5.14.5506.26202\lib\net40\AjaxMin.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
<HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
</Reference>
<Reference Include="Elmah, Version=1.2.14706.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\elmah.corelibrary.1.2.2\lib\Elmah.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.FriendlyUrls, Version=1.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.FriendlyUrls.Core.1.0.2\lib\net45\Microsoft.AspNet.FriendlyUrls.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.SessionState.SessionStateModule, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.SessionState.SessionStateModule.1.1.0\lib\Net462\Microsoft.AspNet.SessionState.SessionStateModule.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNet.Web.Optimization.WebForms, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Web.Optimization.WebForms.1.1.3\lib\net45\Microsoft.AspNet.Web.Optimization.WebForms.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Web.RedisSessionStateProvider, Version=3.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Web.RedisSessionStateProvider.3.0.2\lib\net462\Microsoft.Web.RedisSessionStateProvider.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.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>
</Reference>
<Reference Include="StackExchange.Redis.StrongName, Version=1.2.6.0, Culture=neutral, PublicKeyToken=c219ff1ca8c2ce46, processorArchitecture=MSIL">
<HintPath>..\packages\StackExchange.Redis.StrongName.1.2.6\lib\net46\StackExchange.Redis.StrongName.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
</Reference>
<Reference Include="System.Web.ApplicationServices" />
<Reference Include="System.Web.DataVisualization" />
<Reference Include="System.Web.DataVisualization.Design" />
<Reference Include="System.Web.DynamicData" />
<Reference Include="System.Web.Entity" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
</Reference>
<Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath>
</Reference>
<Reference Include="System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath>
</Reference>
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
</Reference>
<Reference Include="System.Web.Optimization, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>
</Reference>
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
</Reference>
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
</Reference>
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
</Reference>
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
</Reference>
<Reference Include="System.Xml" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web.Services" />
<Reference Include="System.EnterpriseServices" />
<Reference Include="System.Web.Mobile" />
<Reference Include="System.Xml.Linq" />
<Reference Include="WebGrease, Version=1.6.5135.21930, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\WebGrease.1.6.0\lib\WebGrease.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\VersGen\MoonPro.cs">
<Link>MoonPro.cs</Link>
</Compile>
<Compile Include="AnalisiProduzione.aspx.cs">
<DependentUpon>AnalisiProduzione.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="AnalisiProduzione.aspx.designer.cs">
<DependentUpon>AnalisiProduzione.aspx</DependentUpon>
</Compile>
<Compile Include="App_Start\BundleConfig.cs" />
<Compile Include="App_Start\MP_Startup.cs" />
<Compile Include="App_Start\RouteConfig.cs" />
<Compile Include="Default.aspx.cs">
<DependentUpon>Default.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Default.aspx.designer.cs">
<DependentUpon>Default.aspx</DependentUpon>
</Compile>
<Compile Include="DettaglioMacchina.aspx.cs">
<DependentUpon>DettaglioMacchina.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="DettaglioMacchina.aspx.designer.cs">
<DependentUpon>DettaglioMacchina.aspx</DependentUpon>
</Compile>
<Compile Include="diagApp.aspx.cs">
<DependentUpon>diagApp.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="diagApp.aspx.designer.cs">
<DependentUpon>diagApp.aspx</DependentUpon>
</Compile>
<Compile Include="erroreComunicazione.aspx.cs">
<DependentUpon>erroreComunicazione.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="erroreComunicazione.aspx.designer.cs">
<DependentUpon>erroreComunicazione.aspx</DependentUpon>
</Compile>
<Compile Include="excelAllMacchineDatiConfermati.aspx.cs">
<DependentUpon>excelAllMacchineDatiConfermati.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelAllMacchineDatiConfermati.aspx.designer.cs">
<DependentUpon>excelAllMacchineDatiConfermati.aspx</DependentUpon>
</Compile>
<Compile Include="excelAllMacchineExportEventi.aspx.cs">
<DependentUpon>excelAllMacchineExportEventi.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelAllMacchineExportEventi.aspx.designer.cs">
<DependentUpon>excelAllMacchineExportEventi.aspx</DependentUpon>
</Compile>
<Compile Include="excelAllMacchineExportStati.aspx.cs">
<DependentUpon>excelAllMacchineExportStati.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelAllMacchineExportStati.aspx.designer.cs">
<DependentUpon>excelAllMacchineExportStati.aspx</DependentUpon>
</Compile>
<Compile Include="excelExportDatiConfermati.aspx.cs">
<DependentUpon>excelExportDatiConfermati.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelExportDatiConfermati.aspx.designer.cs">
<DependentUpon>excelExportDatiConfermati.aspx</DependentUpon>
</Compile>
<Compile Include="excelExportEventi.aspx.cs">
<DependentUpon>excelExportEventi.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelExportEventi.aspx.designer.cs">
<DependentUpon>excelExportEventi.aspx</DependentUpon>
</Compile>
<Compile Include="excelExportStati.aspx.cs">
<DependentUpon>excelExportStati.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="excelExportStati.aspx.designer.cs">
<DependentUpon>excelExportStati.aspx</DependentUpon>
</Compile>
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="inputSeriale.aspx.cs">
<DependentUpon>inputSeriale.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="inputSeriale.aspx.designer.cs">
<DependentUpon>inputSeriale.aspx</DependentUpon>
</Compile>
<Compile Include="lastUpdate.aspx.cs">
<DependentUpon>lastUpdate.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="lastUpdate.aspx.designer.cs">
<DependentUpon>lastUpdate.aspx</DependentUpon>
</Compile>
<Compile Include="M6Started.aspx.cs">
<DependentUpon>M6Started.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="M6Started.aspx.designer.cs">
<DependentUpon>M6Started.aspx</DependentUpon>
</Compile>
<Compile Include="MappaStatoSeq.aspx.cs">
<DependentUpon>MappaStatoSeq.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="MappaStatoSeq.aspx.designer.cs">
<DependentUpon>MappaStatoSeq.aspx</DependentUpon>
</Compile>
<Compile Include="Semaforo.aspx.cs">
<DependentUpon>Semaforo.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Semaforo.aspx.designer.cs">
<DependentUpon>Semaforo.aspx</DependentUpon>
</Compile>
<Compile Include="Site.Mobile.Master.cs">
<DependentUpon>Site.Mobile.Master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Site.Mobile.Master.designer.cs">
<DependentUpon>Site.Mobile.Master</DependentUpon>
</Compile>
<Compile Include="StatisticheImpiego.aspx.cs">
<DependentUpon>StatisticheImpiego.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="StatisticheImpiego.aspx.designer.cs">
<DependentUpon>StatisticheImpiego.aspx</DependentUpon>
</Compile>
<Compile Include="test.aspx.cs">
<DependentUpon>test.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="test.aspx.designer.cs">
<DependentUpon>test.aspx</DependentUpon>
</Compile>
<Compile Include="ViewSwitcher.ascx.cs">
<DependentUpon>ViewSwitcher.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="ViewSwitcher.ascx.designer.cs">
<DependentUpon>ViewSwitcher.ascx</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty.Master.cs">
<DependentUpon>MAPO_empty.Master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty.Master.designer.cs">
<DependentUpon>MAPO_empty.Master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty_refresh30_full.master.cs">
<DependentUpon>MAPO_empty_refresh30_full.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty_refresh30_full.master.designer.cs">
<DependentUpon>MAPO_empty_refresh30_full.master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty_refresh30.master.cs">
<DependentUpon>MAPO_empty_refresh30.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_empty_refresh30.master.designer.cs">
<DependentUpon>MAPO_empty_refresh30.master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_noAjax.master.cs">
<DependentUpon>MAPO_noAjax.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_noAjax.master.designer.cs">
<DependentUpon>MAPO_noAjax.master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_refresh.master.cs">
<DependentUpon>MAPO_refresh.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_refresh.master.designer.cs">
<DependentUpon>MAPO_refresh.master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_refresh30.master.cs">
<DependentUpon>MAPO_refresh30.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_refresh30.master.designer.cs">
<DependentUpon>MAPO_refresh30.master</DependentUpon>
</Compile>
<Compile Include="WebMasterPages\MAPO_warning.master.cs">
<DependentUpon>MAPO_warning.master</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebMasterPages\MAPO_warning.master.designer.cs">
<DependentUpon>MAPO_warning.master</DependentUpon>
</Compile>
<Compile Include="MappaStato.aspx.cs">
<DependentUpon>MappaStato.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="MappaStato.aspx.designer.cs">
<DependentUpon>MappaStato.aspx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_andamentoStorico.ascx.cs">
<DependentUpon>mod_andamentoStorico.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_andamentoStorico.ascx.designer.cs">
<DependentUpon>mod_andamentoStorico.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_DettArt.ascx.cs">
<DependentUpon>mod_AnPro_DettArt.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_DettArt.ascx.designer.cs">
<DependentUpon>mod_AnPro_DettArt.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_DettGg.ascx.cs">
<DependentUpon>mod_AnPro_DettGg.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_DettGg.ascx.designer.cs">
<DependentUpon>mod_AnPro_DettGg.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_ODL.ascx.cs">
<DependentUpon>mod_AnPro_ODL.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_ODL.ascx.designer.cs">
<DependentUpon>mod_AnPro_ODL.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_PODL.ascx.cs">
<DependentUpon>mod_AnPro_PODL.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_PODL.ascx.designer.cs">
<DependentUpon>mod_AnPro_PODL.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_Totali.ascx.cs">
<DependentUpon>mod_AnPro_Totali.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_AnPro_Totali.ascx.designer.cs">
<DependentUpon>mod_AnPro_Totali.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_datiConfermati.ascx.cs">
<DependentUpon>mod_datiConfermati.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_datiConfermati.ascx.designer.cs">
<DependentUpon>mod_datiConfermati.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_grafico.ascx.cs">
<DependentUpon>mod_grafico.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_grafico.ascx.designer.cs">
<DependentUpon>mod_grafico.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_immagineStato.ascx.cs">
<DependentUpon>mod_immagineStato.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_immagineStato.ascx.designer.cs">
<DependentUpon>mod_immagineStato.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_infoAggiuntive.ascx.cs">
<DependentUpon>mod_infoAggiuntive.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_infoAggiuntive.ascx.designer.cs">
<DependentUpon>mod_infoAggiuntive.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_listaStatiEventi.ascx.cs">
<DependentUpon>mod_listaStatiEventi.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_listaStatiEventi.ascx.designer.cs">
<DependentUpon>mod_listaStatiEventi.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_mainMap.ascx.cs">
<DependentUpon>mod_mainMap.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_mainMap.ascx.designer.cs">
<DependentUpon>mod_mainMap.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_menuBottom.ascx.cs">
<DependentUpon>mod_menuBottom.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_menuBottom.ascx.designer.cs">
<DependentUpon>mod_menuBottom.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_menuTop.ascx.cs">
<DependentUpon>mod_menuTop.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_menuTop.ascx.designer.cs">
<DependentUpon>mod_menuTop.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_periodoAnalisi.ascx.cs">
<DependentUpon>mod_periodoAnalisi.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_periodoAnalisi.ascx.designer.cs">
<DependentUpon>mod_periodoAnalisi.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_realtimeClock.ascx.cs">
<DependentUpon>mod_realtimeClock.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_realtimeClock.ascx.designer.cs">
<DependentUpon>mod_realtimeClock.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_righePag.ascx.cs">
<DependentUpon>mod_righePag.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_righePag.ascx.designer.cs">
<DependentUpon>mod_righePag.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_schermataMacchina.ascx.cs">
<DependentUpon>mod_schermataMacchina.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_schermataMacchina.ascx.designer.cs">
<DependentUpon>mod_schermataMacchina.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_semaforo.ascx.cs">
<DependentUpon>mod_semaforo.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_semaforo.ascx.designer.cs">
<DependentUpon>mod_semaforo.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_sequencerStati.ascx.cs">
<DependentUpon>mod_sequencerStati.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_sequencerStati.ascx.designer.cs">
<DependentUpon>mod_sequencerStati.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_sequencerStatiJS.ascx.cs">
<DependentUpon>mod_sequencerStatiJS.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_sequencerStatiJS.ascx.designer.cs">
<DependentUpon>mod_sequencerStatiJS.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_sequencerTempiCiclo.ascx.cs">
<DependentUpon>mod_sequencerTempiCiclo.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_sequencerTempiCiclo.ascx.designer.cs">
<DependentUpon>mod_sequencerTempiCiclo.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_statoMacchina.ascx.cs">
<DependentUpon>mod_statoMacchina.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_statoMacchina.ascx.designer.cs">
<DependentUpon>mod_statoMacchina.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_statoMacchine.ascx.cs">
<DependentUpon>mod_statoMacchine.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_statoMacchine.ascx.designer.cs">
<DependentUpon>mod_statoMacchine.ascx</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="WS\AutoCompletamento.asmx.cs">
<DependentUpon>AutoCompletamento.asmx</DependentUpon>
<SubType>Component</SubType>
</Compile>
<Compile Include="WS\MPData.asmx.cs">
<DependentUpon>MPData.asmx</DependentUpon>
<SubType>Component</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Content Include="AnalisiProduzione.aspx" />
<Content Include="App_Readme\Elmah.txt" />
<Content Include="Content\bootstrap-grid.css" />
<Content Include="Content\bootstrap-grid.min.css" />
<Content Include="Content\bootstrap-reboot.css" />
<Content Include="Content\bootstrap-reboot.min.css" />
<Content Include="Content\bootstrap.css" />
<Content Include="Content\bootstrap.min.css" />
<Content Include="Content\font-awesome.css" />
<Content Include="Content\font-awesome.min.css" />
<Content Include="Content\fonts.css">
<DependentUpon>fonts.less</DependentUpon>
</Content>
<Content Include="Content\fonts.min.css">
<DependentUpon>fonts.css</DependentUpon>
</Content>
<Content Include="Content\Style.css">
<DependentUpon>Style.less</DependentUpon>
</Content>
<Content Include="Content\Style.min.css">
<DependentUpon>Style.css</DependentUpon>
</Content>
<Content Include="Default.aspx" />
<Content Include="diagApp.aspx" />
<Content Include="erroreComunicazione.aspx" />
<Content Include="excelAllMacchineExportEventi.aspx" />
<Content Include="excelAllMacchineExportStati.aspx" />
<Content Include="excelExportEventi.aspx" />
<Content Include="excelExportStati.aspx" />
<Content Include="favicon.ico" />
<Content Include="fonts\fontawesome-webfont.svg" />
<Content Include="Global.asax" />
<Content Include="images\blu.png" />
<Content Include="images\empty.png" />
<Content Include="images\LogoMapoNoText.png" />
<Content Include="images\logoSteamware.png" />
<Content Include="images\macchine\Steamware.png" />
<Content Include="images\sfondo.png" />
<Content Include="inputSeriale.aspx" />
<Content Include="lastUpdate.aspx" />
<Content Include="M6Started.aspx" />
<Content Include="MappaStatoSeq.aspx" />
<Content Include="fonts\FontAwesome.otf" />
<Content Include="fonts\fontawesome-webfont.woff2" />
<Content Include="fonts\fontawesome-webfont.woff" />
<Content Include="fonts\fontawesome-webfont.ttf" />
<Content Include="fonts\fontawesome-webfont.eot" />
<Content Include="Content\fonts.less" />
<Content Include="Content\OpenSans.woff">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\OpenSansCondensed.woff">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\Roboto.woff">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Content\RobotoCondensed.woff">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="scripts\bootstrap.bundle.js" />
<Content Include="scripts\bootstrap.bundle.min.js" />
<Content Include="scripts\bootstrap.js" />
<Content Include="scripts\bootstrap.min.js" />
<Content Include="scripts\modernizr-2.8.3.js" />
<Content Include="WebUserControls\mod_AnPro_ODL.ascx" />
<Content Include="WebUserControls\mod_AnPro_PODL.ascx" />
<Content Include="WebUserControls\mod_sequencerStatiJS.ascx" />
<Content Include="WS\MPData.asmx" />
<Content Include="Content\bootstrap.min.css.map" />
<Content Include="Content\bootstrap.css.map" />
<Content Include="Content\bootstrap-reboot.min.css.map" />
<Content Include="Content\bootstrap-reboot.css.map" />
<Content Include="Content\bootstrap-grid.min.css.map" />
<Content Include="Content\bootstrap-grid.css.map" />
<Content Include="Bundle.config" />
<None Include="Properties\PublishProfiles\OVH-Demo.pubxml" />
<None Include="Properties\PublishProfiles\IIS01.pubxml" />
<None Include="Properties\PublishProfiles\OVH-Demo-old.pubxml" />
<None Include="Resources\Donati\BASI\web.config.ref">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Resources\Donati\LAVORAZIONI\Web.config.ref">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Resources\Donati\macchine\Thumbs.db" />
<None Include="Resources\Donati\macchine\Combi_A.jpg" />
<None Include="Resources\Donati\macchine\Combi_B.jpg" />
<None Include="Resources\Donati\macchine\Combi_C.jpg" />
<None Include="Resources\Donati\macchine\cosmap.jpg" />
<None Include="Resources\Donati\macchine\DMG_1035v.jpg" />
<None Include="Resources\Donati\macchine\Doosan_HP5100II.jpg" />
<None Include="Resources\Donati\macchine\exAbb.jpg" />
<None Include="Resources\Donati\macchine\Linearmill_600.jpg" />
<None Include="Resources\Donati\macchine\Maxxmill_500.jpg" />
<None Include="Resources\Donati\macchine\Nikkei.jpg" />
<None Include="Resources\Donati\macchine\pul001.jpg" />
<None Include="Resources\Donati\macchine\pul002.jpg" />
<None Include="Resources\Donati\macchine\pul003.jpg" />
<None Include="Resources\Donati\macchine\pul004.jpg" />
<None Include="Resources\Donati\macchine\Riello1.jpg" />
<None Include="Resources\Donati\macchine\Riello2.jpg" />
<None Include="Resources\Donati\macchine\sbav005.jpg" />
<None Include="Resources\Donati\macchine\sme001.jpg" />
<None Include="Resources\Donati\macchine\sme002.jpg" />
<None Include="Resources\Donati\macchine\sme003.jpg" />
<None Include="Resources\Donati\macchine\sme004.jpg" />
<None Include="Resources\Donati\macchine\sme006.jpg" />
<None Include="Resources\Donati\macchine\sme007.jpg" />
<None Include="Resources\Donati\macchine\sme008.jpg" />
<None Include="Resources\Donati\macchine\sme009.jpg" />
<None Include="Resources\Donati\macchine\sme010.jpg" />
<None Include="Resources\Donati\macchine\sme011.jpg" />
<None Include="Resources\Donati\macchine\tav001.jpg" />
<None Include="Resources\Donati\macchine\tav002.jpg" />
<None Include="Resources\Donati\macchine\Transfer_BTB.jpg" />
<None Include="Resources\Donati\macchine\Transfer_Tecnotransfer.jpg" />
<Content Include="Resources\ChangeLog.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\logoSteamware.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\manifest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="scripts\esm\popper-utils.js" />
<Content Include="scripts\esm\popper-utils.min.js" />
<Content Include="scripts\esm\popper.js" />
<Content Include="scripts\esm\popper.min.js" />
<Content Include="scripts\esm\popper.min.js.map" />
<Content Include="scripts\esm\popper.js.map" />
<Content Include="scripts\esm\popper-utils.min.js.map" />
<Content Include="scripts\esm\popper-utils.js.map" />
<Content Include="scripts\bootstrap.min.js.map" />
<Content Include="scripts\bootstrap.js.map" />
<Content Include="scripts\bootstrap.bundle.min.js.map" />
<Content Include="scripts\bootstrap.bundle.js.map" />
<None Include="scripts\jquery-3.3.1.intellisense.js" />
<Content Include="scripts\jquery-3.3.1.js" />
<Content Include="scripts\jquery-3.3.1.min.js" />
<Content Include="scripts\jquery-3.3.1.slim.js" />
<Content Include="scripts\jquery-3.3.1.slim.min.js" />
<Content Include="scripts\popper-utils.js" />
<Content Include="scripts\popper-utils.min.js" />
<Content Include="scripts\popper.js" />
<Content Include="scripts\popper.min.js" />
<Content Include="scripts\umd\popper-utils.js" />
<Content Include="scripts\umd\popper-utils.min.js" />
<Content Include="scripts\umd\popper.js" />
<Content Include="scripts\umd\popper.min.js" />
<Content Include="StatisticheImpiego.aspx" />
<Content Include="MappaStato.aspx" />
<Content Include="ViewSwitcher.ascx" />
<Content Include="vis\img\network\acceptDeleteIcon.png" />
<Content Include="vis\img\network\addNodeIcon.png" />
<Content Include="vis\img\network\backIcon.png" />
<Content Include="vis\img\network\connectIcon.png" />
<Content Include="vis\img\network\cross.png" />
<Content Include="vis\img\network\cross2.png" />
<Content Include="vis\img\network\deleteIcon.png" />
<Content Include="vis\img\network\downArrow.png" />
<Content Include="vis\img\network\editIcon.png" />
<Content Include="vis\img\network\leftArrow.png" />
<Content Include="vis\img\network\minus.png" />
<Content Include="vis\img\network\plus.png" />
<Content Include="vis\img\network\rightArrow.png" />
<Content Include="vis\img\network\upArrow.png" />
<Content Include="vis\img\network\zoomExtends.png" />
<Content Include="vis\vis-graph3d.min.js" />
<Content Include="vis\vis-network.min.css" />
<Content Include="vis\vis-network.min.js" />
<Content Include="vis\vis-timeline-graph2d.min.css" />
<Content Include="vis\vis-timeline-graph2d.min.js" />
<Content Include="vis\vis.css" />
<Content Include="vis\vis.js" />
<Content Include="Content\vis.min.css" />
<Content Include="scripts\vis.min.js" />
<Content Include="WebUserControls\mod_andamentoStorico.ascx" />
<Content Include="WebUserControls\mod_AnPro_DettArt.ascx" />
<Content Include="WebUserControls\mod_AnPro_DettGg.ascx" />
<Content Include="WebUserControls\mod_AnPro_Totali.ascx" />
<Content Include="WebUserControls\mod_grafico.ascx" />
<Content Include="WebUserControls\mod_immagineStato.ascx" />
<Content Include="WebUserControls\mod_listaStatiEventi.ascx" />
<Content Include="WebUserControls\mod_mainMap.ascx" />
<Content Include="WebUserControls\mod_menuTop.ascx" />
<Content Include="WebUserControls\mod_periodoAnalisi.ascx" />
<Content Include="WebUserControls\mod_righePag.ascx" />
<Content Include="WebUserControls\mod_sequencerStati.ascx" />
<Content Include="WebUserControls\mod_statoMacchina.ascx" />
<Content Include="WebUserControls\mod_statoMacchine.ascx" />
<Content Include="scripts\jquery-3.3.1.slim.min.map" />
<Content Include="scripts\jquery-3.3.1.min.map" />
<Content Include="scripts\umd\popper.min.js.map" />
<Content Include="scripts\umd\popper.js.map" />
<Content Include="scripts\umd\popper-utils.min.js.map" />
<Content Include="scripts\umd\popper-utils.js.map" />
<Content Include="scripts\README.md" />
<Content Include="scripts\popper.min.js.map" />
<Content Include="scripts\popper.js.map" />
<Content Include="scripts\popper-utils.min.js.map" />
<Content Include="scripts\popper-utils.js.map" />
<Content Include="vis\vis.map" />
<Content Include="vis\vis.js.map" />
<None Include="Web.OVH-Demo.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.Prod.config">
<DependentUpon>Web.config</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="images\BarraArancio.png" />
<Content Include="images\BarraGrigia.png" />
<Content Include="images\BarraRossa.png" />
<Content Include="images\BarraVerde.png" />
<Content Include="images\bg-menu-main.png" />
<Content Include="images\detail.png" />
<Content Include="images\giallo.png" />
<Content Include="images\grigio.png" />
<Content Include="images\logo colmecc.png" />
<Content Include="images\logo.gif" />
<Content Include="images\logo.png" />
<Content Include="images\logoMoOnPro.png" />
<Content Include="images\logo_sw.png" />
<Content Include="images\ProgressBar.gif" />
<Content Include="images\rosso.png" />
<Content Include="images\titoloCruscotto.png" />
<Content Include="images\verde.png" />
<Content Include="images\view.gif" />
<Content Include="images\view.png" />
<Content Include="images\view_disabled.gif" />
<Content Include="images\view_l.png" />
<Content Include="images\view_m.png" />
<Content Include="images\view_s.gif" />
<Content Include="images\view_s.png" />
<Content Include="WebMasterPages\MAPO_noAjax.master" />
<Content Include="WebMasterPages\MAPO_warning.master" />
<Content Include="Web.config">
<SubType>Designer</SubType>
</Content>
<Content Include="WebUserControls\mod_menuBottom.ascx" />
<Content Include="WebUserControls\mod_sequencerTempiCiclo.ascx" />
<Content Include="WS\AutoCompletamento.asmx" />
</ItemGroup>
<ItemGroup>
<None Include="DonatiPass-appSett.config" />
<None Include="DonatiPass-connStr.config" />
<None Include="compilerconfig.json" />
<None Include="compilerconfig.json.defaults">
<DependentUpon>compilerconfig.json</DependentUpon>
</None>
<None Include="images\macchine\Thumbs.db" />
<None Include="images\semafori.xcf" />
<None Include="images\Thumbs.db" />
<Content Include="PingPage.htm" />
<Content Include="scripts\jintervals.js" />
<Content Include="scripts\jquery.stopwatch.js" />
<Content Include="test.aspx" />
<Content Include="WebMasterPages\MAPO_empty.Master" />
<Content Include="excelAllMacchineDatiConfermati.aspx" />
<Content Include="excelExportDatiConfermati.aspx" />
<Content Include="unauthorized.aspx" />
<Content Include="WebMasterPages\MAPO_empty_refresh30_full.master" />
<Content Include="WebMasterPages\MAPO_empty_refresh30.master" />
<Content Include="Semaforo.aspx" />
<Content Include="DettaglioMacchina.aspx" />
<Content Include="WebMasterPages\MAPO_refresh.master" />
<Content Include="WebMasterPages\MAPO_refresh30.master" />
<Content Include="images\apply.png" />
<Content Include="images\apply_l.png" />
<Content Include="images\apply_m.png" />
<Content Include="images\apply_s.gif" />
<Content Include="images\apply_s.png" />
<Content Include="images\cancel.png" />
<Content Include="images\cancel_l.png" />
<Content Include="images\cancel_m.png" />
<Content Include="images\cancel_s.gif" />
<Content Include="images\cancel_s.png" />
<Content Include="images\edit_l.png" />
<Content Include="images\edit_m.png" />
<Content Include="images\edit_s.gif" />
<Content Include="images\edit_s.png" />
<Content Include="images\elimina_l.png" />
<Content Include="images\elimina_m.png" />
<Content Include="images\elimina_s.gif" />
<Content Include="images\elimina_s.png" />
<Content Include="WebUserControls\mod_datiConfermati.ascx" />
<Content Include="WebUserControls\mod_infoAggiuntive.ascx" />
<Content Include="WebUserControls\mod_realtimeClock.ascx" />
<Content Include="WebUserControls\mod_schermataMacchina.ascx" />
<Content Include="WebUserControls\mod_semaforo.ascx" />
<Content Include="packages.config" />
<Content Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</Content>
<Content Include="logs\PlaceHolder.file" />
<Content Include="Reports\PlaceHolder.file" />
<Content Include="upload\PlaceHolder.file" />
<Content Include="WebCharts\PlaceHolder.file" />
<Content Include="Web.Release.config">
<DependentUpon>Web.config</DependentUpon>
</Content>
<None Include="Properties\PublishProfiles\IIS02.pubxml" />
<None Include="Properties\PublishProfiles\Donati.pubxml" />
<Content Include="Content\Style.less" />
<Content Include="Site.Mobile.Master" />
<Content Include="setupTgt.bat" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Steamware\SteamWareLib\SteamWare.csproj">
<Project>{2872dcfe-8b46-43b2-baa0-842a816a2dd5}</Project>
<Name>SteamWare</Name>
</ProjectReference>
<ProjectReference Include="..\MapoDb\MapoDb.csproj">
<Project>{4617a665-d6e3-4ceb-a689-ce2eecd45713}</Project>
<Name>MapoDb</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="scripts\index.d.ts" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets')" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PreBuildEvent>"$(ProjectDir)setupTgt.bat" "$(ConfigurationName)" "$(ProjectDir)"</PreBuildEvent>
</PropertyGroup>
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>54806</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:54807/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Import Project="..\packages\BuildWebCompiler.1.12.394\build\BuildWebCompiler.targets" Condition="Exists('..\packages\BuildWebCompiler.1.12.394\build\BuildWebCompiler.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>Questo progetto fa riferimento a uno o più pacchetti NuGet che non sono presenti in questo computer. Usare lo strumento di ripristino dei pacchetti NuGet per scaricarli. Per altre informazioni, vedere http://go.microsoft.com/fwlink/?LinkID=322105. Il file mancante è {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\BuildWebCompiler.1.12.394\build\BuildWebCompiler.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\BuildWebCompiler.1.12.394\build\BuildWebCompiler.targets'))" />
</Target>
</Project>
-108
View File
@@ -1,108 +0,0 @@
<%@ Page Language="C#" MasterPageFile="~/WebMasterPages/MAPO_refresh.master" AutoEventWireup="true" Inherits="MoonPro.MappaStato"
Title="Mappa Stato" CodeBehind="MappaStato.aspx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<%@ Register Src="~/WebUserControls/mod_statoMacchina.ascx" TagName="mod_statoMacchina" TagPrefix="uc1" %>
<%@ Register Src="~/WebUserControls/mod_mainMap.ascx" TagPrefix="uc1" TagName="mod_mainMap" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div id="alto" class="menuMainY">
<uc1:mod_mainMap runat="server" ID="mod_mainMap" />
</div>
<div class="row mt-2">
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina01" runat="server" locazione="A0" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina02" runat="server" locazione="A1" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina03" runat="server" locazione="A2" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina04" runat="server" locazione="A3" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina05" runat="server" locazione="A4" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina06" runat="server" locazione="A5" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina07" runat="server" locazione="A6" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina08" runat="server" locazione="A7" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina09" runat="server" locazione="A8" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina10" runat="server" locazione="A9" />
</div>
</div>
<div class="row mt-2">
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina21" runat="server" locazione="B0" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina22" runat="server" locazione="B1" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina23" runat="server" locazione="B2" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina24" runat="server" locazione="B3" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina25" runat="server" locazione="B4" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina26" runat="server" locazione="B5" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina27" runat="server" locazione="B6" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina28" runat="server" locazione="B7" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina29" runat="server" locazione="B8" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina30" runat="server" locazione="B9" />
</div>
</div>
<div class="row mt-2">
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina41" runat="server" locazione="C0" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina42" runat="server" locazione="C1" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina43" runat="server" locazione="C2" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina44" runat="server" locazione="C3" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina45" runat="server" locazione="C4" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina46" runat="server" locazione="C5" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina47" runat="server" locazione="C6" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina48" runat="server" locazione="C7" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina49" runat="server" locazione="C8" />
</div>
<div class="col">
<uc1:mod_statoMacchina ID="Mod_statoMacchina50" runat="server" locazione="C9" />
</div>
</div>
</asp:Content>
-18
View File
@@ -1,18 +0,0 @@
using System;
using System.Web.UI.WebControls;
namespace MoonPro
{
public partial class MappaStato : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lnkCambiaModo_Click(object sender, EventArgs e)
{
// passa alla pagina richiesta...
LinkButton lb = (LinkButton)sender;
Response.Redirect(lb.CommandArgument);
}
}
}
-294
View File
@@ -1,294 +0,0 @@
//------------------------------------------------------------------------------
// <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 MoonPro {
public partial class MappaStato {
/// <summary>
/// Controllo mod_mainMap.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_mainMap mod_mainMap;
/// <summary>
/// Controllo Mod_statoMacchina01.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina01;
/// <summary>
/// Controllo Mod_statoMacchina02.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina02;
/// <summary>
/// Controllo Mod_statoMacchina03.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina03;
/// <summary>
/// Controllo Mod_statoMacchina04.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina04;
/// <summary>
/// Controllo Mod_statoMacchina05.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina05;
/// <summary>
/// Controllo Mod_statoMacchina06.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina06;
/// <summary>
/// Controllo Mod_statoMacchina07.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina07;
/// <summary>
/// Controllo Mod_statoMacchina08.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina08;
/// <summary>
/// Controllo Mod_statoMacchina09.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina09;
/// <summary>
/// Controllo Mod_statoMacchina10.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina10;
/// <summary>
/// Controllo Mod_statoMacchina21.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina21;
/// <summary>
/// Controllo Mod_statoMacchina22.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina22;
/// <summary>
/// Controllo Mod_statoMacchina23.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina23;
/// <summary>
/// Controllo Mod_statoMacchina24.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina24;
/// <summary>
/// Controllo Mod_statoMacchina25.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina25;
/// <summary>
/// Controllo Mod_statoMacchina26.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina26;
/// <summary>
/// Controllo Mod_statoMacchina27.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina27;
/// <summary>
/// Controllo Mod_statoMacchina28.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina28;
/// <summary>
/// Controllo Mod_statoMacchina29.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina29;
/// <summary>
/// Controllo Mod_statoMacchina30.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina30;
/// <summary>
/// Controllo Mod_statoMacchina41.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina41;
/// <summary>
/// Controllo Mod_statoMacchina42.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina42;
/// <summary>
/// Controllo Mod_statoMacchina43.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina43;
/// <summary>
/// Controllo Mod_statoMacchina44.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina44;
/// <summary>
/// Controllo Mod_statoMacchina45.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina45;
/// <summary>
/// Controllo Mod_statoMacchina46.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina46;
/// <summary>
/// Controllo Mod_statoMacchina47.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina47;
/// <summary>
/// Controllo Mod_statoMacchina48.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina48;
/// <summary>
/// Controllo Mod_statoMacchina49.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina49;
/// <summary>
/// Controllo Mod_statoMacchina50.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_statoMacchina Mod_statoMacchina50;
}
}
-50
View File
@@ -1,50 +0,0 @@
<%@ Page Title="Mappa Sequencer" Language="C#" MasterPageFile="~/WebMasterPages/MAPO_refresh30.master" AutoEventWireup="true" CodeBehind="MappaStatoSeq.aspx.cs" Inherits="MoonPro.MappaStatoSeq" Async="true" %>
<%@ Register Src="~/WebUserControls/mod_sequencerStati.ascx" TagPrefix="uc1" TagName="mod_sequencerStati" %>
<%@ Register Src="~/WebUserControls/mod_sequencerStatiJS.ascx" TagPrefix="uc1" TagName="mod_sequencerStatiJS" %>
<%@ Register Src="~/WebUserControls/mod_mainMap.ascx" TagPrefix="uc1" TagName="mod_mainMap" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id="alto" class="menuMainY">
<div style="float: right; padding-right: 10px;">
<asp:Label runat="server" ID="lblGiorno" ForeColor="White">selez. gg:</asp:Label>
<asp:DropDownList runat="server" ID="ddlNumgg" AutoPostBack="True" OnSelectedIndexChanged="ddlNumgg_SelectedIndexChanged" DataSourceID="odsGg" DataTextField="label" DataValueField="value" OnDataBound="ddlNumgg_DataBound">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsGg" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getSubsetMult" TypeName="MapoDb.DS_UtilityTableAdapters.v_selTallyTableAdapter">
<SelectParameters>
<asp:Parameter DefaultValue="1" Name="minVal" Type="Int32" />
<asp:Parameter DefaultValue="90" Name="maxVal" Type="Int32" />
<asp:Parameter DefaultValue="5" Name="mult" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<uc1:mod_mainMap runat="server" ID="mod_mainMap" />
</div>
<div class="row">
<div class="col-12">
<div runat="server" id="divGraphJS">
<uc1:mod_sequencerStatiJS runat="server" ID="mod_sequencerStatiJS2" numGG='<%# Convert.ToInt32(ddlNumgg.SelectedValue) %>' idxMacchina="0" numSplit="100" />
</div>
<div runat="server" id="divGraphLegacy">
<asp:Repeater ID="repSeq" runat="server" OnItemDataBound="repSeq_ItemDataBound" DataSourceID="odsMappa">
<ItemTemplate>
<div style="float: left; clear: both; font-size: 0.8em; width: 70px; height: 36px; margin: 2px 0px; padding: 2px 4px; text-align: center;" class='<%# cssStatoMacchina(Eval("idxMacchina").ToString()) %>'>
<asp:LinkButton ID="lnkMacchina" runat="server" OnClick="lnkMacchina_Click" CommandArgument='<%# Eval("idxMacchina") %>'>
<asp:Label runat="server" ID="lblMacchina" Text='<%# nomeMacchina(Eval("idxMacchina").ToString()) %>' />
</asp:LinkButton></div><div style="float: left; padding: 2px; background-color: white;">
<uc1:mod_sequencerStati runat="server" ID="seqStato" identificativo='<%# Eval("idxMacchina") %>' intervallo='<%# intervalloAnalisi %>' graphHeight="32" />
</div>
</ItemTemplate>
</asp:Repeater>
<asp:ObjectDataSource ID="odsMappa" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="MapoDb.DS_applicazioneTableAdapters.StatoMacchineTableAdapter" FilterExpression="NOT idxMacchina LIKE '%#%'"></asp:ObjectDataSource>
</div>
</div>
</div>
<div class="row mt-2">
<div class="col-3">
</div>
<div class="col-6">
<asp:LinkButton runat="server" ID="lbtForceReload" CssClass="btn btn-danger btn-block" OnClick="lbtForceReload_Click"><i class="fa fa-exclamation-triangle"></i> FORZA CARICAMENTO DATI <i class="fa fa-exclamation-triangle"></i></asp:LinkButton></div><div class="col-3">
</div>
</div>
</asp:Content>
-248
View File
@@ -1,248 +0,0 @@
using MapoDb;
using MoonPro.WebUserControls;
using SteamWare;
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MoonPro
{
public partial class MappaStatoSeq : System.Web.UI.Page
{
public bool enableGraphJS
{
get
{
return memLayer.ML.CRB("enableGraphJS");
}
}
public resoconti _resoconti;
/// <summary>
/// num gg selezionati
/// </summary>
public int numGg
{
get
{
int answ = memLayer.ML.CRI("seq_gg");
// cerco in sessione... se ce l'ho in sessione uso ultimo intervallo...
if (memLayer.ML.isInSessionObject("_numGgSeq"))
{
answ = memLayer.ML.IntSessionObj("_numGgSeq");
}
else
{
try
{
answ = Convert.ToInt32(ddlNumgg.SelectedValue);
}
catch
{
answ = memLayer.ML.CRI("seq_gg");
}
}
return answ;
}
set
{
memLayer.ML.setSessionVal("_numGgSeq", value);
}
}
public intervalloDate intervalloAnalisi
{
get
{
intervalloDate answ = new intervalloDate();
// se ce l'ho in sessione uso ultimo intervallo...
if (memLayer.ML.isInSessionObject("_intervalloSeq"))
{
answ = (intervalloDate)memLayer.ML.objSessionObj("_intervalloSeq");
}
else
{
// parto dalla data alla mezzanotte di oggi (passato)
DateTime finePeriodo = DateTime.Today;
// se sono meno di 64 gg --> aggiungo ore arrotondando...
if (numGg <= 64)
{
int rOre = DateTime.Now.Hour;
/*********************************************
* Regole arrotondamento x errore MAX 1%
* - < 2gg --> 15'
* - < 4gg --> 30'
* - < 8gg --> 1h
* - < 16gg --> 2h
* - < 32gg --> 4h
* - < 64gg --> 8h
*
* semplifico con switch... sino a 8gg --> 1h!
*********************************************/
if (numGg > 8)
{
int rFactor = 1;
if (numGg <= 16)
{
rFactor = 2;
}
else
{
if (numGg <= 32)
{
rFactor = 4;
}
else
{
rFactor = 8;
}
}
// ora arrotondo x difetto alle ore indicate...
rOre = (int)Math.Floor((double)rOre / rFactor) * rFactor;
}
finePeriodo = finePeriodo.AddHours(rOre);
}
answ.fine = finePeriodo;
answ.inizio = answ.fine.AddDays(-numGg);
}
return answ;
}
set
{
memLayer.ML.setSessionVal("_intervalloSeq", value);
}
}
protected DS_applicazione.MacchineDataTable tabMacchine;
protected void Page_Load(object sender, EventArgs e)
{
divGraphJS.Visible = enableGraphJS;
divGraphLegacy.Visible = !enableGraphJS;
if (!enableGraphJS)
{
_resoconti = new resoconti();
tabMacchine = MapoDb.DataLayer.obj.taMacchine.GetData();
}
if (!Page.IsPostBack)
{
// se nuovo grafico...
if (enableGraphJS)
{
// imposto date di intervallo
mod_sequencerStatiJS2.periodo = intervalloAnalisi;
mod_sequencerStatiJS2.numSplit = memLayer.ML.CRS("seq_numSpl");
}
}
}
protected void repSeq_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
mod_sequencerStati sequencer = (mod_sequencerStati)e.Item.FindControl("seqStato");
sequencer.larghezza = memLayer.ML.IntSessionObj("WindowWidth") - 100;
sequencer.graphHeight = memLayer.ML.CRI("seq_height");
sequencer.numSplit = memLayer.ML.CRI("seq_numSpl");
try
{
var datiSeq = _resoconti.sequenzaDati(sequencer.identificativo, intervalloAnalisi);
// SE HO dati mostro
if (datiSeq.serieDati.Count > 0)
{
sequencer.datiSequencer = datiSeq;
sequencer.doUpdate();
sequencer.Visible = true;
}
else
{
sequencer.Visible = false;
logger.lg.scriviLog(string.Format("Dati non trovati per {0}", sequencer.identificativo), tipoLog.INFO);
}
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Eccezione recupero dati per {0}{1}{2}", sequencer.identificativo, Environment.NewLine, exc), tipoLog.EXCEPTION);
sequencer.Visible = false;
}
}
protected void lnkCambiaModo_Click(object sender, EventArgs e)
{
// passa alla pagina richiesta...
LinkButton lb = (LinkButton)sender;
Response.Redirect(lb.CommandArgument);
}
protected void ddlNumgg_SelectedIndexChanged(object sender, EventArgs e)
{
// salvo numGG...
int num = 1;
int.TryParse(ddlNumgg.SelectedValue, out num);
numGg = num;
// refresh
if (enableGraphJS)
{
mod_sequencerStatiJS2.numGG = Convert.ToInt32(ddlNumgg.SelectedValue);
}
else
{
repSeq.DataBind();
}
}
/// <summary>
/// recupera nome macchina da idx
/// </summary>
/// <param name="idxMacchina"></param>
/// <returns></returns>
public string nomeMacchina(string idxMacchina)
{
string answ = "...";
answ = tabMacchine.FindByIdxMacchina(idxMacchina).Nome;
return answ;
}
/// <summary>
/// recupera stato macchina da idx
/// </summary>
/// <param name="idxMacchina"></param>
/// <returns></returns>
public string cssStatoMacchina(string idxMacchina)
{
string answ = "...";
string codColore = resoconti.mngr.semaforoDaIdxStato(resoconti.mngr.statoMacchina(idxMacchina));
answ = codColore;
return answ;
}
/// <summary>
/// rimanda alla pagina di dettaglio della macchina scelta
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void lnkMacchina_Click(object sender, EventArgs e)
{
LinkButton lb = (LinkButton)sender;
memLayer.ML.setSessionVal("IdxMacchina", lb.CommandArgument);
Response.Redirect("~/DettaglioMacchina.aspx");
}
protected void lbtForceReload_Click(object sender, EventArgs e)
{
// svuota sessioni x poi ricalcolare...
string rKey = DataLayer.mHash("legacySeq*");
memLayer.ML.redFlushKey(rKey);
rKey = DataLayer.mHash("jsonSeq*");
memLayer.ML.redFlushKey(rKey);
// disegna
if (enableGraphJS)
{
mod_sequencerStatiJS2.periodo = intervalloAnalisi;
}
else
{
repSeq.DataBind();
}
}
protected void ddlNumgg_DataBound(object sender, EventArgs e)
{
ddlNumgg.SelectedValue = numGg.ToString();
}
}
}
-105
View File
@@ -1,105 +0,0 @@
//------------------------------------------------------------------------------
// <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 MoonPro {
public partial class MappaStatoSeq {
/// <summary>
/// Controllo lblGiorno.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblGiorno;
/// <summary>
/// Controllo ddlNumgg.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList ddlNumgg;
/// <summary>
/// Controllo odsGg.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsGg;
/// <summary>
/// Controllo mod_mainMap.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_mainMap mod_mainMap;
/// <summary>
/// Controllo divGraphJS.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divGraphJS;
/// <summary>
/// Controllo mod_sequencerStatiJS2.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::MoonPro.WebUserControls.mod_sequencerStatiJS mod_sequencerStatiJS2;
/// <summary>
/// Controllo divGraphLegacy.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divGraphLegacy;
/// <summary>
/// Controllo repSeq.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.Repeater repSeq;
/// <summary>
/// Controllo odsMappa.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsMappa;
/// <summary>
/// Controllo lbtForceReload.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lbtForceReload;
}
}
-9
View File
@@ -1,9 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>PingPage</title>
</head>
<body>
OK
</body>
</html>
-34
View File
@@ -1,34 +0,0 @@
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MoonPro")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
//[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("MoonPro")]
//[assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("3d5900ae-111a-45be-96b3-d9e4606ca793")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
-1
View File
@@ -1 +0,0 @@

-55
View File
@@ -1,55 +0,0 @@
<body>
<i>Server gestioen devices TAB per MAPO/MoonPro</i>
<h4>Versione: {{CURRENT-REL}}</h4>
<br />
Note di rilascio:
<ul>
<li>
<b>Ultime modifiche:</b>
<ul>{{LAST-CHANGES}}</ul>
</li>
<li>
<b>v.4.* &rarr;</b>
<ul>
<li>Integrazione sistemi di AutoUpdate</li>
<li>Gestione KIT articoli</li>
<li>Gestione doppia tavola/doppio subsistem</li>
<li>Windows Server 2016 / SQL 2016</li>
</ul>
</li>
<li>
<b>v.3.* &rarr;</b>
<ul>
<li>Implementazione sistemi MON</li>
<li>Estensione reportistica "sequencer" aggregata</li>
<li>Windows Server 2012R2 / SQL 2012</li>
</ul>
</li>
<li>
<b>v.2.* &rarr;</b>
<ul>
<li>Implementazione con acquisitore rPI-IOB</li>
<li>Applicazione avanzata di controllo e amministrazione</li>
<li>Estensione reportistica aggregata e singola</li>
<li>Windows Server 2012 / SQL 2008R2</li>
</ul>
</li>
<li>
<b>v.1.* &rarr;</b>
<ul>
<li>Implementazione iniziale con acquisitore seriale da PC</li>
<li>Applicazione iniziale con Kanban</li>
<li>Windows Server 2008 / SQL 2005</li>
</ul>
</li>
</ul>
<div>
<div style="float: left;">
<img src="logoSteamware.png" />
</div>
<div style="float: right;">
<a href="https://www.steamware.net/IOT" target="_blank">&copy; Steamware 2006-2017</a>
</div>
</div>
</body>
@@ -1,146 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!--default valori-->
<add key="appName" value="MoonPro.16" />
<add key="seq_gg" value="1" />
<add key="seq_height" value="40" />
<add key="seq_numSpl" value="1000" />
<add key="UpdateToDefault" value="true" />
<add key="refreshShort" value="50000" />
<add key="refreshLong" value="300000" />
<!--gestione timeout "esteso" x chiamate SQL critiche, in secondi -->
<add key="sqlLongCommandTimeout" value="600" />
<!--conf base-->
<add key="CodModulo" value="MoonPro" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridMed" value="10" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="MoonPro@steamware.net" />
<add key="_logDir" value="~/logs/" />
<add key="_logLevel" value="5" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_treeMaxChar" value="35" />
<add key="_showAllTree" value="false" />
<add key="_adminEmail" value="samuele@steamware.net" />
<add key="_smtpCli" value="localhost" />
<add key="keepAliveMin" value="10" />
<add key="MinCharAutocomplete" value="1" />
<add key="_pdwUpdateKanban" value="colmecc" />
<add key="_pdwRefreshDb" value="steamware" />
<add key="prefDichProd" value="XX" />
<add key="MostraProd" value="XXPRD" />
<add key="ConfermaProd" value="XXOK" />
<add key="AnnullaProd" value="XXCAN" />
<add key="AumentaProd" value="XXP" />
<add key="DiminuisciProd" value="XXM" />
<add key="prefDichFerm" value="FE" />
<add key="prefDichOp" value="OP" />
<add key="prefDichKanban" value="KA" />
<add key="prefDichAttrezzaggio" value="AT" />
<add key="StartSetup" value="AT02" />
<add key="EndSetup" value="AT01" />
<add key="EndProd" value="AT07" />
<add key="prefModTurno" value="MT" />
<add key="modTurno1" value="MT01" />
<add key="modTurno2" value="MT02" />
<add key="modTurno3" value="MT03" />
<add key="idxPostazioneStd" value="P1005" />
<add key="idxMacchinaStd" value="1005" />
<add key="minutiUpdateAdmin" value="5" />
<add key="showSeqStati" value="true" />
<add key="showSeqTC" value="true" />
<add key="codV" value="Lavora" />
<add key="codG" value="???" />
<add key="codR" value="Ferma" />
<add key="codS" value="Spenta" />
<add key="authSenzaDominio" value="true" />
<add key="TcMaxFactor" value="2" />
<add key="chkIdxOdlEndProd" value="false" />
<add key="MoonProConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="PermessiConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="UtenteCdcConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_Anagrafica;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="VocabolarioConnectionString" value="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_Vocabolario;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<!--DB TEST PROD-->
<!--<add key="MoonProConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="PermessiConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="UtenteCdcConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_Anagrafica_prod;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="VocabolarioConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_Vocabolario_prod;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />-->
<add key="AutoCleanUpInterval" value="10" />
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />
</appSettings>
<connectionStrings>
<add name="MoonProConnectionString" connectionString="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=192.168.51.71\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" providerName="System.Data.SqlClient" />
<!--DB TEST PROD-->
<!--<add name="MoonProConnectionString" connectionString="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.web>
<globalization uiCulture="it" culture="it-IT" enableClientBasedCulture="false" />
<compilation targetFramework="4.0">
<assemblies>
<add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
<httpRuntime executionTimeout="240" maxRequestLength="32768" />
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" /></controls>
</pages>
<httpHandlers>
<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<!--<customErrors mode="On" defaultRedirect="Default.aspx" />-->
</system.web>
<system.webServer>
<staticContent>
<!--aggiunto mimetype x scaricamento fonts aggiuntive-->
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff" />
<!--<mimeMap fileExtension=".woff" mimeType="APPLICATION/X-WOFF" />-->
</staticContent>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<remove name="ChartImageHandler" />
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
<assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" culture="neutral" />
<!--<bindingRedirect oldVersion="0.0.0.0-4.1.60919.0" newVersion="4.1.60919.0" />-->
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
@@ -1,206 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
</sectionGroup>
</configSections>
<appSettings>
<!--default valori-->
<add key="appName" value="MoonPro.16" />
<add key="seq_gg" value="1" />
<add key="seq_height" value="40" />
<add key="seq_numSpl" value="1000" />
<add key="UpdateToDefault" value="true" />
<add key="refreshShort" value="50000" />
<add key="refreshLong" value="300000" />
<!--gestione timeout "esteso" x chiamate SQL critiche, in secondi -->
<add key="sqlLongCommandTimeout" value="600" />
<!--conf base-->
<add key="CodModulo" value="MoonPro" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridMed" value="10" />
<add key="_righeDataGridShort" value="10" />
<add key="_logDir" value="~/logs/" />
<add key="_logLevel" value="5" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_treeMaxChar" value="35" />
<add key="_showAllTree" value="false" />
<add key="_fromEmail" value="MoonPro@steamware.net" />
<add key="_adminEmail" value="samuele@steamware.net" />
<add key="_smtpCli" value="localhost" />
<add key="keepAliveMin" value="10" />
<add key="MinCharAutocomplete" value="1" />
<add key="_pdwRefreshDb" value="steamware" />
<add key="prefDichProd" value="XX" />
<add key="MostraProd" value="XXPRD" />
<add key="ConfermaProd" value="XXOK" />
<add key="AnnullaProd" value="XXCAN" />
<add key="AumentaProd" value="XXP" />
<add key="DiminuisciProd" value="XXM" />
<add key="prefDichFerm" value="FE" />
<add key="prefDichOp" value="OP" />
<add key="prefDichCodArt" value="KA" />
<add key="prefDichAttrezzaggio" value="AT" />
<add key="StartSetup" value="AT02" />
<add key="EndSetup" value="AT01" />
<add key="EndProd" value="AT07" />
<add key="prefModTurno" value="MT" />
<add key="modTurno1" value="MT01" />
<add key="modTurno2" value="MT02" />
<add key="modTurno3" value="MT03" />
<add key="idxPostazioneStd" value="P1005" />
<add key="idxMacchinaStd" value="1005" />
<add key="minutiUpdateAdmin" value="5" />
<add key="showSeqStati" value="true" />
<add key="showSeqTC" value="true" />
<add key="codV" value="Lavora" />
<add key="codG" value="???" />
<add key="codR" value="Ferma" />
<add key="codS" value="Spenta" />
<add key="authSenzaDominio" value="true" />
<add key="TcMaxFactor" value="2" />
<add key="chkIdxOdlEndProd" value="false" />
<!--DB 2008-->
<!--<add key="MoonProConnectionString" value="Data Source=SQL-STEAM\SQL2012;Initial Catalog=MoonPro;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="PermessiConnectionString" value="Data Source=SQL-STEAM\SQL2012;Initial Catalog=MoonPro;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="UtenteCdcConnectionString" value="Data Source=SQL-STEAM\SQL2012;Initial Catalog=Donati_Anagrafica;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=SQL-STEAM\SQL2012;Initial Catalog=MoonPro_Vocabolario;Persist Security Info=True;User ID=sa;Password=keyhammer" />-->
<!--DB 2016-->
<add key="MoonProConnectionString" value="Data Source=localhost\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="PermessiConnectionString" value="Data Source=localhost\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="UtenteCdcConnectionString" value="Data Source=localhost\sqlexpress;Initial Catalog=Donati_Anagrafica;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<add key="VocabolarioConnectionString" value="Data Source=localhost\sqlexpress;Initial Catalog=Donati_Vocabolario;Persist Security Info=True;User ID=steamware;Password=viadante16;" />
<!--DB TEST PROD-->
<!--<add key="MoonProConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="PermessiConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="UtenteCdcConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_Anagrafica_prod;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />
<add key="VocabolarioConnectionString" value="Data Source=sql2012;Initial Catalog=Donati_Vocabolario_prod;Persist Security Info=True;User ID=sa;Password=keyhammer16;" />-->
<add key="AutoCleanUpInterval" value="10" />
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />
</appSettings>
<connectionStrings>
<!--DB 2008-->
<!--<add name="MoonProConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=MoonPro;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=MoonPro;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />-->
<!--DB 2016-->
<add name="MoonProConnectionString" connectionString="Data Source=localhost\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=localhost\sqlexpress;Initial Catalog=Donati_MoonPro;Persist Security Info=True;User ID=steamware;Password=viadante16;" providerName="System.Data.SqlClient" />
<!--DB TEST PROD-->
<!--<add name="MoonProConnectionString" connectionString="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" providerName="System.Data.SqlClient" />
<add name="MapoDb.Properties.Settings.MoonProConnectionString" connectionString="Data Source=sql2012;Initial Catalog=Donati_MoonPro_prod2;Persist Security Info=True;User ID=sa;Password=keyhammer16;" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.6.2" />
</system.Web>
-->
<system.web>
<globalization uiCulture="it" culture="it-IT" enableClientBasedCulture="false" />
<compilation targetFramework="4.6.2">
<assemblies>
<add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
<httpRuntime executionTimeout="240" maxRequestLength="32768" />
<pages controlRenderingCompatibilityVersion="4.0">
<controls>
<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
</controls>
</pages>
<httpHandlers>
<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<!--<customErrors mode="On" defaultRedirect="Default.aspx" />-->
<httpModules>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</httpModules>
</system.web>
<system.webServer>
<staticContent>
<!--aggiunto mimetype x scaricamento fonts aggiuntive-->
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff" />
<!--<mimeMap fileExtension=".woff" mimeType="APPLICATION/X-WOFF" />-->
</staticContent>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<remove name="ChartImageHandler" />
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
<modules>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" preCondition="managedHandler" />
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" preCondition="managedHandler" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" preCondition="managedHandler" />
</modules>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
<assemblyIdentity name="AjaxControlToolkit" publicKeyToken="28f01b0e84b6d53e" culture="neutral" />
<!--<bindingRedirect oldVersion="0.0.0.0-4.1.60919.0" newVersion="4.1.60919.0" />-->
</dependentAssembly>
</assemblyBinding>
</runtime>
<elmah>
<!--
See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for
more information on remote access and securing ELMAH.
-->
<security allowRemoteAccess="false" />
</elmah>
<location path="elmah.axd" inheritInChildApplications="false">
<system.web>
<httpHandlers>
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</httpHandlers>
<!--
See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for
more information on using ASP.NET authorization securing ELMAH.
<authorization>
<allow roles="admin" />
<deny users="*" />
</authorization>
-->
</system.web>
<system.webServer>
<handlers>
<add name="ELMAH" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" preCondition="integratedMode" />
</handlers>
</system.webServer>
</location>
</configuration>
<!--ProjectGuid: 616F889A-BDBE-48B3-ADF6-32D69CB1EA96-->
Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 454 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Some files were not shown because too many files have changed in this diff Show More