inizio modifica MP LAND x download tutti update...

This commit is contained in:
Samuele E. Locatelli
2017-11-08 11:56:03 +01:00
parent 0da91fcffe
commit dafa6f0de3
8 changed files with 2436 additions and 53 deletions
+9
View File
@@ -367,6 +367,9 @@
<None Include="Properties\PublishProfiles\IIS02.pubxml" />
<None Include="Properties\PublishProfiles\OVH-Demo.pubxml" />
<None Include="Properties\PublishProfiles\OVH-Demo-old.pubxml" />
<Content Include="Resources\ChangeLog.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\Donati\macchine\Thumbs.db" />
<None Include="Resources\Donati\BASI\Web.config.ref">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
@@ -407,6 +410,12 @@
<Content Include="Resources\Donati\macchine\tav002.jpg" />
<Content Include="Resources\Donati\macchine\Transfer_BTB.jpg" />
<Content Include="Resources\Donati\macchine\Transfer_Tecnotransfer.jpg" />
<Content Include="Resources\logoSteamware.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\manifest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Scripts\jquery-2.0.3.js" />
<Content Include="Scripts\jquery-2.0.3.min.js" />
<Content Include="Scripts\jquery-ui-1.10.3.js" />
+1 -1
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.0.0.0</version>
<url>http://seriate.steamware.net:8083/SWS/MAPO/TAB/{{BRANCHNAME}}/MAPO-TAB.zip</url>
<url>http://seriate.steamware.net:8083/SWS/MAPO/TAB/{{BRANCHNAME}}/MP-TAB.zip</url>
<changelog>http://seriate.steamware.net:8083/SWS/MAPO/TAB/{{BRANCHNAME}}/ChangeLog.html</changelog>
<mandatory>false</mandatory>
</item>
+2337
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+15
View File
@@ -56,6 +56,21 @@ namespace MP.Controllers
ViewBag.Title = "MoonPro";
ViewBag.Message = "Per contattarci";
return View();
}
public ActionResult Packages()
{
ViewBag.Title = "MoonPro";
ViewBag.Message = "Ultime release applicazioni";
// recupero ultime versioni applicazioni...
ViewBag.MP_ADM_vers = "x.x.x.x";
ViewBag.MP_IO_vers = "x.x.x.x";
ViewBag.MP_LAND_vers = "x.x.x.x";
ViewBag.MP_MON_vers = "x.x.x.x";
ViewBag.MP_SITE_vers = "x.x.x.x";
ViewBag.MP_TAB_vers = "x.x.x.x";
return View();
}
}
+2 -2
View File
@@ -1,7 +1,7 @@
@{
ViewBag.Title = "Contact";
ViewBag.Title = "SteamWare's Contacts";
}
<h2>@ViewBag.Title.</h2>
<h2>@ViewBag.Title</h2>
<h3>@ViewBag.Message</h3>
<div class="row">
+17
View File
@@ -0,0 +1,17 @@
@{
ViewBag.Title = "SteamWare's MoonPro Suite";
}
<h2>@ViewBag.Title</h2>
<h3>@ViewBag.Message</h3>
<div class="row">
<div class="col-sm-4 col-md-3">
<h2>MP-SITE &raquo;</h2>
<strong>V. y.y.y.y</strong><br />
<a href="@ViewBag.UrlMpSite" class="btn btn-primary btn-lg fullWidth" target="_blank">
<i class="fa fa-download"></i>
<h2>DOWNLOAD &raquo;</h2>
</a>
</div>
</div>
+51 -50
View File
@@ -1,59 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("MoonPro suite", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
@*<li>@Html.ActionLink("Home", "Index", "Home")</li>*@
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("MoonPro suite", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
@*<li>@Html.ActionLink("Home", "Index", "Home")</li>*@
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
<li>@Html.ActionLink("Package Versions", "Packages", "Home")</li>
</ul>
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
@{
// recupero variabile ambiente...
ViewBag.envir = System.Web.Configuration.WebConfigurationManager.AppSettings["Environment"];
string cssFixFooter = "";
}
@if (ViewBag.envir != "Dev")
{
cssFixFooter = "navbar-fixed-bottom";
}
<footer class="navbar navbar-inverse @cssFixFooter text-gray">
<div class="row">
<div class="col-xs-6 fontSmall text-left">
<span class="text-white">MoonPro</span> | IP: @Request.UserHostAddress
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
@{
// recupero variabile ambiente...
ViewBag.envir = System.Web.Configuration.WebConfigurationManager.AppSettings["Environment"];
string cssFixFooter = "";
}
@if (ViewBag.envir != "Dev")
{
cssFixFooter = "navbar-fixed-bottom";
}
<div class="col-xs-6 fontSmall text-right">
<p>v: @typeof(MP.MvcApplication).Assembly.GetName().Version | 2007 - @DateTime.Now.Year <span class="text-white">&copy; Steamware s.r.l.</span></p>
</div>
</div>
</footer>
</div>
<footer class="navbar navbar-inverse @cssFixFooter text-gray">
<div class="row">
<div class="col-xs-6 fontSmall text-left">
<span class="text-white">MoonPro</span> | IP: @Request.UserHostAddress
</div>
<div class="col-xs-6 fontSmall text-right">
<p>v: @typeof(MP.MvcApplication).Assembly.GetName().Version | 2007 - @DateTime.Now.Year <span class="text-white">&copy; Steamware s.r.l.</span></p>
</div>
</div>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>