Sweep all .cshtml files for encoding corruption; add pre-commit guard
Replace all corruption variants with HTML entities across 226 view files: - 3-char UTF-8-as-Win1252 sequences (ae-corruption) - Standalone smart/curly quotes that break C# Razor expressions - Partially re-corrupted variants where the 3rd byte was normalised to ASCII tools/Fix-Encoding.ps1: re-runnable sweep; uses [char] code points so the script itself never contains a literal non-ASCII character; supports -DryRun .githooks/pre-commit: blocks commits containing the ae-corruption byte signature (xc3xa2xe2x82xac); git core.hooksPath = .githooks so the hook is repo-committed and active for all future work on this machine. Build clean; 225 unit tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -71,7 +71,7 @@
|
||||
<div class="col-md-4">
|
||||
<label class="form-label">Asset Account</label>
|
||||
<select name="AssetAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.AssetAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.AssetAccounts)
|
||||
@@ -85,7 +85,7 @@
|
||||
<div class="col-md-4">
|
||||
<label class="form-label">Depreciation Expense Account</label>
|
||||
<select name="DepreciationExpenseAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.ExpenseAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.ExpenseAccounts)
|
||||
@@ -99,7 +99,7 @@
|
||||
<div class="col-md-4">
|
||||
<label class="form-label">Accumulated Depreciation Account</label>
|
||||
<select name="AccumDepreciationAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.AccumDeprecAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.AccumDeprecAccounts)
|
||||
@@ -108,7 +108,7 @@
|
||||
}
|
||||
}
|
||||
</select>
|
||||
<div class="form-text">Contra-asset account (e.g., 1510 Accum. Depreciation — Equipment).</div>
|
||||
<div class="form-text">Contra-asset account (e.g., 1510 Accum. Depreciation — Equipment).</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -142,21 +142,21 @@
|
||||
{
|
||||
<div class="mb-2">
|
||||
<div class="text-muted small">Asset Account</div>
|
||||
<div class="fw-semibold">@Model.AssetAccount.AccountNumber – @Model.AssetAccount.Name</div>
|
||||
<div class="fw-semibold">@Model.AssetAccount.AccountNumber – @Model.AssetAccount.Name</div>
|
||||
</div>
|
||||
}
|
||||
@if (Model.DepreciationExpenseAccount != null)
|
||||
{
|
||||
<div class="mb-2">
|
||||
<div class="text-muted small">Depreciation Expense</div>
|
||||
<div class="fw-semibold">@Model.DepreciationExpenseAccount.AccountNumber – @Model.DepreciationExpenseAccount.Name</div>
|
||||
<div class="fw-semibold">@Model.DepreciationExpenseAccount.AccountNumber – @Model.DepreciationExpenseAccount.Name</div>
|
||||
</div>
|
||||
}
|
||||
@if (Model.AccumDepreciationAccount != null)
|
||||
{
|
||||
<div>
|
||||
<div class="text-muted small">Accumulated Depreciation</div>
|
||||
<div class="fw-semibold">@Model.AccumDepreciationAccount.AccountNumber – @Model.AccumDepreciationAccount.Name</div>
|
||||
<div class="fw-semibold">@Model.AccumDepreciationAccount.AccountNumber – @Model.AccumDepreciationAccount.Name</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
@@ -206,7 +206,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
<span class="text-muted">—</span>
|
||||
<span class="text-muted">—</span>
|
||||
}
|
||||
</td>
|
||||
<td class="text-muted small">@e.CreatedAt.ToLocalTime().ToString("MM/dd/yyyy")</td>
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
<div class="col-md-4">
|
||||
<label asp-for="AssetAccountId" class="form-label">Asset Account</label>
|
||||
<select asp-for="AssetAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.AssetAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.AssetAccounts)
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="col-md-4">
|
||||
<label asp-for="DepreciationExpenseAccountId" class="form-label">Depreciation Expense Account</label>
|
||||
<select asp-for="DepreciationExpenseAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.ExpenseAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.ExpenseAccounts)
|
||||
@@ -101,7 +101,7 @@
|
||||
<div class="col-md-4">
|
||||
<label asp-for="AccumDepreciationAccountId" class="form-label">Accumulated Depreciation Account</label>
|
||||
<select asp-for="AccumDepreciationAccountId" class="form-select">
|
||||
<option value="">— None —</option>
|
||||
<option value="">— None —</option>
|
||||
@if (ViewBag.AccumDeprecAccounts != null)
|
||||
{
|
||||
@foreach (var item in (IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)ViewBag.AccumDeprecAccounts)
|
||||
|
||||
Reference in New Issue
Block a user