This commit is contained in:
2026-05-17 20:54:09 -04:00
parent 6da2183583
commit 74c21ee5cc
3000 changed files with 11794 additions and 15301 deletions

View File

@@ -42,27 +42,9 @@
<div>
<button type="submit" class="w-100 btn btn-lg btn-primary">Log in</button>
</div>
<div>
<p>
<a href="Account/ForgotPassword">Forgot your password?</a>
</p>
<p>
<a href="@(NavigationManager.GetUriWithQueryParameters("Account/Register", new Dictionary<string, object?> { ["ReturnUrl"] = ReturnUrl }))">Register as a new user</a>
</p>
<p>
<a href="Account/ResendEmailConfirmation">Resend email confirmation</a>
</p>
</div>
</EditForm>
</section>
</div>
<div class="col-lg-4 col-lg-offset-2">
<section>
<h3>Use another service to log in.</h3>
<hr />
<ExternalLoginPicker />
</section>
</div>
</div>
@code {

View File

@@ -8,8 +8,12 @@
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.css" rel="stylesheet" />
<link href=@Assets["_content/MudBlazor/MudBlazor.min.css"] rel="stylesheet" />
@*Allows the css calsses used by the rich text editor this project uses to be displayed properly*@
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<ImportMap />
<link rel="icon" type="image/ico" href="favicon.ico" />
<link href="css/app.css" rel="stylesheet"/>
<HeadOutlet @rendermode="PageRenderMode" />
</head>
@@ -18,8 +22,8 @@
<script src="_framework/blazor.web.js"></script>
<script src=@Assets["_content/MudBlazor/MudBlazor.min.js"]></script>
<script src="_content/CodeBeam.MudBlazor.Extensions/MudExtensions.min.js"></script>
<script src="js/downloadHelper.js"></script>
<script src="js/imageSizeGetter.js"></script>
<script src=@Assets["js/downloadHelper.js"]></script>
<script src=@Assets["js/imageSizeGetter.js"]></script>
</body>
</html>

View File

@@ -0,0 +1,17 @@
<MudGrid Justify="Justify.Center">
<MudItem xs="12" md="3" lg="2">
<MudButton Href="/search" Variant="Variant.Filled" Color="Color.Primary" FullWidth="true" StartIcon="@Icons.Material.Filled.Home">Artifacts</MudButton>
</MudItem>
<MudItem xs="12" md="3" lg="2">
<MudButton Href="/featured" Variant="Variant.Filled" Color="Color.Primary" FullWidth="true" StartIcon="@Icons.Material.Filled.Star">Featured Artifacts</MudButton>
</MudItem>
<MudItem xs="12" md="3" lg="2">
<MudButton Variant="Variant.Filled" Color="Color.Primary" FullWidth="true" StartIcon="@Icons.Material.Filled.Book">Blog Posts</MudButton>
</MudItem>
</MudGrid>
@code {
}

View File

@@ -1,55 +1,55 @@
@using Microsoft.Extensions.Options
@using OpenArchival.Blazor.Config
@using OpenArchival.Blazor.Theme
@inherits LayoutComponentBase
@*
For the login/logout
<AuthorizeView>
<Authorized>
<MudNavLink Href="Account/Manage" Match="NavLinkMatch.Prefix" Icon="@Icons.Material.Filled.Person">@context.User.Identity?.Name</MudNavLink>
<form action="Account/Logout" method="post">
<AntiforgeryToken />
<input type="hidden" name="ReturnUrl" value="@currentUrl" />
<button type="submit" class="mud-nav-link mud-ripple">
<MudIcon Icon="@Icons.Material.Filled.Logout" Color="Color.Info" Class="mr-3"></MudIcon> Logout
</button>
</form>
</Authorized>
<NotAuthorized>
<MudNavLink Href="Account/Register" Match="NavLinkMatch.Prefix" Icon="@Icons.Material.Filled.Person">Register</MudNavLink>
<MudNavLink Href="Account/Login" Match="NavLinkMatch.Prefix" Icon="@Icons.Material.Filled.Password">Login</MudNavLink>
</NotAuthorized>
</AuthorizeView>
*@
@inject IOptions<ApplicationOptions> Options;
@inject NavigationManager NavigationManager;
<MudThemeProvider />
<MudThemeProvider Theme="AppThemeFactory.GetTheme()"/>
<MudPopoverProvider />
<MudDialogProvider />
<MudSnackbarProvider />
<MudLayout>
<MudLayout Style="min-height: 100vh; display: flex; flex-direction: column;">
<MudAppBar Elevation="1" >
@if (!string.IsNullOrEmpty(Options.Value.NavBarTitle)) {
<MudNavLink Href="/" Style="max-width:200px;">
<MudNavLink Href="/" Style="max-width:400px;">
<MudText Typo="Typo.h6" Class="ml-3">@Options.Value.NavBarTitle</MudText>
</MudNavLink>
}
<div class="d-flex justify-center align-center">
<MudSpacer/>
<div class="d-flex d-md-none">
<MudMenu Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" AnchorOrigin="Origin.BottomRight" TransformOrigin="Origin.TopRight">
<MudMenuItem Icon="@Icons.Material.Filled.Home" IconColor=Color.Secondary Href="/">Home</MudMenuItem>
<MudMenuItem Icon="@Icons.Material.Filled.Star" IconColor=Color.Secondary Href="/featured">Featured</MudMenuItem>
<MudMenuItem Icon="@Icons.Material.Filled.Search" IconColor=Color.Secondary Href="/search">Artifacts</MudMenuItem>
<MudMenuItem Icon=@Icons.Material.Filled.Book Href="/articles/search" IconColor=Color.Secondary>Articles</MudMenuItem>
<MudMenuItem Href="/about" Icon=@Icons.Material.Filled.QuestionMark IconColor="Color.Secondary">About</MudMenuItem>
</MudMenu>
</div>
<div class="justify-center align-center d-none d-md-flex gap-4">
<MudNavLink
Icon="@Icons.Material.Filled.Home"
Icon="@Icons.Material.Filled.Star"
IconColor=Color.Secondary
Ripple=true
Style="max-width:200px;"
Href="/featured">
Featured
</MudNavLink>
<MudNavLink
Icon="@Icons.Material.Filled.Search"
IconColor=Color.Secondary
Ripple=true
Style="max-width:200px;"
Href="/search">
Artifacts
</MudNavLink>
<MudNavLink Href="/articles/search" Icon=@Icons.Material.Filled.Book IconColor=Color.Secondary Ripple=true Style="max-width: 200px">
Articles
</MudNavLink>
@@ -57,34 +57,44 @@ For the login/logout
<MudNavLink Href="/about" Icon=@Icons.Material.Filled.QuestionMark IconColor="Color.Secondary" Ripple=true Style="max-width:200px;">
About
</MudNavLink>
<MudSpacer></MudSpacer>
<div style="background-color: white; border-radius:10px;" class="pa-2">
<MudAutocomplete
Placeholder="Search Archive"
T="string"
Variant="Variant.Filled | Variant.Outlined"
AdornmentIcon="@Icons.Material.Filled.Search"
Dense=true
Underline=false
Style="width:200px; --mud-input-text: white; --mud-input-label-text: white;"
OnKeyDown="OnSearchBarKeyDown"
SearchFunc="Search"
@bind-Text=_searchBarText/>
</div>
</div>
<MudSpacer></MudSpacer>
<div style="background-color: white; border-radius:10px;" class="pa-2">
<MudAutocomplete
Placeholder="Search Archive"
T="string"
Variant="Variant.Filled | Variant.Outlined"
AdornmentIcon="@Icons.Material.Filled.Search"
Dense=true
Underline=false
Style="width:200px; --mud-input-text: white; --mud-input-label-text: white;"
OnKeyDown="OnSearchBarKeyDown"
@bind-Text=_searchBarText/>
</div>
@*
<MudTextField
Placeholder="Search"
Variant="Variant.Filled"
Adornment="Adornment.Start"
AdornmentIcon="@Icons.Material.Filled.Search"
IconSize="Size.Medium"
T="string">
</MudTextField>*@
</MudAppBar>
</MudAppBar>
<MudMainContent Class="pt-16 pa-4">
@Body
</MudMainContent>
<MudPaper Elevation="0" Class="pa-8 mt-auto" Style="background-color: var(--mud-palette-appbar-background); color: var(--mud-palette-appbar-text); border-radius: 0;">
<MudContainer MaxWidth="MaxWidth.Large">
<MudGrid Justify="Justify.Center">
<MudItem xs="12" sm="8" Class="d-flex flex-wrap gap-4 justify-center justify-sm-start align-center">
<MudLink Href="/" Color="Color.Inherit">Home</MudLink>
<MudLink Href="/featured" Color="Color.Inherit">Featured</MudLink>
<MudLink Href="/search" Color="Color.Inherit">Artifacts</MudLink>
<MudLink Href="/articles/search" Color="Color.Inherit">Articles</MudLink>
<MudLink Href="/about" Color="Color.Inherit">About</MudLink>
</MudItem>
<MudItem xs="12" sm="4" Class="d-flex justify-center justify-sm-end align-center">
<a href="https://www.linkedin.com/in/vincenttallen/">Development by Vincent Allen</a>
</MudItem>
</MudGrid>
</MudContainer>
</MudPaper>
</MudLayout>
@@ -106,6 +116,11 @@ For the login/logout
_searchBarText = "";
}
}
private Task<IEnumerable<string>> Search(string value, CancellationToken token)
{
return Task.FromResult<IEnumerable<string>>([]);
}
}

View File

@@ -1,18 +0,0 @@
@page "/counter"
<PageTitle>Counter</PageTitle>
<MudText Typo="Typo.h3" GutterBottom="true">Counter</MudText>
<MudText Typo="Typo.body1" Class="mb-4">Current count: @currentCount</MudText>
<MudButton Color="Color.Primary" Variant="Variant.Filled" @onclick="IncrementCount">Click me</MudButton>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
}

View File

@@ -1,35 +1,120 @@
@using Microsoft.Extensions.Options
@using Microsoft.EntityFrameworkCore
@using Microsoft.Extensions.Caching.Memory
@using Microsoft.Extensions.Options
@using OpenArchival.Blazor.Components.CustomComponents
@using OpenArchival.Blazor.Config;
@using OpenArchival.Blazor.Blog
@using OpenArchival.Blazor.ArchiveDisplay
@page "/"
<PageTitle>Home</PageTitle>
@if (string.IsNullOrEmpty(_htmlContent))
<style>
.banner-container {
position: relative;
width: calc(100% + 32px);
margin-left: -16px;
margin-right: -16px;
margin-top: -16px;
overflow: hidden;
}
.banner-container img {
width: 100% !important;
height: auto !important;
display: block;
}
.floating-buttons {
position: absolute;
bottom: 24px;
left: 0;
right: 0;
z-index: 10;
}
@@media (max-width: 600px) {
.floating-buttons {
position: static;
padding-top: 16px;
padding-bottom: 16px;
}
}
</style>
@if (_homePageConfig is null)
{
<p>Loading content...</p>
}
else
{
@((MarkupString)_htmlContent)
@if (_homePageConfig.HomePageBanner is not null)
{
<div class="banner-container">
<MudImage
ObjectPosition=ObjectPosition.Center
Src=@($"/api/files/{_homePageConfig.HomePageBanner.Id}/large")></MudImage>
<div class="floating-buttons">
<HomePageButtons></HomePageButtons>
</div>
</div>
<MudDivider></MudDivider>
}
else
{
<HomePageButtons></HomePageButtons>
}
@if (!string.IsNullOrEmpty(_homePageConfig.Content)) {
// Uses a custom CSS class to force the content to the width of the page regardless of what is in it
// ql-editor class tells the quill css that it should apply its classes in this div. Quill is used by the rich text editor this
// project uses
<div class="dynamic-content-container ql-editor">
@((MarkupString)_homePageConfig.Content)
</div>
}
<LatestBlogPostsSlider />
@if (_homePageConfig.SliderEntries != null)
{
@foreach (var sliderEntry in _homePageConfig.SliderEntries)
{
<SearchPageSlider SliderEntry="sliderEntry" />
}
}
}
@inject IOptions<ApplicationOptions> AppOptions;
@inject IMemoryCache MemoryCache;
@inject IDbContextFactory<ApplicationDbContext> ContextFactory;
@code {
private string _htmlContent = $"<h1>HTML file not found for homepage. Create one at /admin/homepageeditor</h1>";
private HomePageConfiguration? _homePageConfig = null;
protected override async void OnInitialized()
protected override async Task OnInitializedAsync()
{
try
_homePageConfig = await MemoryCache.GetOrCreateAsync(OpenArchivalConstants.HomePageConfigurationCacheKey, async entry =>
{
using var reader = new StreamReader(AppOptions.Value.HomepageContentLocation);
_htmlContent = await reader.ReadToEndAsync();
}
catch (Exception ex)
{
_htmlContent = $"<h1>HTML file not found for homepage. Create one at /admin/homepageeditor</h1>";
}
await using var context = await ContextFactory.CreateDbContextAsync();
HomePageConfiguration? config = await context.HomePageConfiguration
.Include(conf=>conf.HomePageBanner)
.Include(conf=>conf.SliderEntries)
.ThenInclude(se => se.FilterTags)
.FirstOrDefaultAsync();
if (config is null)
{
return new HomePageConfiguration() { Content = "Failed to load HomePageConfiguration from the database!" };
}
return config;
});
StateHasChanged();
}
}

View File

@@ -1,60 +0,0 @@
@page "/weather"
<PageTitle>Weather</PageTitle>
<MudText Typo="Typo.h3" GutterBottom="true">Weather forecast</MudText>
<MudText Typo="Typo.body1" Class="mb-8">This component demonstrates fetching data from the server.</MudText>
@if (forecasts == null)
{
<MudProgressCircular Color="Color.Default" Indeterminate="true" />
}
else
{
<MudTable Items="forecasts" Hover="true" SortLabel="Sort By" Elevation="0" AllowUnsorted="false">
<HeaderContent>
<MudTh><MudTableSortLabel InitialDirection="SortDirection.Ascending" SortBy="new Func<WeatherForecast, object>(x=>x.Date)">Date</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="new Func<WeatherForecast, object>(x=>x.TemperatureC)">Temp. (C)</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="new Func<WeatherForecast, object>(x=>x.TemperatureF)">Temp. (F)</MudTableSortLabel></MudTh>
<MudTh><MudTableSortLabel SortBy="new Func<WeatherForecast, object>(x=>x.Summary!)">Summary</MudTableSortLabel></MudTh>
</HeaderContent>
<RowTemplate>
<MudTd DataLabel="Date">@context.Date</MudTd>
<MudTd DataLabel="Temp. (C)">@context.TemperatureC</MudTd>
<MudTd DataLabel="Temp. (F)">@context.TemperatureF</MudTd>
<MudTd DataLabel="Summary">@context.Summary</MudTd>
</RowTemplate>
<PagerContent>
<MudTablePager PageSizeOptions="new int[]{50, 100}" />
</PagerContent>
</MudTable>
}
@code {
private WeatherForecast[]? forecasts;
protected override async Task OnInitializedAsync()
{
// Simulate asynchronous loading to demonstrate a loading indicator
await Task.Delay(500);
var startDate = DateOnly.FromDateTime(DateTime.Now);
var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = startDate.AddDays(index),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = summaries[Random.Shared.Next(summaries.Length)]
}).ToArray();
}
private class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public string? Summary { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}
}

View File

@@ -38,6 +38,46 @@ public class FilesController : ControllerBase
return new FileStreamResult(fileStream, GetMimeType(physicalPath));
}
[HttpGet("{id}/small")]
public async Task<IActionResult> GetSmallThumbnail(int id)
{
await using var context = await _context.CreateDbContextAsync();
FilePathListing fileRecord = await context.ArtifactFilePaths.FindAsync(id);
if (fileRecord == null) return NotFound();
var path = !string.IsNullOrEmpty(fileRecord.SmallThumbnailPath) && System.IO.File.Exists(fileRecord.SmallThumbnailPath)
? fileRecord.SmallThumbnailPath
: fileRecord.Path;
if (!System.IO.File.Exists(path)) return NotFound();
var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read);
var mimeType = path == fileRecord.SmallThumbnailPath ? "image/webp" : GetMimeType(path);
return new FileStreamResult(fileStream, mimeType);
}
[HttpGet("{id}/large")]
public async Task<IActionResult> GetLargeThumbnail(int id)
{
await using var context = await _context.CreateDbContextAsync();
FilePathListing fileRecord = await context.ArtifactFilePaths.FindAsync(id);
if (fileRecord == null) return NotFound();
var path = !string.IsNullOrEmpty(fileRecord.LargeThumbnailPath) && System.IO.File.Exists(fileRecord.LargeThumbnailPath)
? fileRecord.LargeThumbnailPath
: fileRecord.Path;
if (!System.IO.File.Exists(path)) return NotFound();
var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read);
var mimeType = path == fileRecord.LargeThumbnailPath ? "image/webp" : GetMimeType(path);
return new FileStreamResult(fileStream, mimeType);
}
private static string GetMimeType(string filePath)
{
var extension = Path.GetExtension(filePath).ToLowerInvariant();
@@ -47,6 +87,8 @@ public class FilesController : ControllerBase
".jpeg" => "image/jpeg",
".png" => "image/png",
".gif" => "image/gif",
".txt" => "text/plain",
".pdf" => "application/pdf",
_ => "application/octet-stream", // Default for unknown file types
};
}

View File

@@ -21,10 +21,12 @@ COPY ["OpenArchival.Blazor.CustomComponents/OpenArchival.Blazor.CustomComponents
COPY ["OpenArchival.Blazor.AdminPages/OpenArchival.Blazor.AdminPages.csproj", "OpenArchival.Blazor.AdminPages/"]
COPY ["OpenArchival.Blazor.AdminPages.Shared/OpenArchival.Blazor.AdminPages.Shared.csproj", "OpenArchival.Blazor.AdminPages/"]
COPY ["OpenArchival.Blazor.Config/OpenArchival.Blazor.Config.csproj", "OpenArchival.Blazor.Config/"]
COPY ["OpenArchival.Blazor.ArchiveSearch/OpenArchival.Blazor.ArchiveSearch.csproj", "OpenArchival.Blazor.ArchiveSearch/"]
COPY ["OpenArchival.Blazor.ArchiveDisplay/OpenArchival.Blazor.ArchiveDisplay.csproj", "OpenArchival.Blazor.ArchiveDisplay/"]
COPY ["OpenArchival.Blazor.ArtifactGroupingDisplay/OpenArchival.Blazor.ArtifactGroupingDisplay.csproj", "OpenArchival.Blazor.ArtifactGroupingDisplay/"]
COPY ["OpenArchival.Blazor.Blog/OpenArchival.Blazor.Blog.csproj", "OpenArchival.Blazor.Blog/"]
COPY ["OpenArchival.Blazor.AdminPages.Shared/OpenArchival.Blazor.AdminPages.Shared.csproj", "OpenArchival.Blazor.AdminPages.Shared/"]
COPY ["OpenArchival.Blazor.Theme/OpenArchival.Blazor.Theme.csproj", "OpenArchival.Blazor.Theme/"]
COPY ["OpenArchival.DataAccess.FileAccessManager/OpenArchival.DataAccess.FileAccessManager.csproj", "OpenArchival.DataAccess.FileAccessManager/"]
RUN dotnet restore "/OpenArchival.sln"
COPY . .

View File

@@ -13,12 +13,11 @@
<ItemGroup>
<PackageReference Include="CodeBeam.MudExtensions" Version="6.3.0" />
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.22.1" />
<PackageReference Include="MudBlazor" Version="8.*" />
<PackageReference Include="Npgsql" Version="9.0.3" />
<PackageReference Include="Npgsql.DependencyInjection" Version="9.0.3" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
@@ -31,12 +30,14 @@
<ItemGroup>
<ProjectReference Include="..\OpenArchival.Blazor.AdminPages\OpenArchival.Blazor.AdminPages.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.ArchiveSearch\OpenArchival.Blazor.ArchiveSearch.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.ArchiveDisplay\OpenArchival.Blazor.ArchiveDisplay.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.ArtifactGroupingDisplay\OpenArchival.Blazor.ArtifactGroupingDisplay.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.Blog\OpenArchival.Blazor.Blog.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.Config\OpenArchival.Blazor.Config.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.CustomComponents\OpenArchival.Blazor.CustomComponents.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.FileViewer\OpenArchival.Blazor.FileViewer.csproj" />
<ProjectReference Include="..\OpenArchival.Blazor.Theme\OpenArchival.Blazor.Theme.csproj" />
<ProjectReference Include="..\OpenArchival.DataAccess.FileAccessManager\OpenArchival.DataAccess.FileAccessManager.csproj" />
<ProjectReference Include="..\OpenArchival.DataAccess\OpenArchival.DataAccess.csproj" />
</ItemGroup>

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -0,0 +1 @@
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero. Fusce vulputate eleifend sapien. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui. Cras ultricies mi eu turpis hendrerit fringilla. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia. Nam pretium turpis et arcu. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Sed aliquam ultrices mauris. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Praesent adipiscing. Phasellus ullamcorper ipsum rutrum nunc. Nunc nonummy metus. Vestibulum volutpat pretium libero. Cras id dui. Aenean ut eros et nisl sagittis vestibulum. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Sed lectus. Donec mollis hendrerit risus. Phasellus nec sem in justo pellentesque facilisis. Etiam imperdiet imperdiet orci. Nunc nec neque. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Maecenas malesuada. Praesent congue erat at massa. Sed cursus turpis vitae tortor. Donec posuere vulputate arcu. Phasellus accumsan cursus velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci, ac placerat dolor lectus quis orci. Phasellus consectetuer vestibulum elit. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Vestibulum fringilla pede sit amet augue. In turpis. Pellentesque posuere. Praesent turpis. Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus. Donec elit libero, sodales nec, volutpat a, suscipit non, turpis. Nullam sagittis. Suspendisse pulvinar, augue ac venenatis condimentum, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis diam. Pellentesque ut neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. In ac felis quis tortor malesuada pretium. Pellentesque auctor neque nec urna. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. Aenean viverra rhoncus pede. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut non enim eleifend felis pretium feugiat. Vivamus quis mi. Phasellus a est. Phasellus magna. In hac habitasse platea dictumst. Curabitur at lacus ac velit ornare lobortis. Curabitur a felis in nunc fringilla tristique.

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

File diff suppressed because one or more lines are too long

View File

@@ -6,27 +6,35 @@ using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using MudBlazor.Services;
using MyAppName.WebApp.Components.Account;
using OpenArchival.Blazor;
using OpenArchival.Blazor.AdminPages;
using OpenArchival.Blazor.AdminPages.Shared;
using OpenArchival.Blazor.ArchiveDisplay;
using OpenArchival.Blazor.Components;
using OpenArchival.Blazor.Config;
using OpenArchival.Blazor.CustomComponents;
using OpenArchival.DataAccess;
using OpenArchival.DataAccess.FileAccessManager;
var builder = WebApplication.CreateBuilder(args);
var uploadSettings = builder.Configuration.GetSection(FileUploadOptions.Key).Get<FileUploadOptions>() ?? throw new ArgumentNullException("FileUploadOptions");
// --- UI Services ---
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
.AddInteractiveServerComponents()
.AddHubOptions(options =>
{
options.MaximumReceiveMessageSize = 1000 * 1024 * 1024;
options.ClientTimeoutInterval = TimeSpan.FromSeconds(60);
options.HandshakeTimeout = TimeSpan.FromSeconds(30);
});
builder.Services.AddMudServices();
builder.Services.AddMudExtensions();
builder.Services.AddControllers();
builder.Services.AddHttpClient();
// --- Database & Identity Configuration ---
// Get the single connection string for your PostgreSQL database.
@@ -59,20 +67,12 @@ builder.Services.AddAuthentication(options =>
})
.AddIdentityCookies();
// --- File Upload Configuration ---
// File Upload Configuration
builder.Services.AddOptions<FileUploadOptions>().Bind(builder.Configuration.GetSection(FileUploadOptions.Key));
builder.Services.AddOptions<ApplicationOptions>().Bind(builder.Configuration.GetSection(ApplicationOptions.Key));
var uploadSettings = builder.Configuration.GetSection(FileUploadOptions.Key).Get<FileUploadOptions>() ?? throw new ArgumentNullException("FileUploadOptions");
builder.Services.AddServerSideBlazor().AddHubOptions(options =>
{
options.MaximumReceiveMessageSize = uploadSettings.MaxUploadSizeBytes;
options.MaximumReceiveMessageSize = 1024 * 1024 * 10; // 10MB
options.ClientTimeoutInterval = TimeSpan.FromSeconds(60);
options.HandshakeTimeout = TimeSpan.FromSeconds(30);
});
// --- Custom Application Services ---
// Custom Application Services
builder.Services.AddScoped<IArchiveCategoryProvider, ArchiveCategoryProvider>();
builder.Services.AddScoped<IFilePathListingProvider, FilePathListingProvider>();
builder.Services.AddScoped<IArtifactStorageLocationProvider, ArtifactStorageLocationProvider>();
@@ -84,6 +84,8 @@ builder.Services.AddScoped<ArtifactEntrySharedHelpers>();
builder.Services.AddScoped<IArtifactGroupingProvider, ArtifactGroupingProvider>();
builder.Services.AddScoped<ArtifactGroupingSearch>();
builder.Services.AddScoped<BlogPostSearch>();
builder.Services.AddScoped<IFileAccessManager, FileAccessManager>();
builder.Services.AddScoped<IImageThumbnailer, ImageThumbnailer>();
builder.Services.AddLogging();
@@ -91,6 +93,8 @@ builder.Services.AddDataProtection()
.PersistKeysToFileSystem(new DirectoryInfo("/app/keys"))
.SetApplicationName("OpenArchival");
builder.Services.AddMemoryCache();
var app = builder.Build();
app.MapControllers();
@@ -118,7 +122,7 @@ using (var scope = app.Services.CreateScope())
System.Environment.Exit(1);
}
// Add the admin user
// Add the admin user
try
{
await IdentityDataSeeder.SeedRolesAndAdminUserAsync(serviceProvider);
@@ -127,8 +131,12 @@ using (var scope = app.Services.CreateScope())
{
logger.LogError(ex, "An error occurred while seeding the database with admin credentials.");
}
// Seed the home page configuration
await HomepageConfigurationSeeder.SeedHomepageConfig(serviceProvider);
}
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
@@ -153,7 +161,7 @@ app.MapRazorComponents<App>()
app.MapAdditionalIdentityEndpoints();
app.MapPost("/Logout", async (Microsoft.AspNetCore.Identity.SignInManager<OpenArchival.DataAccess.ApplicationUser> signInManager) =>
app.MapPost("/Logout", async (SignInManager<OpenArchival.DataAccess.ApplicationUser> signInManager) =>
{
await signInManager.SignOutAsync();

View File

@@ -22,7 +22,7 @@
"MaxFileCount": 100
},
"ApplicationOptions": {
"NavBarTitle": "Open Archival",
"NavBarTitle": "Greencastle Archives",
"HomepageContentLocation": "/app/OpenArchivalUploads/index.html",
"AboutPageContentLocation": "/app/OpenArchivalUploads/about.html"
}

View File

@@ -1 +1 @@
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.AdminPages.Shared\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.AdminPages.Shared\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.AdminPages.Shared.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.AdminPages.Shared.styles.css"},"Patterns":null},"OpenArchival.Blazor.AdminPages.Shared.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"917ihm2iun-{0}-of6ssq9pmk-of6ssq9pmk.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-83wakjp31g-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.AdminPages.Shared\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.AdminPages.Shared\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.AdminPages.Shared.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.AdminPages.Shared.styles.css"},"Patterns":null},"OpenArchival.Blazor.AdminPages.Shared.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"917ihm2iun-{0}-3vyvv1v143-3vyvv1v143.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}

View File

@@ -1 +1 @@
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveSearch\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveSearch\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArchiveDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArchiveDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArchiveDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tp9idb5csd-{0}-of6ssq9pmk-of6ssq9pmk.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-83wakjp31g-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArchiveDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArchiveDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArchiveDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArchiveDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tp9idb5csd-{0}-3vyvv1v143-3vyvv1v143.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}

View File

@@ -1 +1 @@
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v7y6uo7l7v-{0}-of6ssq9pmk-of6ssq9pmk.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-83wakjp31g-83wakjp31g.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.ArtifactGroupingDisplay\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\projectbundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\"],"Root":{"Children":{"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css"},"Patterns":null},"OpenArchival.Blazor.ArtifactGroupingDisplay.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v7y6uo7l7v-{0}-3vyvv1v143-3vyvv1v143.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenArchival.Blazor.FileViewer":{"Children":{"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"OpenArchival.Blazor.FileViewer.bundle.scp.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}

View File

@@ -1 +1 @@
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.Blazor.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.FileViewer.styles.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hp0c67wuvj-{0}-83wakjp31g-83wakjp31g.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
{"ContentRoots":["C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\scopedcss\\bundle\\","C:\\Users\\Vincent\\Documents\\dev\\Open-Archival\\OpenArchival.Blazor.FileViewer\\obj\\Debug\\net9.0\\compressed\\","C:\\Users\\Vincent\\.nuget\\packages\\codebeam.mudextensions\\6.3.0\\staticwebassets\\","C:\\Users\\Vincent\\.nuget\\packages\\mudblazor\\8.13.0\\staticwebassets\\"],"Root":{"Children":{"OpenArchival.Blazor.FileViewer.styles.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"OpenArchival.Blazor.FileViewer.styles.css"},"Patterns":null},"OpenArchival.Blazor.FileViewer.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hp0c67wuvj-{0}-niubdl7feg-niubdl7feg.gz"},"Patterns":null},"_content":{"Children":{"CodeBeam.MudExtensions":{"Children":{"Mud_Secondary.png":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"Mud_Secondary.png"},"Patterns":null},"MudExtensions.min.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.css"},"Patterns":null},"MudExtensions.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"MudExtensions.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}

View File

@@ -10,21 +10,23 @@
"dependencies": {
"CodeBeam.MudExtensions": "6.3.0",
"Dapper": "2.1.66",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.9",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "9.0.8",
"Microsoft.EntityFrameworkCore": "9.0.9",
"Microsoft.EntityFrameworkCore.SqlServer": "9.0.9",
"Microsoft.EntityFrameworkCore.Tools": "9.0.9",
"MudBlazor": "8.15.0",
"Npgsql": "9.0.3",
"Npgsql.DependencyInjection": "9.0.3",
"Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4",
"OpenArchival.Blazor.AdminPages": "1.0.0",
"OpenArchival.Blazor.ArchiveDisplay": "1.0.0",
"OpenArchival.Blazor.ArtifactGroupingDisplay": "1.0.0",
"OpenArchival.Blazor.Blog": "1.0.0",
"OpenArchival.Blazor.Config": "1.0.0",
"OpenArchival.Blazor.CustomComponents": "1.0.0",
"OpenArchival.Blazor.FileViewer": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
"OpenArchival.Blazor.Theme": "1.0.0",
"OpenArchival.DataAccess": "1.0.0",
"OpenArchival.DataAccess.FileAccessManager": "1.0.0"
},
"runtime": {
"OpenArchival.Blazor.dll": {}
@@ -113,7 +115,7 @@
"CsvHelper": "30.0.1",
"Microsoft.AspNetCore.Components": "9.0.1",
"Microsoft.AspNetCore.Components.Web": "9.0.1",
"MudBlazor": "8.15.0"
"MudBlazor": "8.13.0"
},
"runtime": {
"lib/net7.0/CodeBeam.MudExtensions.dll": {
@@ -302,14 +304,14 @@
}
}
},
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": {
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Relational": "9.0.9"
},
"runtime": {
"lib/net9.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {
"assemblyVersion": "9.0.9.0",
"fileVersion": "9.0.925.42003"
"assemblyVersion": "9.0.8.0",
"fileVersion": "9.0.825.36808"
}
}
},
@@ -1075,7 +1077,7 @@
}
}
},
"MudBlazor/8.15.0": {
"MudBlazor/8.13.0": {
"dependencies": {
"Microsoft.AspNetCore.Components": "9.0.1",
"Microsoft.AspNetCore.Components.Web": "9.0.1",
@@ -1083,8 +1085,8 @@
},
"runtime": {
"lib/net9.0/MudBlazor.dll": {
"assemblyVersion": "8.15.0.0",
"fileVersion": "8.15.0.0"
"assemblyVersion": "8.13.0.0",
"fileVersion": "8.13.0.0"
}
}
},
@@ -1098,7 +1100,7 @@
"ExcelDataReader.DataSet": "3.7.0",
"MetadataExtractor": "2.8.1",
"Microsoft.Extensions.Hosting.Abstractions": "9.0.8",
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"MudBlazor.Markdown": "8.11.0",
"Nextended.Blazor": "9.0.25",
"Nextended.Core": "9.0.25",
@@ -1116,7 +1118,7 @@
"MudBlazor.Markdown/8.11.0": {
"dependencies": {
"Markdig": "0.41.3",
"MudBlazor": "8.15.0"
"MudBlazor": "8.13.0"
},
"runtime": {
"lib/net9.0/MudBlazor.Markdown.dll": {
@@ -1595,13 +1597,15 @@
"CodeBeam.MudExtensions": "6.3.0",
"Microsoft.IdentityModel.Abstractions": "8.14.0",
"Microsoft.IdentityModel.Tokens": "8.14.0",
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"MudExRichTextEditor": "8.13.0",
"OpenArchival.Blazor.AdminPages.Shared": "1.0.0",
"OpenArchival.Blazor.ArchiveDisplay": "1.0.0",
"OpenArchival.Blazor.Blog": "1.0.0",
"OpenArchival.Blazor.Config": "1.0.0",
"OpenArchival.Blazor.CustomComponents": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
"OpenArchival.DataAccess": "1.0.0",
"OpenArchival.DataAccess.FileAccessManager": "1.0.0"
},
"runtime": {
"OpenArchival.Blazor.AdminPages.dll": {
@@ -1614,9 +1618,9 @@
"dependencies": {
"Microsoft.IdentityModel.Abstractions": "8.14.0",
"Microsoft.IdentityModel.Tokens": "8.14.0",
"MudBlazor": "8.15.0",
"OpenArchival.Blazor.ArchiveDisplay": "1.0.0",
"OpenArchival.Blazor.CustomComponents": "1.0.0",
"OpenArchival.Blazor.Theme": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
},
"runtime": {
@@ -1628,7 +1632,7 @@
},
"OpenArchival.Blazor.ArchiveDisplay/1.0.0": {
"dependencies": {
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"OpenArchival.Blazor.ArtifactGroupingDisplay": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
},
@@ -1642,7 +1646,7 @@
"OpenArchival.Blazor.ArtifactGroupingDisplay/1.0.0": {
"dependencies": {
"CodeBeam.MudExtensions": "6.3.0",
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"OpenArchival.Blazor.CustomComponents": "1.0.0",
"OpenArchival.Blazor.FileViewer": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
@@ -1656,12 +1660,13 @@
},
"OpenArchival.Blazor.Blog/1.0.0": {
"dependencies": {
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"MudExRichTextEditor": "8.13.0",
"OpenArchival.Blazor.AdminPages.Shared": "1.0.0",
"OpenArchival.Blazor.Config": "1.0.0",
"OpenArchival.Blazor.CustomComponents": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
"OpenArchival.DataAccess": "1.0.0",
"OpenArchival.DataAccess.FileAccessManager": "1.0.0"
},
"runtime": {
"OpenArchival.Blazor.Blog.dll": {
@@ -1681,9 +1686,10 @@
"OpenArchival.Blazor.CustomComponents/1.0.0": {
"dependencies": {
"CodeBeam.MudExtensions": "6.3.0",
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"OpenArchival.Blazor.Config": "1.0.0",
"OpenArchival.DataAccess": "1.0.0"
"OpenArchival.DataAccess": "1.0.0",
"OpenArchival.DataAccess.FileAccessManager": "1.0.0"
},
"runtime": {
"OpenArchival.Blazor.CustomComponents.dll": {
@@ -1695,7 +1701,7 @@
"OpenArchival.Blazor.FileViewer/1.0.0": {
"dependencies": {
"CodeBeam.MudExtensions": "6.3.0",
"MudBlazor": "8.15.0",
"MudBlazor": "8.13.0",
"OpenArchival.DataAccess": "1.0.0"
},
"runtime": {
@@ -1705,6 +1711,17 @@
}
}
},
"OpenArchival.Blazor.Theme/1.0.0": {
"dependencies": {
"MudBlazor": "8.13.0"
},
"runtime": {
"OpenArchival.Blazor.Theme.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"OpenArchival.DataAccess/1.0.0": {
"dependencies": {
"EntityFramework": "6.5.1",
@@ -1721,6 +1738,20 @@
"fileVersion": "1.0.0.0"
}
}
},
"OpenArchival.DataAccess.FileAccessManager/1.0.0": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "9.0.9",
"OpenArchival.Blazor.Config": "1.0.0",
"OpenArchival.DataAccess": "1.0.0",
"SixLabors.ImageSharp": "3.1.11"
},
"runtime": {
"OpenArchival.DataAccess.FileAccessManager.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
}
}
},
@@ -1898,12 +1929,12 @@
"path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.8",
"hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.8.nupkg.sha512"
},
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.9": {
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/9.0.8": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ClnQ7NYH6glI4B8b91qiu0vN+5cuMrltpJJoJQmD9LPNMMTinkqmzEyFBce8r7Y68dEWiq14CBGYdr91++z+NQ==",
"path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.9",
"hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.9.nupkg.sha512"
"sha512": "sha512-/fr42V7LN7jmlIc7akFQQPPXcEy92+iPr2O7Eum0X3EZv/gcOHKNeaB1MnhViEQs0ylAMVDRTPi3OyoVKRxlDg==",
"path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/9.0.8",
"hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.9.0.8.nupkg.sha512"
},
"Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.8": {
"type": "package",
@@ -2227,12 +2258,12 @@
"path": "mono.texttemplating/3.0.0",
"hashPath": "mono.texttemplating.3.0.0.nupkg.sha512"
},
"MudBlazor/8.15.0": {
"MudBlazor/8.13.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-iOJEnQ6tYGQPfPJaUazyC8H6pcczgaMX7vhUzrJPpB0WqEXNozwMfSzoOe2/JZmVWJcUfYZgKBeBU2Z27XY7Sw==",
"path": "mudblazor/8.15.0",
"hashPath": "mudblazor.8.15.0.nupkg.sha512"
"sha512": "sha512-Y6JW93zf8tiVhMSkkL0mZ3ruqjOTNftvVoX3sik6NEnIye+Gs0FXI8rhXfrH2LU79Mw/fOtT5ms3L/Q4TKx2kA==",
"path": "mudblazor/8.13.0",
"hashPath": "mudblazor.8.13.0.nupkg.sha512"
},
"MudBlazor.Extensions/8.13.0": {
"type": "package",
@@ -2568,10 +2599,20 @@
"serviceable": false,
"sha512": ""
},
"OpenArchival.Blazor.Theme/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"OpenArchival.DataAccess/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"OpenArchival.DataAccess.FileAccessManager/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

File diff suppressed because one or more lines are too long

View File

@@ -7,7 +7,7 @@
"/.nuget/packages/auralizeblazor/2.0.5/staticwebassets/",
"/.nuget/packages/blazorjs/2.2.0/staticwebassets/",
"/.nuget/packages/codebeam.mudextensions/6.3.0/staticwebassets/",
"/.nuget/packages/mudblazor/8.15.0/staticwebassets/",
"/.nuget/packages/mudblazor/8.13.0/staticwebassets/",
"/.nuget/packages/mudblazor.extensions/8.13.0/staticwebassets/",
"/.nuget/packages/mudblazor.markdown/8.11.0/staticwebassets/",
"/.nuget/packages/nextended.blazor/9.0.25/staticwebassets/",
@@ -61,10 +61,32 @@
"Children": null,
"Asset": {
"ContentRootIndex": 1,
"SubPath": "py8uhdk6iu-{0}-w2ijupf7qe-w2ijupf7qe.gz"
"SubPath": "py8uhdk6iu-{0}-53q8ocftns-53q8ocftns.gz"
},
"Patterns": null
},
"css": {
"Children": {
"app.css": {
"Children": null,
"Asset": {
"ContentRootIndex": 0,
"SubPath": "css/app.css"
},
"Patterns": null
},
"app.css.gz": {
"Children": null,
"Asset": {
"ContentRootIndex": 1,
"SubPath": "6cxmllzmbn-{0}-sas0fk29lz-sas0fk29lz.gz"
},
"Patterns": null
}
},
"Asset": null,
"Patterns": null
},
"js": {
"Children": {
"downloadHelper.js": {
@@ -95,7 +117,7 @@
"Children": null,
"Asset": {
"ContentRootIndex": 1,
"SubPath": "3slpv4vfyy-{0}-6k2m17moin-6k2m17moin.gz"
"SubPath": "3slpv4vfyy-{0}-1v5ekj5paq-1v5ekj5paq.gz"
},
"Patterns": null
}
@@ -447,7 +469,7 @@
"Children": null,
"Asset": {
"ContentRootIndex": 1,
"SubPath": "tzxjg6is5z-{0}-7c7lhmh1j6-7c7lhmh1j6.gz"
"SubPath": "tzxjg6is5z-{0}-jk5eo7zo4m-jk5eo7zo4m.gz"
},
"Patterns": null
},
@@ -463,7 +485,7 @@
"Children": null,
"Asset": {
"ContentRootIndex": 1,
"SubPath": "0wz98yz2xy-{0}-f96y5mhlyw-f96y5mhlyw.gz"
"SubPath": "0wz98yz2xy-{0}-tjzqk7tnel-tjzqk7tnel.gz"
},
"Patterns": null
}
@@ -12645,7 +12667,7 @@
},
"OpenArchival.Blazor.FileViewer": {
"Children": {
"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css": {
"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css": {
"Children": null,
"Asset": {
"ContentRootIndex": 11,
@@ -12653,11 +12675,11 @@
},
"Patterns": null
},
"OpenArchival.Blazor.FileViewer.83wakjp31g.bundle.scp.css.gz": {
"OpenArchival.Blazor.FileViewer.niubdl7feg.bundle.scp.css.gz": {
"Children": null,
"Asset": {
"ContentRootIndex": 12,
"SubPath": "46737f4nmk-{0}-83wakjp31g-83wakjp31g.gz"
"SubPath": "46737f4nmk-{0}-niubdl7feg-niubdl7feg.gz"
},
"Patterns": null
}

File diff suppressed because one or more lines are too long

View File

@@ -22,7 +22,7 @@
"MaxFileCount": 100
},
"ApplicationOptions": {
"NavBarTitle": "Open Archival",
"NavBarTitle": "Greencastle Archives",
"HomepageContentLocation": "/app/OpenArchivalUploads/index.html",
"AboutPageContentLocation": "/app/OpenArchivalUploads/about.html"
}

View File

@@ -15,7 +15,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("OpenArchival.Blazor")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+28d90fcc181787153ef8aecbeca2762fc064854e")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6da218358353bb54f8e6b58efa699ba221b50ff1")]
[assembly: System.Reflection.AssemblyProductAttribute("OpenArchival.Blazor")]
[assembly: System.Reflection.AssemblyTitleAttribute("OpenArchival.Blazor")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1 +1 @@
c71c1b1f1cbe2507b1993bafd321235e8400590a016e5915fc4b54de25dd2931
765e34af19ff9052cd1c01a41d7f6de34eead1b158521ec368f81f3192c8b63d

View File

@@ -15,9 +15,6 @@ build_property.EnforceExtendedAnalyzerRules =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.MudDebugAnalyzer =
build_property.MudAllowedAttributePattern =
build_property.MudAllowedAttributeList =
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v9.0
build_property.RootNamespace = OpenArchival.Blazor
@@ -193,6 +190,10 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/CustomComponents/HomePageButtons.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDdXN0b21Db21wb25lbnRzXEhvbWVQYWdlQnV0dG9ucy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/Layout/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
@@ -209,10 +210,6 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBdXRoLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/Pages/Counter.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/Pages/Error.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
@@ -225,10 +222,6 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xVc2VyTG9nZ2luZ1xDb21wb25lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/Pages/Weather.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Vincent/Documents/dev/Open-Archival/OpenArchival.Blazor/Components/Routes.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =

View File

@@ -1,22 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.AdminPages")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.AdminPages.Shared")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.ArchiveDisplay")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.ArtifactGroupingDisplay")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.Blog")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("OpenArchival.Blazor.CustomComponents")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -1 +1 @@
77d9536651a9bcdc47c459d5dc5f678741c19e89d2496efacebf978f1163b84b
f522c25277d963a0d32a5cb983090f035022fb8b6337cf0205443de90a66ec41

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