Merge branch 'develop'

This commit is contained in:
Samuele E. Locatelli
2014-01-30 15:44:47 +01:00
193 changed files with 1821 additions and 1418 deletions
Binary file not shown.
+43 -8
View File
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.17929
// Runtime Version:4.0.30319.34003
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -9021,17 +9021,24 @@ namespace GIM_data.DS_utilityTableAdapters {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitCommandCollection() {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[3];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT value, label, conditio FROM dbo.v_selCausaliMacchine";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
this._commandCollection[1].CommandText = "SELECT value, label, conditio\r\nFROM v_selCausaliMacchine\r\nWHERE (" +
"conditio = @conditio)";
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@conditio", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "conditio", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].CommandText = "dbo.stp_vscm_getByConditio";
this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@conditio", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[2].Connection = this.Connection;
this._commandCollection[2].CommandText = "dbo.stp_vscm_getByConditioAndCurr";
this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@conditio", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@currVal", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -9062,9 +9069,37 @@ namespace GIM_data.DS_utilityTableAdapters {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
public virtual DS_utility.v_selCausaliMacchineDataTable getByConditio(int conditio) {
public virtual DS_utility.v_selCausaliMacchineDataTable getByConditio(global::System.Nullable<int> conditio) {
this.Adapter.SelectCommand = this.CommandCollection[1];
this.Adapter.SelectCommand.Parameters[0].Value = ((int)(conditio));
if ((conditio.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[1].Value = ((int)(conditio.Value));
}
else {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
DS_utility.v_selCausaliMacchineDataTable dataTable = new DS_utility.v_selCausaliMacchineDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
public virtual DS_utility.v_selCausaliMacchineDataTable getByConditioAndCurr(global::System.Nullable<int> conditio, global::System.Nullable<int> currVal) {
this.Adapter.SelectCommand = this.CommandCollection[2];
if ((conditio.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[1].Value = ((int)(conditio.Value));
}
else {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
if ((currVal.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[2].Value = ((int)(currVal.Value));
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
DS_utility.v_selCausaliMacchineDataTable dataTable = new DS_utility.v_selCausaliMacchineDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
+17 -6
View File
@@ -117,14 +117,25 @@ ORDER BY label</CommandText>
<Mapping SourceColumn="conditio" DataSetColumn="conditio" />
</Mappings>
<Sources>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_selCausaliMacchine" DbObjectType="View" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByConditio" GetMethodModifier="Public" GetMethodName="getByConditio" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByConditio" UserSourceName="getByConditio">
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_vscm_getByConditio" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByConditio" GetMethodModifier="Public" GetMethodName="getByConditio" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByConditio" UserSourceName="getByConditio">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT value, label, conditio
FROM v_selCausaliMacchine
WHERE (conditio = @conditio)</CommandText>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_vscm_getByConditio</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="conditio" ColumnName="conditio" DataSourceName="GIM.dbo.v_selCausaliMacchine" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@conditio" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="conditio" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@conditio" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_vscm_getByConditioAndCurr" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByConditioAndCurr" GetMethodModifier="Public" GetMethodName="getByConditioAndCurr" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByConditioAndCurr" UserSourceName="getByConditioAndCurr">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_vscm_getByConditioAndCurr</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@conditio" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@currVal" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
+13 -13
View File
@@ -4,24 +4,24 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="308" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="9" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:v_selImpianti" ZOrder="16" X="70" Y="70" Height="122" Width="220" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selMacchine" ZOrder="15" X="360" Y="70" Height="139" Width="225" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="75" />
<Shape ID="DesignTable:v_selPrior" ZOrder="14" X="686" Y="79" Height="105" Width="199" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selAmbiti" ZOrder="13" X="944" Y="83" Height="105" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selCausaliMacchine" ZOrder="12" X="957" Y="269" Height="139" Width="266" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="75" />
<Shape ID="DesignTable:v_selTipoGuasto" ZOrder="11" X="1014" Y="466" Height="105" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selSemafori" ZOrder="10" X="666" Y="249" Height="105" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selFreq" ZOrder="9" X="744" Y="492" Height="105" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selStato" ZOrder="5" X="349" Y="327" Height="105" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selPeriodiTrad" ZOrder="8" X="447" Y="478" Height="139" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="75" />
<Shape ID="DesignTable:v_elencoImpiantiMacchine" ZOrder="7" X="853" Y="692" Height="241" Width="295" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="194" />
<Shape ID="DesignTable:v_elencoIntervFilt" ZOrder="1" X="15" Y="425" Height="362" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:sp_elencoIntMTBF_MTTR" ZOrder="6" X="365" Y="657" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:v_selFam" ZOrder="4" X="104" Y="300" Height="105" Width="195" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selOperMtz" ZOrder="3" X="68" Y="864" Height="122" Width="219" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_mtzProgPendingExp" ZOrder="2" X="877" Y="955" Height="324" Width="275" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:v_selCausaliMacchine" ZOrder="1" X="957" Y="269" Height="191" Width="263" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:v_selTipoGuasto" ZOrder="12" X="1014" Y="466" Height="105" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selSemafori" ZOrder="11" X="666" Y="249" Height="105" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selFreq" ZOrder="10" X="744" Y="479" Height="130" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selStato" ZOrder="6" X="349" Y="327" Height="105" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selPeriodiTrad" ZOrder="9" X="447" Y="478" Height="139" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="75" />
<Shape ID="DesignTable:v_elencoImpiantiMacchine" ZOrder="8" X="853" Y="692" Height="241" Width="295" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="194" />
<Shape ID="DesignTable:v_elencoIntervFilt" ZOrder="2" X="15" Y="425" Height="362" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:sp_elencoIntMTBF_MTTR" ZOrder="7" X="365" Y="657" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:v_selFam" ZOrder="5" X="104" Y="300" Height="105" Width="195" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selOperMtz" ZOrder="4" X="68" Y="864" Height="122" Width="219" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_mtzProgPendingExp" ZOrder="3" X="877" Y="955" Height="324" Width="275" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
</Shapes>
<Connectors />
</DiagramLayout>
Binary file not shown.
@@ -2154,7 +2154,6 @@
<summary>
elimina il file + vecchio
</summary>
<param name="_di"></param>
<returns></returns>
</member>
<member name="F:SteamWare.fileMover.obj">
Binary file not shown.
@@ -8,64 +8,65 @@
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False"
DataKeyNames="idxIntPro" DataSourceID="ods" OnDataBound="grView_DataBound" EnableModelValidation="True">
<EmptyDataTemplate>
<asp:Label runat="server" ID="lblNoRecord" Text='<%# traduci("noRecord") %>' />
</EmptyDataTemplate>
<Columns>
<asp:TemplateField HeaderText="nome impianto" SortExpression="nomeImpianto">
<ItemTemplate>
<asp:Label ID="lblNomeImpianto" runat="server" Text='<%# Eval("nomeImpianto") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="nome macchina" SortExpression="nomeMacchina">
<ItemTemplate>
<asp:Label ID="lblNomeMacchina" runat="server" Text='<%# Eval("nomeMacchina") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="cod macchina" SortExpression="codMacchina">
<ItemTemplate>
<asp:Label ID="lblCodMacchina" runat="server" Text='<%# Eval("codMacchina") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="inizio" HeaderText="inizio" SortExpression="inizio"
HtmlEncode="False" /> <%--DataFormatString="{0:dd/MM/yy}" --%>
<asp:BoundField DataField="frequenza" HeaderText="frequenza" SortExpression="frequenza" />
<asp:BoundField DataField="cadenza" HeaderText="cadenza" SortExpression="cadenza" />
<asp:TemplateField HeaderText="descrizione" SortExpression="descrizione">
<ItemTemplate>
<asp:Label ID="lblDescrizione" runat="server" Text='<%# Eval("descrizione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="descrTipo" HeaderText="Tipo" SortExpression="descrTipo" />
<asp:TemplateField HeaderText="fermo" SortExpression="isFermo" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:label ID="lblIsFermo" runat="server" Text='<%# Eval("isFermo") %>' />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>
<asp:TemplateField HeaderText="prior" SortExpression="descrPriorita" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="Label6" runat="server" Text='<%# Eval("idxPriorita") %>' ToolTip='<%# Eval("descrPriorita") %>' />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_applicazioneTableAdapters.v_mtzProgExpTableAdapter"
FilterExpression=" codMacchina LIKE '%{0}%' OR nomeMacchina LIKE '%{0}%' OR descrizione LIKE '%{0}%' ">
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
<asp:SessionParameter DefaultValue="0" Name="idxTipo" SessionField="idxTipo_filt"
Type="Int32" />
<asp:SessionParameter DefaultValue="0" Name="idxMacchina" SessionField="idxMacchina_filt"
Type="Int32" />
</FilterParameters>
</asp:ObjectDataSource>
</div>
<div>
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False"
DataKeyNames="idxIntPro" DataSourceID="ods" OnDataBound="grView_DataBound" EnableModelValidation="True">
<EmptyDataTemplate>
<asp:Label runat="server" ID="lblNoRecord" Text='<%# traduci("noRecord") %>' />
</EmptyDataTemplate>
<Columns>
<asp:TemplateField HeaderText="lblImpianto">
<ItemTemplate>
<asp:Label ID="lblNomeImpianto" runat="server" Text='<%# Eval("nomeImpianto") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="lblMacchina">
<ItemTemplate>
<asp:Label ID="lblNomeMacchina" runat="server" Text='<%# Eval("nomeMacchina") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="codMacchina">
<ItemTemplate>
<asp:Label ID="lblCodMacchina" runat="server" Text='<%# Eval("codMacchina") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="inizio" HeaderText="inizioMtzPro"
HtmlEncode="False" />
<%--DataFormatString="{0:dd/MM/yy}" --%>
<asp:BoundField DataField="frequenza" HeaderText="frequenzaMtzPro" />
<asp:BoundField DataField="cadenza" HeaderText="cadenzaMtzPro" />
<asp:TemplateField HeaderText="descrizione">
<ItemTemplate>
<asp:Label ID="lblDescrizione" runat="server" Text='<%# Eval("descrizione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="descrTipo" HeaderText="lblTipoGuastoShort" />
<asp:TemplateField HeaderText="chkImpFermoShort" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="lblIsFermo" runat="server" Text='<%# Eval("isFermo") %>' />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>
<asp:TemplateField HeaderText="lblPriorShort" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="Label6" runat="server" Text='<%# Eval("idxPriorita") %>' ToolTip='<%# Eval("descrPriorita") %>' />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_applicazioneTableAdapters.v_mtzProgExpTableAdapter"
FilterExpression=" codMacchina LIKE '%{0}%' OR nomeMacchina LIKE '%{0}%' OR descrizione LIKE '%{0}%' ">
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
<asp:SessionParameter DefaultValue="0" Name="idxTipo" SessionField="idxTipo_filt"
Type="Int32" />
<asp:SessionParameter DefaultValue="0" Name="idxMacchina" SessionField="idxMacchina_filt"
Type="Int32" />
</FilterParameters>
</asp:ObjectDataSource>
</div>
</form>
</body>
</html>
@@ -19,14 +19,12 @@ namespace GIM_site
{
if (grView.Rows.Count > 0)
{
LinkButton lb;
// aggiorno gli headers
foreach (TableCell cella in grView.HeaderRow.Cells)
{
try
{
lb = (LinkButton)cella.Controls[0];
lb.Text = traduci(lb.Text);
cella.Text = traduci(cella.Text);
}
catch
{ }
+86 -64
View File
@@ -242,70 +242,90 @@
<Content Include="help\EN\lm_pg_338.html" />
<Content Include="help\EN\lm_pg_339.html" />
<Content Include="help\EN\lm_pg_340.html" />
<Content Include="help\EN\media_440.html" />
<Content Include="help\EN\media_441.html" />
<Content Include="help\EN\media_442.html" />
<Content Include="help\EN\media_443.html" />
<Content Include="help\EN\media_444.html" />
<Content Include="help\EN\media_445.html" />
<Content Include="help\EN\media_446.html" />
<Content Include="help\EN\media_447.html" />
<Content Include="help\EN\media_448.html" />
<Content Include="help\EN\media_449.html" />
<Content Include="help\EN\media_450.html" />
<Content Include="help\EN\media_451.html" />
<Content Include="help\EN\media_452.html" />
<Content Include="help\EN\media_453.html" />
<Content Include="help\EN\media_454.html" />
<Content Include="help\EN\media_455.html" />
<Content Include="help\EN\media_456.html" />
<Content Include="help\EN\media_457.html" />
<Content Include="help\EN\media_458.html" />
<Content Include="help\EN\media_459.html" />
<Content Include="help\EN\media_460.html" />
<Content Include="help\EN\media_461.html" />
<Content Include="help\EN\media_462.html" />
<Content Include="help\EN\media_463.html" />
<Content Include="help\EN\media_464.html" />
<Content Include="help\EN\media_465.html" />
<Content Include="help\EN\media_466.html" />
<Content Include="help\EN\media_467.html" />
<Content Include="help\EN\media_468.html" />
<Content Include="help\EN\media_469.html" />
<Content Include="help\EN\media_470.html" />
<Content Include="help\EN\media_471.html" />
<Content Include="help\EN\mobs\mm_440\logoIliasSW.png" />
<Content Include="help\EN\mobs\mm_441\home.png" />
<Content Include="help\EN\mobs\mm_442\ambiti3.png" />
<Content Include="help\EN\mobs\mm_443\ambiti2.png" />
<Content Include="help\EN\mobs\mm_444\cancellazione.png" />
<Content Include="help\EN\mobs\mm_445\ricerca.png" />
<Content Include="help\EN\mobs\mm_446\selettore.png" />
<Content Include="help\EN\mobs\mm_447\priorita.png" />
<Content Include="help\EN\mobs\mm_448\reparti.png" />
<Content Include="help\EN\mobs\mm_449\macchine.png" />
<Content Include="help\EN\mobs\mm_450\macchine_reparti.png" />
<Content Include="help\EN\mobs\mm_451\aperturaImpianti.png" />
<Content Include="help\EN\mobs\mm_452\festivita.png" />
<Content Include="help\EN\mobs\mm_453\Immagine 11.png" />
<Content Include="help\EN\mobs\mm_454\Immagine 12.png" />
<Content Include="help\EN\mobs\mm_455\operatoriMtz.png" />
<Content Include="help\EN\mobs\mm_456\Immagine 13.png" />
<Content Include="help\EN\mobs\mm_457\elencoRichieste.png" />
<Content Include="help\EN\mobs\mm_458\richiestaItervento.png" />
<Content Include="help\EN\mobs\mm_459\Immagine 14.jpg" />
<Content Include="help\EN\mobs\mm_460\pulsantiEditMtz.png" />
<Content Include="help\EN\mobs\mm_461\pulsantiEditMtz2.png" />
<Content Include="help\EN\mobs\mm_462\dettOp.png" />
<Content Include="help\EN\mobs\mm_463\ProgrammazioneInterventi.png" />
<Content Include="help\EN\mobs\mm_464\inserimentoINterventiProg.png" />
<Content Include="help\EN\mobs\mm_465\interventiScadenza.png" />
<Content Include="help\EN\mobs\mm_466\elencoMacchine.png" />
<Content Include="help\EN\mobs\mm_467\mtbfmttr.png" />
<Content Include="help\EN\mobs\mm_468\mtzGenerale.png" />
<Content Include="help\EN\mobs\mm_469\mtzProgrammata.png" />
<Content Include="help\EN\mobs\mm_470\Immagine 1.png" />
<Content Include="help\EN\mobs\mm_471\Immagine 2.png" />
<Content Include="help\EN\media_472.html" />
<Content Include="help\EN\media_474.html" />
<Content Include="help\EN\media_475.html" />
<Content Include="help\EN\media_476.html" />
<Content Include="help\EN\media_477.html" />
<Content Include="help\EN\media_478.html" />
<Content Include="help\EN\media_479.html" />
<Content Include="help\EN\media_480.html" />
<Content Include="help\EN\media_481.html" />
<Content Include="help\EN\media_482.html" />
<Content Include="help\EN\media_483.html" />
<Content Include="help\EN\media_484.html" />
<Content Include="help\EN\media_485.html" />
<Content Include="help\EN\media_486.html" />
<Content Include="help\EN\media_488.html" />
<Content Include="help\EN\media_489.html" />
<Content Include="help\EN\media_490.html" />
<Content Include="help\EN\media_491.html" />
<Content Include="help\EN\media_492.html" />
<Content Include="help\EN\media_493.html" />
<Content Include="help\EN\media_494.html" />
<Content Include="help\EN\media_495.html" />
<Content Include="help\EN\media_496.html" />
<Content Include="help\EN\media_497.html" />
<Content Include="help\EN\media_498.html" />
<Content Include="help\EN\media_499.html" />
<Content Include="help\EN\media_500.html" />
<Content Include="help\EN\media_501.html" />
<Content Include="help\EN\media_502.html" />
<Content Include="help\EN\media_503.html" />
<Content Include="help\EN\media_504.html" />
<Content Include="help\EN\media_505.html" />
<Content Include="help\EN\mobs\mm_472\homePage.png" />
<Content Include="help\EN\mobs\mm_474\NewUserEnroll.png" />
<Content Include="help\EN\mobs\mm_474\NewUserEnroll_400_0.png" />
<Content Include="help\EN\mobs\mm_475\UserAdministration.png" />
<Content Include="help\EN\mobs\mm_476\ModifyFields.png" />
<Content Include="help\EN\mobs\mm_476\ModifyFields_412_0.png" />
<Content Include="help\EN\mobs\mm_477\newFields.png" />
<Content Include="help\EN\mobs\mm_477\newFields_412_0.png" />
<Content Include="help\EN\mobs\mm_478\Delete.png" />
<Content Include="help\EN\mobs\mm_478\Delete_412_0.png" />
<Content Include="help\EN\mobs\mm_479\Search.png" />
<Content Include="help\EN\mobs\mm_479\Search_500_0.png" />
<Content Include="help\EN\mobs\mm_480\Calendar.png" />
<Content Include="help\EN\mobs\mm_480\Calendar_300_0.png" />
<Content Include="help\EN\mobs\mm_481\ManagePriority.png" />
<Content Include="help\EN\mobs\mm_481\ManagePriority_400_0.png" />
<Content Include="help\EN\mobs\mm_482\machineManagment.png" />
<Content Include="help\EN\mobs\mm_482\machineManagment_550_0.png" />
<Content Include="help\EN\mobs\mm_483\plantManagment.png" />
<Content Include="help\EN\mobs\mm_483\plantManagment_750_0.png" />
<Content Include="help\EN\mobs\mm_484\MachinePlant.png" />
<Content Include="help\EN\mobs\mm_484\MachinePlant_600_0.png" />
<Content Include="help\EN\mobs\mm_485\PlantOpening.png" />
<Content Include="help\EN\mobs\mm_485\PlantOpening_300_0.png" />
<Content Include="help\EN\mobs\mm_486\DaysOff.png" />
<Content Include="help\EN\mobs\mm_486\DaysOff_300_0.png" />
<Content Include="help\EN\mobs\mm_488\ManageFamilyMachine.png" />
<Content Include="help\EN\mobs\mm_489\NatureProblem.png" />
<Content Include="help\EN\mobs\mm_490\MaintenanceMen.png" />
<Content Include="help\EN\mobs\mm_491\InsertionRequest.png" />
<Content Include="help\EN\mobs\mm_492\ticketList.png" />
<Content Include="help\EN\mobs\mm_493\ticket.png" />
<Content Include="help\EN\mobs\mm_494\InterventionDetail.png" />
<Content Include="help\EN\mobs\mm_494\InterventionDetail_500_0.png" />
<Content Include="help\EN\mobs\mm_495\EditView.png" />
<Content Include="help\EN\mobs\mm_496\UpdateUndo.png" />
<Content Include="help\EN\mobs\mm_497\InterventionDetail2.png" />
<Content Include="help\EN\mobs\mm_498\ProgrammedMaintenance.png" />
<Content Include="help\EN\mobs\mm_498\ProgrammedMaintenance_900_0.png" />
<Content Include="help\EN\mobs\mm_499\ProgrammedInterveInsert.png" />
<Content Include="help\EN\mobs\mm_499\ProgrammedInterveInsert_850_0.png" />
<Content Include="help\EN\mobs\mm_500\InterventionsToExpire.png" />
<Content Include="help\EN\mobs\mm_500\InterventionsToExpire_850_0.png" />
<Content Include="help\EN\mobs\mm_501\PlantMachineList.png" />
<Content Include="help\EN\mobs\mm_502\MtbfMttr.png" />
<Content Include="help\EN\mobs\mm_502\MtbfMttr_850_0.png" />
<Content Include="help\EN\mobs\mm_503\ProgrammedMaintenance.png" />
<Content Include="help\EN\mobs\mm_503\ProgrammedMaintenance_850_0.png" />
<Content Include="help\EN\mobs\mm_504\ProgrammedInterveInsert.png" />
<Content Include="help\EN\mobs\mm_504\ProgrammedInterveInsert_850_0.png" />
<Content Include="help\EN\mobs\mm_505\logo carta intestata.png" />
<Content Include="help\EN\mobs\mm_505\logo carta intestata_600_0.png" />
<Content Include="help\EN\Services\MediaObjects\flash_mp3_player\mp3player.swf" />
<Content Include="help\EN\Services\MediaObjects\media_element_2_11_3\background.png" />
<Content Include="help\EN\Services\MediaObjects\media_element_2_11_3\bigplay.png" />
@@ -575,6 +595,8 @@
<None Include="sql\Applicazione\V1.4 USA\GIM_0222.sql" />
<None Include="sql\Applicazione\V1.4 USA\GIM_0223.sql" />
<None Include="sql\Applicazione\V1.4 USA\GIM_0224.sql" />
<Content Include="sql\Applicazione\V1.4 USA\GIM_0232.sql" />
<Content Include="sql\Applicazione\V1.4 USA\GIM_0229.sql" />
<Content Include="sql\Applicazione\V1.4 USA\GIM_0227.sql" />
<Content Include="Style.css" />
<Content Include="test.aspx" />
@@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
<NameOfLastUsedPublishProfile>Somaschini-USA</NameOfLastUsedPublishProfile>
<NameOfLastUsedPublishProfile>Ufficio-ENG %28.17%29</NameOfLastUsedPublishProfile>
</PropertyGroup>
<ProjectExtensions>
<VisualStudio>
@@ -6,6 +6,6 @@ by editing this MSBuild file. In order to learn more about this please visit htt
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TimeStampOfAssociatedLegacyPublishXmlFile />
<EncryptedPassword>AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAeedwGXkKPUOp+YE/vTr2QgAAAAACAAAAAAADZgAAwAAAABAAAACQS+fM7DateS+EquuzojvSAAAAAASAAACgAAAAEAAAAGLIA8ke+wQ0O0VCqm8lL1MQAAAAqsh6BaGnlMsr7uy6+GYv/xQAAABHPl+iyTy0pgDKMio//KVnsXhPvw==</EncryptedPassword>
<EncryptedPassword>AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAA/K81nomLRUiuXNLIOVdzQgAAAAACAAAAAAADZgAAwAAAABAAAABqbNcPdMltN4x29FwJvbFyAAAAAASAAACgAAAAEAAAAB+GqujTjGBelTN1968dY4IQAAAArh09WVv/59SxTSsqcNKB1hQAAAAJ6AGgm/PmiEe/iPOWuZQEkOmoIQ==</EncryptedPassword>
</PropertyGroup>
</Project>
+7 -1
View File
@@ -104,7 +104,7 @@
<add key="welcomeApp" value="GIM_welcomeApp" />
<add key="appName" value="GIM" />
<add key="mainRev" value="1.3" />
<add key="minRev" value="228" />
<add key="minRev" value="232" />
<add key="copyRight" value="SteamWare © 2006" />
<add key="defaultApp" value="GIM_Appl" />
<add key="defaultTitle" value="GIM_ShortWelcome" />
@@ -121,6 +121,11 @@
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=Somas_Vocabolario;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="AppConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=keyhammer" />
<!--<add key="PermessiConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaAnag;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaVoc;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="AppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=ViaDante16!" />-->
<!--valori default-->
<add key="defaultMatr" value="0000" />
<add key="defaultCodImp" value="0000" />
@@ -171,6 +176,7 @@
</appSettings>
<connectionStrings>
<add name="GIMConnectionString" connectionString="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM_USA;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<!--<add name="GIMConnectionString" connectionString="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=ViaDante16!" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
@@ -97,21 +97,28 @@
<asp:Button ID="btnShowInsPeriodo" runat="server" Text="..." OnClick="btnShowInsPeriodo_Click" />
<asp:Panel runat="server" ID="pnlInsPeriodo" Visible="false">
<div style="float: left;">
<asp:Label runat="server" ID="lblDataFrom" AssociatedControlID="txtDataFrom" />
<br />
<asp:TextBox ID="txtDataFrom" runat="server" Width="5em" />
<cc1:CalendarExtender ID="CalendarExtender2" runat="server" FirstDayOfWeek="Monday"
TargetControlID="txtDataFrom" Format="dd/MM/yy">
</cc1:CalendarExtender>
</div>
<div style="float: left;">
<asp:Label runat="server" ID="lblDataTo" AssociatedControlID="txtDataTo" />
<br />
<asp:TextBox ID="txtDataTo" runat="server" Width="5em" />
<cc1:CalendarExtender ID="CalendarExtender3" runat="server" FirstDayOfWeek="Monday"
TargetControlID="txtDataTo" Format="dd/MM/yy">
</cc1:CalendarExtender>
</div>
<div style="float: left;">
<asp:Label runat="server" ID="lblDescrizione" AssociatedControlID="txtDescrizione" />
<br />
<asp:TextBox ID="txtDescrizione" runat="server" Width="30em" />
</div>
<div style="float: left;">
<br />
<asp:Button ID="btnInsPeriodo" runat="server" onclick="btnInsPeriodo_Click" />
</div>
<asp:Label ID="lblWarning" runat="server" Visible="false" CssClass="erroreMid" />
@@ -17,6 +17,11 @@ public partial class mod_calChiusura : ApplicationUserControl
grView.PageSize = _righeDataGridMed;
btnShowInsPeriodo.Text = traduci("btnShowInsPeriodo");
btnInsPeriodo.Text = traduci("btnInsPeriodo");
lblDataFrom.Text = traduci("lblDataFrom");
lblDataTo.Text = traduci("lblDataTo");
lblDescrizione.Text = traduci("lblDescrizione");
CalendarExtender2.Format = memLayer.ML.CRS("ddMMyyyy");
CalendarExtender3.Format = memLayer.ML.CRS("ddMMyyyy");
}
}
@@ -89,8 +94,8 @@ public partial class mod_calChiusura : ApplicationUserControl
protected void btnInsPeriodo_Click(object sender, EventArgs e)
{
// verifico date congrue...
DateTime inizio = Convert.ToDateTime(txtDataFrom.Text);
DateTime fine = Convert.ToDateTime(txtDataTo.Text);
DateTime inizio = WebGimUtils.convDate(txtDataFrom.Text, memLayer.ML.CRS("ddMMyyyy"), memLayer.ML.CRS("culture")); //Convert.ToDateTime(txtDataFrom.Text);
DateTime fine = WebGimUtils.convDate(txtDataTo.Text, memLayer.ML.CRS("ddMMyyyy"), memLayer.ML.CRS("culture")); //Convert.ToDateTime(txtDataTo.Text);
if (fine.CompareTo(inizio) >= 0)
{
// inserisco le voci x tutte le date nell'intervallo...
@@ -56,6 +56,15 @@ public partial class mod_calChiusura {
/// </remarks>
protected global::System.Web.UI.WebControls.Panel pnlInsPeriodo;
/// <summary>
/// lblDataFrom 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 lblDataFrom;
/// <summary>
/// txtDataFrom control.
/// </summary>
@@ -74,6 +83,15 @@ public partial class mod_calChiusura {
/// </remarks>
protected global::AjaxControlToolkit.CalendarExtender CalendarExtender2;
/// <summary>
/// lblDataTo 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 lblDataTo;
/// <summary>
/// txtDataTo control.
/// </summary>
@@ -92,6 +110,15 @@ public partial class mod_calChiusura {
/// </remarks>
protected global::AjaxControlToolkit.CalendarExtender CalendarExtender3;
/// <summary>
/// lblDescrizione 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 lblDescrizione;
/// <summary>
/// txtDescrizione control.
/// </summary>
@@ -587,15 +587,17 @@
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:Label runat="server" ID="lblCausale" Text='<%# Eval("idxCausale") %>' Visible="false" />
<asp:DropDownList ID="listCausali" runat="server" AutoPostBack="True" DataSourceID="odsCausali"
DataTextField="label" DataValueField="value" Width="400px" BackColor="#cdffcd"
Font-Size="8pt" SelectedValue='<%# Bind("idxCausale") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter">
SelectMethod="getByConditioAndCurr" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter" OnDataBinding="odsCausali_DataBinding">
<SelectParameters>
<asp:ControlParameter ControlID="listMacchine" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
<asp:ControlParameter ControlID="lblCausale" DefaultValue="0" Name="currVal" PropertyName="Text" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</td>
@@ -619,7 +621,7 @@
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter">
</asp:ObjectDataSource>
</td>
<td colspan="6">
<td colspan="5">
<asp:TextBox ID="txtDescrizione" runat="server" Text='<%# Bind("descrizione") %>'
CssClass="textEv_2Left" Height="100px" Width="530px" TextMode="MultiLine" />
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="Obbligatorio !!!"
@@ -141,5 +141,11 @@ public partial class mod_dettaglioIntervento : System.Web.UI.UserControl
return (user_std.UtSn.diritti.Select("COD_FUNZIONE = 'GIM_SU'").Length > 0);
}
}
protected void odsCausali_DataBinding(object sender, EventArgs e)
{
}
}
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4927
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@@ -433,6 +433,7 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
}
// a questo punto aggiorno e ricalcolo pending!
mtzProgr.obj.processaCodaMtzPro();
ods.DataBind();
grView.DataBind();
UpdatePanel2.Update();
// aggiorno
@@ -7,7 +7,7 @@
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selFamTableAdapter">
</asp:ObjectDataSource>
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
DataKeyNames="idxCausale" DataSourceID="ods" OnDataBound="grView_DataBound">
DataKeyNames="idxCausale" DataSourceID="ods" OnDataBound="grView_DataBound" PageSize="25">
<RowStyle CssClass="ctrRowStyle" />
<AlternatingRowStyle CssClass="ctrAltRowStyle" />
<EditRowStyle CssClass="ctrEditRowStyle" />
@@ -36,7 +36,7 @@
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter"></asp:ObjectDataSource>
</asp:Panel>
<asp:RequiredFieldValidator ID="rfvReparto" runat="server" ErrorMessage="!!!" ControlToValidate="listImpianti"
ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
ValidationGroup="inserimento" Display="Dynamic" />
</div>
</td>
<td valign="top">
@@ -55,7 +55,7 @@
</asp:ObjectDataSource>
</asp:Panel>
<asp:RequiredFieldValidator ID="rfvMacchina" runat="server" ErrorMessage="!!!" ControlToValidate="listMacchine"
ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
ValidationGroup="inserimento" Display="Dynamic" />
</div>
</td>
<td valign="top">
@@ -64,18 +64,18 @@
<asp:Label runat="server" ID="lblDettagliGuasto" Font-Bold="true" /><br />
<br />
<div style="border-top: 1px solid #acacac; height: 48px;">
<div style="float: right; padding-top:4px; padding-left: 15px;">
<div style="float: right; padding-top: 4px; padding-left: 15px;">
<asp:Label runat="server" ID="lblPrior" /><br />
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
DataValueField="value" CssClass="textEv_1" />
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter"></asp:ObjectDataSource>
</div>
<div style="float: left; padding-top:4px;">
<div style="float: left; padding-top: 4px;">
<asp:Label runat="server" ID="lblMatr" /><br />
<asp:TextBox runat="server" ID="txtMatr" Width="3em" CssClass="textEv_1" />
<asp:RequiredFieldValidator ID="rfvMatr" runat="server" ErrorMessage="!!!" ControlToValidate="txtMatr"
ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
ValidationGroup="inserimento" Display="Dynamic" />
</div>
</div>
<div style="clear: both; text-align: center; border-top: 1px solid #ACACAC; height: 64px;">
@@ -123,6 +123,8 @@
</SelectParameters>
</asp:ObjectDataSource>
</asp:Panel>
<asp:RequiredFieldValidator ID="rfvCausali" runat="server" ErrorMessage="!!!" ControlToValidate="listCausali"
ValidationGroup="inserimento" Display="Dynamic" />
</div>
</td>
</tr>
@@ -133,7 +135,7 @@
<asp:Label runat="server" ID="lblDescrGuasto" /><br />
<asp:TextBox runat="server" ID="txtDescrizione" TextMode="MultiLine" Rows="10" Width="100%" />
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="!!!"
ControlToValidate="txtDescrizione" ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
ControlToValidate="txtDescrizione" ValidationGroup="inserimento" Display="Dynamic" />
</asp:Panel>
<asp:Button ID="btnSend" runat="server" Width="300px" Height="30px" OnClick="btnSend_Click"
CausesValidation="true" ValidationGroup="inserimento" />
@@ -107,6 +107,8 @@ public partial class mod_insertRichiesta : System.Web.UI.UserControl
rfvReparto.ErrorMessage = string.Format("{0}: {1}", traduci("campoRichiesto"), traduci("reparto"));
rfvMacchina.ErrorMessage = string.Format("{0}: {1}", traduci("campoRichiesto"), traduci("macchina"));
rfvMatr.ErrorMessage = string.Format("{0}: {1}", traduci("campoRichiesto"), traduci("matricola"));
rfvCausali.ErrorMessage = string.Format("{0}: {1}", traduci("campoRichiesto"), traduci("causali"));
rfvDescrizione.ErrorMessage = string.Format("{0}: {1}", traduci("campoRichiesto"), traduci("descrizione"));
}
/// <summary>
/// aggiorna elenco macchine selezionato impianto
@@ -362,6 +362,15 @@ public partial class mod_insertRichiesta {
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsCausali;
/// <summary>
/// rfvCausali 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.RequiredFieldValidator rfvCausali;
/// <summary>
/// Panel2 control.
/// </summary>
+37 -41
View File
@@ -1,4 +1,4 @@
<%@ Page Language="C#" AutoEventWireup="true" Inherits="autoEnroll" Codebehind="autoEnroll.aspx.cs" %>
<%@ Page Language="C#" AutoEventWireup="true" Inherits="autoEnroll" CodeBehind="autoEnroll.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">
@@ -7,49 +7,45 @@
</head>
<body>
<form id="form1" runat="server">
<div style="text-align:center;">
<h1>
Registrazione nuovo utente
</h1>
<table>
<tr>
<td>
Cognome:
</td>
<td>
<div style="text-align: center;">
<h1>
<asp:Label runat="server" ID="lblRegNewUser" />
</h1>
<div style="width: 250px; margin: auto; text-align: center; clear:both;">
<div style="float: left;">
<asp:Label runat="server" ID="lblSurname" />:
</div>
<div style="float: right;">
<asp:TextBox ID="txtCognome" runat="server" />
<asp:RequiredFieldValidator ID="rfvCognome" runat="server" ErrorMessage="Richiesto!"
ControlToValidate="txtCognome" />
</td>
</tr>
<tr>
<td>
Nome:
</td>
<td>
<asp:RequiredFieldValidator ID="rfvCognome" runat="server" ErrorMessage="!!!"
ControlToValidate="txtCognome" Display="Dynamic" />
</div>
</div>
<div style="width: 250px; margin: auto; text-align: center; clear:both;">
<div style="float: left;">
<asp:Label runat="server" ID="lblName" />:
</div>
<div style="float: right;">
<asp:TextBox ID="txtNome" runat="server" />
<asp:RequiredFieldValidator ID="rfvNome" runat="server" ErrorMessage="Richiesto!"
ControlToValidate="txtNome" />
</td>
</tr>
<tr>
<td>
email:
</td>
<td>
<asp:RequiredFieldValidator ID="rfvNome" runat="server" ErrorMessage="!!!"
ControlToValidate="txtNome" Display="Dynamic" />
</div>
</div>
<div style="width: 250px; margin: auto; text-align: center; clear:both;">
<div style="float: left;">
<asp:Label runat="server" ID="lblEmail" />:
</div>
<div style="float: right;">
<asp:TextBox ID="txtEmail" runat="server" />
<asp:RequiredFieldValidator ID="rfvEmail" runat="server" ErrorMessage="Richiesto!"
ControlToValidate="txtEmail" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="btnSave" runat="server" Text="Salva" Width="200px"
onclick="btnSave_Click" />
</td>
</tr>
</table>
</div>
<asp:RequiredFieldValidator ID="rfvEmail" runat="server" ErrorMessage="!!!"
ControlToValidate="txtEmail" Display="Dynamic" />
</div>
</div>
<div style="width: 250px; margin: auto; text-align: center;">
<asp:Button ID="btnSave" runat="server" Text="..." Width="250px"
OnClick="btnSave_Click" />
</div>
</div>
</form>
</body>
</html>
@@ -9,7 +9,28 @@ public partial class autoEnroll : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
traduciObj();
}
}
private void traduciObj()
{
lblRegNewUser.Text = traduci("lblRegNewUser");
lblSurname.Text = traduci("lblSurname");
lblName.Text = traduci("lblName");
lblEmail.Text = traduci("lblEmail");
btnSave.Text = traduci("btnSave");
}
/// <summary>
/// wrapper traduzione
/// </summary>
/// <param name="lemma"></param>
/// <returns></returns>
public string traduci(object lemma)
{
return user_std.UtSn.Traduci(lemma.ToString());
}
protected void btnSave_Click(object sender, EventArgs e)
{
+37 -2
View File
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4927
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@@ -21,6 +20,24 @@ public partial class autoEnroll {
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// lblRegNewUser 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 lblRegNewUser;
/// <summary>
/// lblSurname 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 lblSurname;
/// <summary>
/// txtCognome control.
/// </summary>
@@ -39,6 +56,15 @@ public partial class autoEnroll {
/// </remarks>
protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvCognome;
/// <summary>
/// lblName 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 lblName;
/// <summary>
/// txtNome control.
/// </summary>
@@ -57,6 +83,15 @@ public partial class autoEnroll {
/// </remarks>
protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvNome;
/// <summary>
/// lblEmail 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 lblEmail;
/// <summary>
/// txtEmail control.
/// </summary>
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -2154,7 +2154,6 @@
<summary>
elimina il file + vecchio
</summary>
<param name="_di"></param>
<returns></returns>
</member>
<member name="F:SteamWare.fileMover.obj">
+1 -1
View File
@@ -485,7 +485,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduction</h1><div class="ilc_text_block_Standard">The  WebGIM application allows integrated management of maintenance through the input of requests for maintenance, consulting the list of open requests, in progress or already completed, and management of data and reports with a simple web interface.<br/>The add-on module allows you to enter scheduled maintenance.<br/>The guide allows you to use the best features in this application explaining step by step operation.<br/> <br/>To use the application you need to connect with a web browser to the address of the installation server and log in with your credentials.<br/>The initial screen (see Fig. 1) has the left side menu that contains all the functions accessible by the current user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_441/home.png" width="500" height="273"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div><div class="ilc_text_block_Standard">The screens and menus shown are for guidance only as the application displays menu items and functionality based on the permissions assigned to the user.<!--Break--></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduction</h1><div class="ilc_text_block_Standard">The  WebGIM application allows integrated management of maintenance through the input of requests for maintenance, consulting the list of open requests, in progress or already completed, and management of data and reports with a simple web interface.<br/>The add-on module allows you to enter scheduled maintenance.<br/>The guide allows you to use the best features in this application explaining step by step operation.<br/> <br/>To use the application you need to connect with a web browser to the address of the installation server and log in with your credentials.<br/>The initial screen (see Fig. 1) has the left side menu that contains all the functions accessible by the current user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="600"><img border="0" src="mobs/mm_472/homePage.png" width="600" height="298"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div><div class="ilc_text_block_Standard">The screens and menus shown are for guidance only as the application displays menu items and functionality based on the permissions assigned to the user.<!--Break--></div>
</div>
@@ -484,7 +484,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Contacts and Support</h1><div class="ilc_text_block_Standard">For product support please contact (GMT+1 time zone)<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="460"><img border="0" src="mobs/mm_440/logoIliasSW.png" width="460" height="256"/></td></tr></table></div><div class="ilc_text_block_Standard">Email : info@steamware.net<!--Break--></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Contacts and Support</h1><div class="ilc_text_block_Standard">For product support please contact (GMT+1 time zone)<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="600"><img border="0" src="mobs/mm_505/logo carta intestata_600_0.png" width="600" height="215"/></td></tr></table></div><div class="ilc_text_block_Standard">Email : info@steamware.net<!--Break--></div>
</div>
@@ -485,7 +485,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduction</h1><div class="ilc_text_block_Standard">The  WebGIM application allows integrated management of maintenance through the input of requests for maintenance, consulting the list of open requests, in progress or already completed, and management of data and reports with a simple web interface.<br/>The add-on module allows you to enter scheduled maintenance.<br/>The guide allows you to use the best features in this application explaining step by step operation.<br/> <br/>To use the application you need to connect with a web browser to the address of the installation server and log in with your credentials.<br/>The initial screen (see Fig. 1) has the left side menu that contains all the functions accessible by the current user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_441/home.png" width="500" height="273"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div><div class="ilc_text_block_Standard">The screens and menus shown are for guidance only as the application displays menu items and functionality based on the permissions assigned to the user.<!--Break--></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduction</h1><div class="ilc_text_block_Standard">The  WebGIM application allows integrated management of maintenance through the input of requests for maintenance, consulting the list of open requests, in progress or already completed, and management of data and reports with a simple web interface.<br/>The add-on module allows you to enter scheduled maintenance.<br/>The guide allows you to use the best features in this application explaining step by step operation.<br/> <br/>To use the application you need to connect with a web browser to the address of the installation server and log in with your credentials.<br/>The initial screen (see Fig. 1) has the left side menu that contains all the functions accessible by the current user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="600"><img border="0" src="mobs/mm_472/homePage.png" width="600" height="298"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div><div class="ilc_text_block_Standard">The screens and menus shown are for guidance only as the application displays menu items and functionality based on the permissions assigned to the user.<!--Break--></div>
</div>
File diff suppressed because one or more lines are too long
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (2/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Failures list</span><br/> <br/>This section allows you to define areas of fault and / or modify the fields of the possible faults as wear and tear, accidental, routine maintenance or others.<br/> <br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Priority list</span><br/> <br/>The priority list section allows editing and insertion of priorities, marked with an id priority and an associated style (traffic lights red, yellow and green) to quickly distinguish the application priority of an element (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="410"><img border="0" src="mobs/mm_447/priorita.png" width="410" height="122"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage priority</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Failure type managment </span><br/> <br/>From this section you can manage the data of the type of fault in a manner similar to the others.<!--Break--></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (2/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Failures list</span><br/> <br/>This section allows you to define areas of fault and / or modify the fields of the possible faults as wear and tear, accidental, routine maintenance or others.<br/> <br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Priority list</span><br/> <br/>The priority list section allows editing and insertion of priorities, marked with an id priority and an associated style (traffic lights red, yellow and green) to quickly distinguish the application priority of an element (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_481/ManagePriority_400_0.png" width="400" height="82"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage priority</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Failure type managment </span><br/> <br/>From this section you can manage the data of the type of fault in a manner similar to the others.<!--Break--></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (3/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Plant management </span><br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong"> </span><br/>To change the entries in the departments registry  do for the global change master data (ie yellow pencil icon to edit the entry and green check mark to confirm / red X to cancel) (fig. 1), it is also possible<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on the magic wand to clone the current record</li><li class="ilc_list_item_StandardListItem">use the calendar to select a date selectors</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="468"><img border="0" src="mobs/mm_448/reparti.png" width="468" height="171"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage departments</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Machines management </span><br/><br/>Machine management page is similar to other registries, includes the functionality of "clone record" and the possibility to select the plant a machine belongs clicking on "Plant" in the edit mode of an item (fig. 2).<br/><br/>Using the selector pop-up choose an item or search it using the search box.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="566"><img border="0" src="mobs/mm_449/macchine.png" width="566" height="239"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Machine management</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (3/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Plant management </span><br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong"> </span><br/>To change the entries in the departments registry  do for the global change master data (ie yellow pencil icon to edit the entry and green check mark to confirm / red X to cancel) (fig. 1), it is also possible<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on the magic wand to clone the current record</li><li class="ilc_list_item_StandardListItem">use the calendar to select a date selectors</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="750"><img border="0" src="mobs/mm_483/plantManagment_750_0.png" width="750" height="216"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Plant managment</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Machines management </span><br/><br/>Machine management page is similar to other registries, includes the functionality of "clone record" and the possibility to select the plant a machine belongs clicking on "Plant" in the edit mode of an item (fig. 2).<br/><br/>Using the selector pop-up choose an item or search it using the search box.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="650"><img border="0" src="mobs/mm_482/machineManagment_550_0.png" width="650" height="188"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Machine management</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (4/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Machine-plant</span><br/> <br/>By managing machine-plant you can manage the association between machines and units (Fig. 1).<br/> <br/>To assign the machines to departments<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the two drop-down menu at the top departments desired</li><li class="ilc_list_item_StandardListItem">click on the "magnifying lens" to select an item</li><li class="ilc_list_item_StandardListItem">move the selected machine in the department you want by clicking on one of the central arrows (from left to right department or vice versa)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="565"><img border="0" src="mobs/mm_450/macchine_reparti.png" width="565" height="189"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage machine-departments</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (4/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Machine-plant</span><br/> <br/>By managing machine-plant you can manage the association between machines and units (Fig. 1).<br/> <br/>To assign the machines to departments<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the two drop-down menu at the top departments desired</li><li class="ilc_list_item_StandardListItem">click on the "magnifying lens" to select an item</li><li class="ilc_list_item_StandardListItem">move the selected machine in the department you want by clicking on one of the central arrows (from left to right department or vice versa)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="700"><img border="0" src="mobs/mm_484/MachinePlant_600_0.png" width="700" height="243"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage machine-departments</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (5/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Plant opening <br/></span><br/> <br/>Through the opening management systems you can define the opening hours of daily plant for the correct definition of the report. The change takes place as for the other registries by clicking on the yellow pencil, confirming the changes with the green check mark or reversing with the red x (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="257"><img border="0" src="mobs/mm_451/aperturaImpianti.png" width="257" height="231"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Managing openings</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Days off calendar </span><br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong"> </span><br/>With the closing calendar management capabilities, you can enter public holidays / non-working days in order to obtain a correct reporting which exclude non-working days (fig. 2).<br/> <br/> <br/>Through the list of days of closure for insert the desired days :<ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on new - will set a record with the current day</li><li class="ilc_list_item_StandardListItem">change the newly inserted record by clicking on the yellow pencil</li><li class="ilc_list_item_StandardListItem">select the desired date from the calendar picker and enter a description </li><li class="ilc_list_item_StandardListItem">confirm the selection with the green check mark or cancel it with the red x</li></ul>To enter a range of dates<ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on "Show insert stop period" on the page</li><li class="ilc_list_item_StandardListItem">insert the two dates by clicking on the text box to display the selector pop-up calendar</li><li class="ilc_list_item_StandardListItem">enter a description</li><li class="ilc_list_item_StandardListItem">confirm the entry by clicking on "Insert stops for selected period"</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="294"><img border="0" src="mobs/mm_452/festivita.png" width="294" height="293"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Manage closures</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (5/8)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Plant opening <br/></span><br/> <br/>Through the opening management systems you can define the opening hours of daily plant for the correct definition of the report. The change takes place as for the other registries by clicking on the yellow pencil, confirming the changes with the green check mark or reversing with the red x (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="300"><img border="0" src="mobs/mm_485/PlantOpening_300_0.png" width="300" height="175"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Managing openings</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Days off calendar </span><br/><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong"> </span><br/>With the closing calendar management capabilities, you can enter public holidays / non-working days in order to obtain a correct reporting which exclude non-working days (fig. 2).<br/> <br/> <br/>Through the list of days of closure for insert the desired days :<ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on new - will set a record with the current day</li><li class="ilc_list_item_StandardListItem">change the newly inserted record by clicking on the yellow pencil</li><li class="ilc_list_item_StandardListItem">select the desired date from the calendar picker and enter a description </li><li class="ilc_list_item_StandardListItem">confirm the selection with the green check mark or cancel it with the red x</li></ul>To enter a range of dates<ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on "Show insert stop period" on the page</li><li class="ilc_list_item_StandardListItem">insert the two dates by clicking on the text box to display the selector pop-up calendar</li><li class="ilc_list_item_StandardListItem">enter a description</li><li class="ilc_list_item_StandardListItem">confirm the entry by clicking on "Insert stops for selected period"</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="350"><img border="0" src="mobs/mm_486/DaysOff_300_0.png" width="350" height="164"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Manage closures</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (6/8)</h1><div class="ilc_text_block_Standard">Through the "Type of machine" which can be accessed by clicking on the menu item "Type of machine" menu, you can create and manage groups of machines and assign to each family the machines in question.<br/>In particular (fig. 1)<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">Section 1 allows editing and inclusion of families </li><li class="ilc_list_item_StandardListItem">selecting a family by clicking on the magnifying lens next to the name will appear the section 2 that shows and allows you to view or delete the associated machinery</li><li class="ilc_list_item_StandardListItem">to associate machines to select families select them in section 3 (pop-up) and click "Add machines". The use is quite similar to the other switches of this type, which allow search through the box at the top and multiple selection through the use of the ctrl key associated with the click of the mouse</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_453/Immagine 11.png" width="500" height="309"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Manage family machine</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (6/8)</h1><div class="ilc_text_block_Standard">Through the "Type of machine" which can be accessed by clicking on the menu item "Type of machine" menu, you can create and manage groups of machines and assign to each family the machines in question.<br/>In particular (fig. 1)<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">Section 1 allows editing and inclusion of families </li><li class="ilc_list_item_StandardListItem">selecting a family by clicking on the magnifying lens next to the name will appear the section 2 that shows and allows you to view or delete the associated machinery</li><li class="ilc_list_item_StandardListItem">to associate machines to select families select them in section 3 (pop-up) and click "Add machines". The use is quite similar to the other switches of this type, which allow search through the box at the top and multiple selection through the use of the ctrl key associated with the click of the mouse</li></ul><!--Break--></div><div align="left" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer" style="margin-left: 0px;"><tr><td class="ilc_Mob" width="800"><img border="0" src="mobs/mm_488/ManageFamilyMachine.png" width="800" height="425"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Manage family machine</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (7/8)</h1><div class="ilc_text_block_Standard">Using the "Nature of problem" (fig. 1) you can handle family causals for machines, adding, modifying or eliminating records in a similar way to other registries.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="286"><img border="0" src="mobs/mm_454/Immagine 12.png" width="286" height="115"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage causals</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (7/8)</h1><div class="ilc_text_block_Standard">Using the "Nature of problem" (fig. 1) you can handle family causals for machines, adding, modifying or eliminating records in a similar way to other registries.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="364"><img border="0" src="mobs/mm_489/NatureProblem.png" width="364" height="354"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage nature of problems</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (8/8)</h1><div class="ilc_text_block_Standard">Using the function "Maintenance men" you can define matriculation and name of the maintenance operators, which will be available in detail intervention via a drop down menu. Compile as for other demographic fields "op. number", "Surname" and "Name".<br/> <br/>The matricule 0000 is not eraseble and rapresent the default user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="318"><img border="0" src="mobs/mm_455/operatoriMtz.png" width="318" height="116"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Operators Mtz</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">List Usage Managment (8/8)</h1><div class="ilc_text_block_Standard">Using the function "Maintenance men" you can define matriculation and name of the maintenance operators, which will be available in detail intervention via a drop down menu. Compile as for other demographic fields "op. number", "Surname" and "Name".<br/> <br/>The matricule 0000 is not eraseble and rapresent the default user.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="364"><img border="0" src="mobs/mm_490/MaintenanceMen.png" width="364" height="152"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Maintenance men </div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (1/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Entering maintenance requests</span><br/> <br/>Clicking on the menu item you can enter a maintenance request or see requests present.Choose "Add new request" to add or "Go to list requests" to see the requests already submitted.<br/> <br/> <br/>To enter a request  (fig. 1) :<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the desired department (1)</li><li class="ilc_list_item_StandardListItem">select the machine on the department to place the request (2)</li><li class="ilc_list_item_StandardListItem">fill in the details of the fault (serial number, priority, date / time, scope and type of fault and if the system is shut) (3)</li><li class="ilc_list_item_StandardListItem">indicate the reason for the request (4)</li><li class="ilc_list_item_StandardListItem">enter a description of the problem (5)</li><li class="ilc_list_item_StandardListItem">confirm the insertion of the request by clicking the "Submit request" button (6)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="550"><img border="0" src="mobs/mm_456/Immagine 13.png" width="550" height="323"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">Fig. 1 - New request insertion</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (1/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Entering maintenance requests</span><br/> <br/>Clicking on the menu item you can enter a maintenance request or see requests present.Choose "Add new request" to add or "Go to list requests" to see the requests already submitted.<br/> <br/> <br/>To enter a request  (fig. 1) :<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the desired department (1)</li><li class="ilc_list_item_StandardListItem">select the machine on the department to place the request (2)</li><li class="ilc_list_item_StandardListItem">fill in the details of the fault (serial number, priority, date / time, scope and type of fault and if the system is shut) (3)</li><li class="ilc_list_item_StandardListItem">indicate the reason for the request (4)</li><li class="ilc_list_item_StandardListItem">enter a description of the problem (5)</li><li class="ilc_list_item_StandardListItem">confirm the insertion of the request by clicking the "Submit request" button (6)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="800"><img border="0" src="mobs/mm_491/InsertionRequest.png" width="800" height="515"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">Fig. 1 - New request insertion</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (2/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">List of requests</span><br/> <br/>Clicking on the menu item "Ticket list" or by selecting "Go to ticket list" from the "Insert new maintenance ticket", you can view and manage all the requests (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="558"><img border="0" src="mobs/mm_457/elencoRichieste.png" width="558" height="140"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Request list</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">in general</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">the color of the state associated to requests quickly identify the status, red for interventions in the "requested", orange for "in progress" and green for "finished"</li><li class="ilc_list_item_StandardListItem">you can export to pdf the request by clicking the PDF symbol (fig. 2)</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">To navigate between the requests</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the reference period by the switch in the upper-right of the table</li><li class="ilc_list_item_StandardListItem">By default, the list displays the required interventions and ongoing</li><li class="ilc_list_item_StandardListItem">if you also want to see requests completed click on "Show closed tickets" on the top left above the table interventions</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">To take charge of a request</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">Click on the printer icon next to the desired request, the request is printed on the default printer</li><li class="ilc_list_item_StandardListItem">the status changes to "In Progress" in orange and you can then click on the "magnifying glass" to edit the details of the request (see section on the next page of the guide)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="315"><img border="0" src="mobs/mm_458/richiestaItervento.png" width="315" height="442"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Request intervention report</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (2/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">List of requests</span><br/> <br/>Clicking on the menu item "Ticket list" or by selecting "Go to ticket list" from the "Insert new maintenance ticket", you can view and manage all the requests (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="800"><img border="0" src="mobs/mm_492/ticketList.png" width="800" height="152"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Ticket list</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">in general</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">the color of the state associated to requests quickly identify the status, red for interventions in the "requested", orange for "in progress" and green for "finished"</li><li class="ilc_list_item_StandardListItem">you can export to pdf the request by clicking the PDF symbol (fig. 2)</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">To navigate between the requests</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select the reference period by the switch in the upper-right of the table</li><li class="ilc_list_item_StandardListItem">By default, the list displays the required interventions and ongoing</li><li class="ilc_list_item_StandardListItem">if you also want to see requests completed click on "Show closed tickets" on the top left above the table interventions</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">To take charge of a request</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">Click on the printer icon next to the desired request, the request is printed on the default printer</li><li class="ilc_list_item_StandardListItem">the status changes to "In Progress" in orange and you can then click on the "magnifying glass" to edit the details of the request (see section on the next page of the guide)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="450"><img border="0" src="mobs/mm_493/ticket.png" width="450" height="638"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Request intervention report</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (3/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Intervention detail </span><br/> <br/>Clicking on the magnifying lens on the side of each request you can view and edit the required request.<br/> <br/>Loading a detail page shows the detail request in read-only mode (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_459/Immagine 14.jpg" width="400" height="246"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Read only view</div></td></tr></table></div><div class="ilc_text_block_Standard">You can change the detail in two modes by clicking on one of the buttons at the top (Fig. 2),edit the fields you want and press the update to update the request or Cancel to cancel the changes and return automatically in read-only mode (Fig. 3).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="324"><img border="0" src="mobs/mm_460/pulsantiEditMtz.png" width="324" height="52"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Edit view selection</div></td></tr></table></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="157"><img border="0" src="mobs/mm_461/pulsantiEditMtz2.png" width="157" height="55"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Update and undo</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Maintenance intervention filling<br/></span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">fileds that can not be changed are displayed in blue</li><li class="ilc_list_item_StandardListItem">user-editable fields are displayed in green</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Manage complete editing</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">editable fields in full mode are shown in dark green</li><li class="ilc_list_item_StandardListItem">are still editable fields in basic mode</li></ul>In any case, you can give the details for each intervention (with serial operator intervention and duration) using the "Detail Interventions " at the bottom right of the detail form (Fig. 4).<br/>The change takes place as lists: the yellow pencil icon allows you to edit the record, the green check mark to confirm, the red x the cancellation of the modifications.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="396"><img border="0" src="mobs/mm_462/dettOp.png" width="396" height="133"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 4 - intervention details</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (3/4)</h1><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Intervention detail </span><br/> <br/>Clicking on the magnifying lens on the side of each request you can view and edit the required request.<br/> <br/>Loading a detail page shows the detail request in read-only mode (Fig. 1).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_494/InterventionDetail_500_0.png" width="500" height="363"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Read only view</div></td></tr></table></div><div class="ilc_text_block_Standard">You can change the detail in two modes by clicking on one of the buttons at the top (Fig. 2),edit the fields you want and press the update to update the request or Cancel to cancel the changes and return automatically in read-only mode (Fig. 3).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="332"><img border="0" src="mobs/mm_495/EditView.png" width="332" height="42"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Edit view selection</div></td></tr></table></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="162"><img border="0" src="mobs/mm_496/UpdateUndo.png" width="162" height="60"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Update and undo</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Maintenance intervention filling<br/></span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">fileds that can not be changed are displayed in blue</li><li class="ilc_list_item_StandardListItem">user-editable fields are displayed in green</li></ul><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Manage complete editing</span><ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">editable fields in full mode are shown in dark green</li><li class="ilc_list_item_StandardListItem">are still editable fields in basic mode</li></ul>In any case, you can give the details for each intervention (with serial operator intervention and duration) using the "Detail Interventions " at the bottom right of the detail form (Fig. 4).<br/>The change takes place as lists: the yellow pencil icon allows you to edit the record, the green check mark to confirm, the red x the cancellation of the modifications.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="440"><img border="0" src="mobs/mm_497/InterventionDetail2.png" width="440" height="177"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 4 - intervention details</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (4/4)</h1><div class="ilc_text_block_Standard">Clicking on the menu item "Scheduled Maintenance" (fig. 1) you can enter and / or display scheduled maintenance. This section allows you to enter planned maintenance with agreed deadline and set them to the reference periods so that they are automatically recorded and presented in the list requests.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="823"><img border="0" src="mobs/mm_463/ProgrammazioneInterventi.png" width="823" height="257"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Programmed maintenance</div></td></tr></table></div><div class="ilc_text_block_Standard">Using the first tab "Interventions scheduling" and clicking on "Show create new" you can enter a programmed intervention: Define the details of the intervention in a manner similar to the inclusion of intervention required and click the button "Create schedule intervention " when finished.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="838"><img border="0" src="mobs/mm_464/inserimentoINterventiProg.png" width="838" height="501"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Programmed intervention insertion</div></td></tr></table></div><div class="ilc_text_block_Standard">Clicking on the second tab "List due interventions " are displayed the due interventions, which in any case will automatically be included in the maintenance interventions to date.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="822"><img border="0" src="mobs/mm_465/interventiScadenza.png" width="822" height="284"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Interventions to expire</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Maintenance interventions (4/4)</h1><div class="ilc_text_block_Standard">Clicking on the menu item "Scheduled Maintenance" (fig. 1) you can enter and / or display scheduled maintenance. This section allows you to enter planned maintenance with agreed deadline and set them to the reference periods so that they are automatically recorded and presented in the list requests.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_498/ProgrammedMaintenance_900_0.png" width="850" height="178"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Programmed maintenance</div></td></tr></table></div><div class="ilc_text_block_Standard">Using the first tab "Interventions scheduling" and clicking on "Show create new" you can enter a programmed intervention: Define the details of the intervention in a manner similar to the inclusion of intervention required and click the button "Create schedule intervention " when finished.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="800"><img border="0" src="mobs/mm_499/ProgrammedInterveInsert_850_0.png" width="800" height="499"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Programmed intervention insertion</div></td></tr></table></div><div class="ilc_text_block_Standard">Clicking on the second tab "List due interventions " are displayed the due interventions, which in any case will automatically be included in the maintenance interventions to date.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_500/InterventionsToExpire_850_0.png" width="850" height="176"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Interventions to expire</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Reports</h1><a name="ilPageTocA31"><!--ilPageTocH31--></a><h3 class="ilc_heading3_Headline3"><!--PageTocPH-->Report departments and maintenance interventions<!--Break--></h3><div class="ilc_text_block_Standard">Plant report<br/> <br/>Clicking on the menu item and then on the pdf icon to see a summary report of the machines present and relevant departments in printable pdf format (Fig. 1)<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="439"><img border="0" src="mobs/mm_466/elencoMacchine.png" width="439" height="316"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Example of machine report</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Interventions report</span><br/> <br/>This reports section  allows you to view and print a summary report of operations in any state (required, pending or completed) and a MTBF MTTR report (an example in Fig. 2).<br/>The report shows a summary of the work hours divided by stopa<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">WORKSHOP: from the moment of failure at the end of intervention</li><li class="ilc_list_item_StandardListItem">INTERVENTION: from maintenance beginning to the end</li><li class="ilc_list_item_StandardListItem">OPERATOR: total time provided by all operators</li></ul> <br/>The MTBF MTTR report calculates the reliability of machines and departments (MTBF, mean time between failure), or divide the total hours of opening (excluding holidays, celebrations, scheduled downtime) for the number of operations carried out; also calculates the mean time to repair (MTTR, mean time to repair), seen from the workshop (from fault at the end of intervention) and maintenance (from the beginning to the end of maintenance).<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="315"><img border="0" src="mobs/mm_467/mtbfmttr.png" width="315" height="442"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Example of MTBF - MTTR report</div></td></tr></table></div><div class="ilc_text_block_Standard">In both cases the selection of the machines and of the reference period occurs in the following way:<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select departments and machines for which you want the report to be generated<ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">the selection of departments and machines is multiple, you can select multiple departments and multiple machines, and the report will generate a report of all selected items. To search from the machines or departments enter the name or partial name in the search box above this  two lists and press enter, cancel the search and press enter to search through all the items and select multiple items by clicking and holding down the ctrl key on the keyboard.</li></ul></li><li class="ilc_list_item_StandardListItem">select the status of the machines for which generate the report (in this case, you can select multiple using ctrl key)</li><li class="ilc_list_item_StandardListItem">select the reference period using pop-up calendar selector or use a default selection period</li><li class="ilc_list_item_StandardListItem">click on the pdf of the report you want</li></ul> <br/>The report is in printable pdf format.<!--Break--></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Reports</h1><a name="ilPageTocA31"><!--ilPageTocH31--></a><h3 class="ilc_heading3_Headline3"><!--PageTocPH-->Report departments and maintenance interventions<!--Break--></h3><div class="ilc_text_block_Standard">Plant report<br/> <br/>Clicking on the menu item and then on the pdf icon to see a summary report of the machines present and relevant departments in printable pdf format (Fig. 1)<!--Break--></div><div align="left" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer" style="margin-left: 0px;"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_501/PlantMachineList.png" width="850" height="408"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Example of machine report</div></td></tr></table></div><div class="ilc_text_block_Standard"><span xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_text_inline_Strong">Interventions report</span><br/> <br/>This reports section  allows you to view and print a summary report of operations in any state (required, pending or completed) and a MTBF MTTR report (an example in Fig. 2).<br/>The report shows a summary of the work hours divided by stopa<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">WORKSHOP: from the moment of failure at the end of intervention</li><li class="ilc_list_item_StandardListItem">INTERVENTION: from maintenance beginning to the end</li><li class="ilc_list_item_StandardListItem">OPERATOR: total time provided by all operators</li></ul> <br/>The MTBF MTTR report calculates the reliability of machines and departments (MTBF, mean time between failure), or divide the total hours of opening (excluding holidays, celebrations, scheduled downtime) for the number of operations carried out; also calculates the mean time to repair (MTTR, mean time to repair), seen from the workshop (from fault at the end of intervention) and maintenance (from the beginning to the end of maintenance).<!--Break--></div><div align="left" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer" style="margin-left: 0px;"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_502/MtbfMttr_850_0.png" width="850" height="442"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Example of MTBF - MTTR report</div></td></tr></table></div><div class="ilc_text_block_Standard">In both cases the selection of the machines and of the reference period occurs in the following way:<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">select departments and machines for which you want the report to be generated<ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">the selection of departments and machines is multiple, you can select multiple departments and multiple machines, and the report will generate a report of all selected items. To search from the machines or departments enter the name or partial name in the search box above this  two lists and press enter, cancel the search and press enter to search through all the items and select multiple items by clicking and holding down the ctrl key on the keyboard.</li></ul></li><li class="ilc_list_item_StandardListItem">select the status of the machines for which generate the report (in this case, you can select multiple using ctrl key)</li><li class="ilc_list_item_StandardListItem">select the reference period using pop-up calendar selector or use a default selection period</li><li class="ilc_list_item_StandardListItem">click on the pdf of the report you want</li></ul> <br/>The report is in printable pdf format.<!--Break--></div>
</div>
@@ -496,7 +496,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Scheduled maintenance</h1><a name="ilPageTocA31"><!--ilPageTocH31--></a><h3 class="ilc_heading3_Headline3"><!--PageTocPH-->Additional module - Scheduled Maintenance<!--Break--></h3><div class="ilc_text_block_Standard"> <br/>The plug-in for scheduled maintenance allows you to view and enter scheduled maintenance for individual machines, with the start date of operation, the frequency and details.<br/> <br/>To view the planned interventions (Fig. 1) :<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">simply click on the menu item "Scheduled Maintenance" and see the list shown</li><li class="ilc_list_item_StandardListItem">You can also filter by Type and/or Machine by clicking the Filter by Type and Filter by Machine button and then setting up filters for each department and machine.</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="568"><img border="0" src="mobs/mm_468/mtzGenerale.png" width="568" height="127"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Search programmed maintenanche</div></td></tr></table></div><div class="ilc_text_block_Standard">It 's always possible to cancel a request using the "trash" icon next to each record.<br/> <br/>To enter the planned maintenance (fig. 3)<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on "Show create new" link on the top menu - you will see the entry form (Fig. 1)</li><li class="ilc_list_item_StandardListItem">indicate the description of the planned maintenance (1)</li><li class="ilc_list_item_StandardListItem">select the machines affected by the problem:<ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">you can search for machines by entering the name or partial name in the search box above the panel and pressing enter - leave empty and press enter to return to the display of all machines (2)</li><li class="ilc_list_item_StandardListItem">select the machines in the selector (to select more than one machine at the same time click on the name while holding down the ctrl key on the keyboard) (3)</li></ul></li><li class="ilc_list_item_StandardListItem">select the details of the intervention (4)</li><li class="ilc_list_item_StandardListItem">confirm the entry by clicking "Create scheduled maintenance task" (5)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="550"><img border="0" src="mobs/mm_469/mtzProgrammata.png" width="550" height="328"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Inserting scheduled maintenance</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Scheduled maintenance</h1><a name="ilPageTocA31"><!--ilPageTocH31--></a><h3 class="ilc_heading3_Headline3"><!--PageTocPH-->Additional module - Scheduled Maintenance<!--Break--></h3><div class="ilc_text_block_Standard"> <br/>The plug-in for scheduled maintenance allows you to view and enter scheduled maintenance for individual machines, with the start date of operation, the frequency and details.<br/> <br/>To view the planned interventions (Fig. 1) :<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">simply click on the menu item "Scheduled Maintenance" and see the list shown</li><li class="ilc_list_item_StandardListItem">You can also filter by Type and/or Machine by clicking the Filter by Type and Filter by Machine button and then setting up filters for each department and machine.</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_503/ProgrammedMaintenance_850_0.png" width="850" height="178"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Search programmed maintenanche</div></td></tr></table></div><div class="ilc_text_block_Standard">It 's always possible to cancel a request using the "trash" icon next to each record.<br/> <br/>To enter the planned maintenance (fig. 3)<br/> <ul xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">click on "Show create new" link on the top menu - you will see the entry form (Fig. 1)</li><li class="ilc_list_item_StandardListItem">indicate the description of the planned maintenance (1)</li><li class="ilc_list_item_StandardListItem">select the machines affected by the problem:<ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem">you can search for machines by entering the name or partial name in the search box above the panel and pressing enter - leave empty and press enter to return to the display of all machines (2)</li><li class="ilc_list_item_StandardListItem">select the machines in the selector (to select more than one machine at the same time click on the name while holding down the ctrl key on the keyboard) (3)</li></ul></li><li class="ilc_list_item_StandardListItem">select the details of the intervention (4)</li><li class="ilc_list_item_StandardListItem">confirm the entry by clicking "Create scheduled maintenance task" (5)</li></ul><!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="700"><img border="0" src="mobs/mm_504/ProgrammedInterveInsert_850_0.png" width="700" height="437"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Inserting scheduled maintenance</div></td></tr></table></div>
</div>
@@ -490,7 +490,7 @@ focus();
//-->
</script>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Users registration</h1><div class="ilc_text_block_Standard">You can access the application through user authentication.<br/><br/>If the user has not yet been approved the application will display on first access the screen "New User Registration" (Fig. 1). Enter your details and click the "Save" button to complete registration.<br/>You need to do this only for the first time, then you will be recognized automatically by the application.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="403"><img border="0" src="mobs/mm_470/Immagine 1.png" width="403" height="213"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - New user registration</div></td></tr></table></div><div class="ilc_text_block_Standard">Authorized users can also manage permission levels of users (basic or advanced) accessible through the control panel by clicking on "User Administration" menu.<br/>Through this panel (Fig. 2) you can promote basic users (new users registered via "New User Registration" are assigned basic permissions) or demote advanced users by assigning basic permissions.<br/>To do this click on the magnifying lens next to the user name and click "Add" to move the user from the blue table to the red table of advanced users or "Remove" button to move the user from the table of advanced users to the base users table.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="450"><img border="0" src="mobs/mm_471/Immagine 2.png" width="450" height="74"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Users manage</div></td></tr></table></div>
<script>var ScormApi=null;var questions = new Array();</script><a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Users registration</h1><div class="ilc_text_block_Standard">You can access the application through user authentication.<br/><br/>If the user has not yet been approved the application will display on first access the screen "New User Registration" (Fig. 1). Enter your details and click the "Save" button to complete registration.<br/>You need to do this only for the first time, then you will be recognized automatically by the application.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_474/NewUserEnroll_400_0.png" width="400" height="254"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - New user registration</div></td></tr></table></div><div class="ilc_text_block_Standard">Authorized users can also manage permission levels of users (basic or advanced) accessible through the control panel by clicking on "User Administration" menu.<br/>Through this panel (Fig. 2) you can promote basic users (new users registered via "New User Registration" are assigned basic permissions) or demote advanced users by assigning basic permissions.<br/>To do this click on the magnifying lens next to the user name and click "Add" to move the user from the blue table to the red table of advanced users or "Remove" button to move the user from the table of advanced users to the base users table.<!--Break--></div><div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="700"><img border="0" src="mobs/mm_475/UserAdministration.png" width="700" height="174"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Users administration</div></td></tr></table></div>
</div>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="149"><img border="0" src="mobs/mm_446/selettore.png" width="149" height="147"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 5 - Calendar switch</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="468"><img border="0" src="mobs/mm_448/reparti.png" width="468" height="171"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage departments</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="566"><img border="0" src="mobs/mm_449/macchine.png" width="566" height="239"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Machine management</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="565"><img border="0" src="mobs/mm_450/macchine_reparti.png" width="565" height="189"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage machine-departments</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="294"><img border="0" src="mobs/mm_452/festivita.png" width="294" height="293"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Manage closures</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="286"><img border="0" src="mobs/mm_454/Immagine 12.png" width="286" height="115"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage causals</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="318"><img border="0" src="mobs/mm_455/operatoriMtz.png" width="318" height="116"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Operators Mtz</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="558"><img border="0" src="mobs/mm_457/elencoRichieste.png" width="558" height="140"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Request list</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="315"><img border="0" src="mobs/mm_458/richiestaItervento.png" width="315" height="442"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Request intervention report</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="324"><img border="0" src="mobs/mm_460/pulsantiEditMtz.png" width="324" height="52"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Edit view selection</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="157"><img border="0" src="mobs/mm_461/pulsantiEditMtz2.png" width="157" height="55"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Update and undo</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="396"><img border="0" src="mobs/mm_462/dettOp.png" width="396" height="133"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 4 - intervention details</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="823"><img border="0" src="mobs/mm_463/ProgrammazioneInterventi.png" width="823" height="257"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Programmed maintenance</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="838"><img border="0" src="mobs/mm_464/inserimentoINterventiProg.png" width="838" height="501"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Programmed intervention insertion</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="822"><img border="0" src="mobs/mm_465/interventiScadenza.png" width="822" height="284"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Interventions to expire</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="439"><img border="0" src="mobs/mm_466/elencoMacchine.png" width="439" height="316"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Example of machine report</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="315"><img border="0" src="mobs/mm_467/mtbfmttr.png" width="315" height="442"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Example of MTBF - MTTR report</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="568"><img border="0" src="mobs/mm_468/mtzGenerale.png" width="568" height="127"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Search programmed maintenanche</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="550"><img border="0" src="mobs/mm_469/mtzProgrammata.png" width="550" height="328"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Inserting scheduled maintenance</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="403"><img border="0" src="mobs/mm_470/Immagine 1.png" width="403" height="213"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - New user registration</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -1,56 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="450"><img border="0" src="mobs/mm_471/Immagine 2.png" width="450" height="74"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Users manage</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="411"><img border="0" src="mobs/mm_442/ambiti3.png" width="411" height="258"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig-1 - Modify fileds</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="1319"><img border="0" src="mobs/mm_472/homePage.png" width="1319" height="655"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div>
</td></tr></table>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="460"><img border="0" src="mobs/mm_440/logoIliasSW.png" width="460" height="256"/></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_474/NewUserEnroll_400_0.png" width="400" height="254"/></td></tr></table></div>
</td></tr></table>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="1143"><img border="0" src="mobs/mm_475/UserAdministration.png" width="1143" height="283"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Users administration</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="412"><img border="0" src="mobs/mm_476/ModifyFields_412_0.png" width="412" height="117"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig-1 - Modify fileds</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="412"><img border="0" src="mobs/mm_477/newFields_412_0.png" width="412" height="128"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - New fields creation</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="217"><img border="0" src="mobs/mm_444/cancellazione.png" width="217" height="89"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Cancel fields</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="412"><img border="0" src="mobs/mm_478/Delete_412_0.png" width="412" height="218"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Cancel fields</div></td></tr></table></div>
</td></tr></table>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_441/home.png" width="500" height="273"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Home page</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_479/Search_500_0.png" width="500" height="44"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 4 - Search</div></td></tr></table></div>
</td></tr></table>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="300"><img border="0" src="mobs/mm_480/Calendar_300_0.png" width="300" height="323"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 5 - Calendar switch</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_459/Immagine 14.jpg" width="400" height="246"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Read only view</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="400"><img border="0" src="mobs/mm_481/ManagePriority_400_0.png" width="400" height="82"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage priority</div></td></tr></table></div>
</td></tr></table>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="550"><img border="0" src="mobs/mm_456/Immagine 13.png" width="550" height="323"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">Fig. 1 - New request insertion</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="550"><img border="0" src="mobs/mm_482/machineManagment_550_0.png" width="550" height="159"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Machine management</div></td></tr></table></div>
</td></tr></table>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="750"><img border="0" src="mobs/mm_483/plantManagment_750_0.png" width="750" height="216"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Plant managment</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="600"><img border="0" src="mobs/mm_484/MachinePlant_600_0.png" width="600" height="208"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage machine-departments</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="300"><img border="0" src="mobs/mm_485/PlantOpening_300_0.png" width="300" height="175"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Managing openings</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="410"><img border="0" src="mobs/mm_443/ambiti2.png" width="410" height="271"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - New fields creation</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="300"><img border="0" src="mobs/mm_486/DaysOff_300_0.png" width="300" height="140"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Manage closures</div></td></tr></table></div>
</td></tr></table>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="949"><img border="0" src="mobs/mm_488/ManageFamilyMachine.png" width="949" height="504"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Manage family machine</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="364"><img border="0" src="mobs/mm_489/NatureProblem.png" width="364" height="354"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Manage nature of problems</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="364"><img border="0" src="mobs/mm_490/MaintenanceMen.png" width="364" height="152"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Maintenance men </div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="1139"><img border="0" src="mobs/mm_491/InsertionRequest.png" width="1139" height="733"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">Fig. 1 - New request insertion</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="1132"><img border="0" src="mobs/mm_492/ticketList.png" width="1132" height="215"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Ticket list</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="540"><img border="0" src="mobs/mm_493/ticket.png" width="540" height="766"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Request intervention report</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_453/Immagine 11.png" width="500" height="309"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig.1 - Manage family machine</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="500"><img border="0" src="mobs/mm_494/InterventionDetail_500_0.png" width="500" height="363"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Read only view</div></td></tr></table></div>
</td></tr></table>
@@ -48,7 +48,7 @@
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="257"><img border="0" src="mobs/mm_451/aperturaImpianti.png" width="257" height="231"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Managing openings</div></td></tr></table></div>
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="332"><img border="0" src="mobs/mm_495/EditView.png" width="332" height="42"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Edit view selection</div></td></tr></table></div>
</td></tr></table>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="162"><img border="0" src="mobs/mm_496/UpdateUndo.png" width="162" height="60"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Update and undo</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="440"><img border="0" src="mobs/mm_497/InterventionDetail2.png" width="440" height="177"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 4 - intervention details</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="900"><img border="0" src="mobs/mm_498/ProgrammedMaintenance_900_0.png" width="900" height="188"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 1 - Programmed maintenance</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_499/ProgrammedInterveInsert_850_0.png" width="850" height="531"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 2 - Programmed intervention insertion</div></td></tr></table></div>
</td></tr></table>
</body>
</html>
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" class="ilc_Fullscreen">
<head>
<title>ILIAS - WebGIM manual</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="./style/delos.css" />
<link rel="stylesheet" type="text/css" href="content_style/content.css" />
<script type="text/javascript" src="./js/yahoo/yahoo-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/yahoo-dom-event.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/yahoo/animation-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/Basic.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/accordion.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/maphilight.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/jquery-ui-min.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/ilCOPagePres.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/pure.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="./js/question_handling.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="././Services/MediaObjects/media_element_2_11_3/mediaelement-and-player.js?vers=4-3-5-2013-10-08"></script>
<script type="text/javascript" src="http://ilias.steamware.net/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js&vers=4-3-5-2013-10-08"></script>
<link rel="stylesheet" type="text/css" href="./css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./css/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="././Services/MediaObjects/media_element_2_11_3/mediaelementplayer.min.css" media="screen" />
</head>
<body class="ilc_Fullscreen">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><table xmlns:xhtml="http://www.w3.org/1999/xhtml" class="ilc_media_cont_MediaContainer"><tr><td class="ilc_Mob" width="850"><img border="0" src="mobs/mm_500/InterventionsToExpire_850_0.png" width="850" height="176"/></td></tr><tr><td><div class="ilc_media_caption_MediaCaption">fig. 3 - Interventions to expire</div></td></tr></table></div>
</td></tr></table>
</body>
</html>

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