Rename miscellaneous places.

This commit is contained in:
2020-02-29 21:08:43 +00:00
parent 3d8613728c
commit 1c24e4a1fb
18 changed files with 31 additions and 31 deletions

View File

@@ -93,5 +93,5 @@
<br />
<a asp-action="Index" asp-controller="UsbVendors">USB vendors</a>
<br />
<a asp-action="Index" asp-controller="Versions">DiscImageChef versions used</a>
<a asp-action="Index" asp-controller="Versions">Aaru versions used</a>
<br/>

View File

@@ -73,7 +73,7 @@
<header>
Welcome to
<i>
<a href="http://github.com/claunia/discimagechef" target="_blank">
<a href="http://github.com/aaru-dps/aaru" target="_blank">
DiscImageChef
</a>
</i> Server Administrative Area

View File

@@ -33,7 +33,7 @@
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
}
<h4>DiscImageChef versions</h4>
<h4>Aaru versions</h4>
<table class="table">
<thead>
<tr>

View File

@@ -50,7 +50,7 @@ namespace Aaru.Server.Controllers
public UpdateController(DicServerContext ctx) => _ctx = ctx;
/// <summary>Receives a report from DiscImageChef.Core, verifies it's in the correct format and stores it on the server</summary>
/// <summary>Receives a report from Aaru.Core, verifies it's in the correct format and stores it on the server</summary>
/// <returns>HTTP response</returns>
[Route("api/update"), HttpGet]
public ActionResult Update(long timestamp)

View File

@@ -61,7 +61,7 @@ namespace Aaru.Server.Controllers
_ctx = ctx;
}
/// <summary>Receives a report from DiscImageChef.Core, verifies it's in the correct format and stores it on the server</summary>
/// <summary>Receives a report from Aaru.Core, verifies it's in the correct format and stores it on the server</summary>
/// <returns>HTTP response</returns>
[Route("api/uploadreport"), HttpPost]
public async Task<IActionResult> UploadReport()
@@ -235,7 +235,7 @@ namespace Aaru.Server.Controllers
}
}
/// <summary>Receives a report from DiscImageChef.Core, verifies it's in the correct format and stores it on the server</summary>
/// <summary>Receives a report from Aaru.Core, verifies it's in the correct format and stores it on the server</summary>
/// <returns>HTTP response</returns>
[Route("api/uploadreportv2"), HttpPost]
public async Task<IActionResult> UploadReportV2()

View File

@@ -61,7 +61,7 @@ namespace Aaru.Server.Controllers
}
/// <summary>
/// Receives statistics from DiscImageChef.Core, processes them and adds them to a server-side global statistics
/// Receives statistics from Aaru.Core, processes them and adds them to a server-side global statistics
/// XML
/// </summary>
/// <returns>HTTP response</returns>
@@ -108,7 +108,7 @@ namespace Aaru.Server.Controllers
}
}
/// <summary>Receives a report from DiscImageChef.Core, verifies it's in the correct format and stores it on the server</summary>
/// <summary>Receives a report from Aaru.Core, verifies it's in the correct format and stores it on the server</summary>
/// <returns>HTTP response</returns>
[Route("api/uploadstatsv2"), HttpPost]
public async Task<IActionResult> UploadStatsV2()

View File

@@ -15,7 +15,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"DiscImageChef.Server": {
"Aaru.Server": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:5000",

View File

@@ -73,7 +73,7 @@ namespace Aaru.Server
app.Map("/metrics", metricsApp =>
{
metricsApp.UseMiddleware<BasicAuthMiddleware>("DiscImageChef");
metricsApp.UseMiddleware<BasicAuthMiddleware>("Aaru");
// We already specified URL prefix in .Map() above, no need to specify it again here.
metricsApp.UseMetricServer("");

View File

@@ -37,6 +37,6 @@
}
<p>
@Html.ActionLink("Return to main page.", "Index")<br />
DiscImageChef's code of conduct:
Aaru's code of conduct:
</p>
<div class="container">@Html.Raw(ViewBag.Markdown)</div>

View File

@@ -37,6 +37,6 @@
}
<p>
@Html.ActionLink("Return to main page.", "Index")<br />
DiscImageChef list of changes:
Aaru list of changes:
</p>
<div class="container">@Html.Raw(ViewBag.Markdown)</div>

View File

@@ -38,8 +38,8 @@
<header>
Welcome to
<i>
<a href="http://github.com/claunia/discimagechef" target="_blank">
DiscImageChef
<a href="http://github.com/aaru-dps/aaru" target="_blank">
Aaru
</a>
</i> Server version @ViewBag.lblVersion
</header>

View File

@@ -37,6 +37,6 @@
}
<p>
@Html.ActionLink("Return to main page.", "Index")<br />
DiscImageChef list of hardware and software needed:
Aaru list of hardware and software needed:
</p>
<div class="container">@Html.Raw(ViewBag.Markdown)</div>

View File

@@ -37,6 +37,6 @@
}
<p>
@Html.ActionLink("Return to main page.", "Index")<br />
DiscImageChef's template for pull requests:
Aaru's template for pull requests:
</p>
<div class="container">@Html.Raw(ViewBag.Markdown)</div>

View File

@@ -37,6 +37,6 @@
}
<p>
@Html.ActionLink("Return to main page.", "Index")<br />
DiscImageChef list of things to do:
Aaru list of things to do:
</p>
<div class="container">@Html.Raw(ViewBag.Markdown)</div>

View File

@@ -1,7 +1,7 @@
@using Aaru.CommonTypes.Metadata
@{
Layout = "~/Views/Shared/_Layout.cshtml";
ViewBag.Title = "DiscImageChef Device Report";
ViewBag.Title = "Aaru Device Report";
}
@{
// /***************************************************************************
@@ -37,7 +37,7 @@
// ****************************************************************************/
}
<div class="container-fluid">
DiscImageChef Report for
Aaru Report for
@ViewBag.lblManufacturer
@ViewBag.lblModel
@ViewBag.lblRevision

View File

@@ -33,14 +33,14 @@
// ****************************************************************************/
}
@{
ViewBag.Title = "DiscImageChef Statistics";
ViewBag.Title = "Aaru Statistics";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<header>
Welcome to
<i>
<a href="http://github.com/claunia/discimagechef" target="_blank">
DiscImageChef
<a href="http://github.com/aaru-dps/aaru" target="_blank">
Aaru
</a>
</i> Server version @ViewBag.Version
</header>
@@ -89,7 +89,7 @@
<div class="card-header" id="osHeading">
<h2 class="mb-0">
<button aria-controls="osCollapse" aria-expanded="true" class="btn btn-link card-button collapsed" data-target="#osCollapse" data-toggle="collapse" type="button">
All operating systems DiscImageChef has run on...
All operating systems Aaru has run on...
</button>
</h2>
</div>
@@ -100,7 +100,7 @@
{
<tr>
<td class="text-left">
DiscImageChef has run on
Aaru has run on
<i class="table-dark-em">@os.name</i> @os.Value times.
</td>
</tr>
@@ -124,7 +124,7 @@
<div class="card-header" id="versionsHeading">
<h2 class="mb-0">
<button aria-controls="versionsCollapse" aria-expanded="true" class="btn btn-link card-button collapsed" data-target="#versionsCollapse" data-toggle="collapse" type="button">
All DiscImageChef versions...
All Aaru versions...
</button>
</h2>
</div>
@@ -135,7 +135,7 @@
{
<tr>
<td class="text-left">
DiscImageChef version
Aaru version
<i class="table-dark-em">@version.name</i> has been used @version.Value times.
</td>
</tr>
@@ -159,7 +159,7 @@
<div class="card-header" id="commandsHeading">
<h2 class="mb-0">
<button aria-controls="commandsCollapse" aria-expanded="true" class="btn btn-link card-button collapsed" data-target="#commandsCollapse" data-toggle="collapse" type="button">
All DiscImageChef commands...
All Aaru commands...
</button>
</h2>
</div>

View File

@@ -1,5 +1,5 @@
{
"name": "DiscImageChef.Server",
"name": "Aaru.Server",
"version": "4.5.99.1663",
"lockfileVersion": 1,
"requires": true,

View File

@@ -1,12 +1,12 @@
{
"name": "DiscImageChef.Server",
"name": "Aaru.Server",
"version": "4.5.99.1663",
"description": "Server component for Aaru Data Preservation Suite",
"private": true,
"author": "Natalia Portillo <claunia@claunia.com>",
"homepage": "https://discimagechef.app",
"homepage": "https://www.aaru.app",
"license": "LGPL",
"repository": "github:discimagechef/DiscImageChef.Server",
"repository": "github:aaru-dps/Aaru.Server",
"dependencies": {
"bootstrap": "^4.3.1"
}