├── PlanetaryDocs
├── Shared
│ ├── DisabledNavLink.razor.css
│ ├── DocHistory.razor.css
│ ├── HtmlPreview.razor
│ ├── DisabledNavLink.razor
│ ├── Loading.razor
│ ├── MultiLineEdit.razor
│ ├── ValidatedInput.razor.css
│ ├── Editor.razor.css
│ ├── Saving.razor
│ ├── TagSearch.razor
│ ├── AliasSearch.razor
│ ├── AutoComplete.razor.css
│ ├── HtmlPreview.razor.css
│ ├── MainLayout.razor
│ ├── AutoComplete.razor
│ ├── EditBar.razor
│ ├── ValidatedInput.razor
│ ├── TagPicker.razor
│ ├── NavMenu.razor.css
│ ├── DocHistory.razor
│ ├── MainLayout.razor.css
│ ├── NavMenu.razor
│ ├── EditBarBase.cs
│ ├── TagSearchBase.cs
│ ├── DocHistoryBase.cs
│ ├── HtmlPreviewBase.cs
│ ├── AliasSearchBase.cs
│ ├── MultiLineEditBase.cs
│ ├── TagPickerBase.cs
│ ├── NavMenuBase.cs
│ ├── Editor.razor
│ └── ValidatedInputBase.cs
├── wwwroot
│ ├── favicon.ico
│ ├── images
│ │ └── m42hubble.jpg
│ ├── css
│ │ ├── open-iconic
│ │ │ ├── font
│ │ │ │ └── fonts
│ │ │ │ │ ├── open-iconic.eot
│ │ │ │ │ ├── open-iconic.otf
│ │ │ │ │ ├── open-iconic.ttf
│ │ │ │ │ └── open-iconic.woff
│ │ │ ├── ICON-LICENSE
│ │ │ ├── README.md
│ │ │ └── FONT-LICENSE
│ │ └── site.css
│ └── js
│ │ ├── titleService.js
│ │ └── markdownExtensions.js
├── Pages
│ ├── View.razor.css
│ ├── Index.razor.css
│ ├── Add.razor
│ ├── ErrorModel.cs
│ ├── _Host.cshtml
│ ├── Edit.razor
│ ├── Error.cshtml
│ ├── AddBase.cs
│ ├── View.razor
│ ├── Index.razor
│ ├── ViewBase.cs
│ └── EditBase.cs
├── appsettings.Development.json
├── App.razor
├── _Imports.razor
├── appsettings.json
├── PlanetaryDocs.csproj
├── Services
│ ├── KeyNames.cs
│ ├── HistoryService.cs
│ ├── TitleService.cs
│ ├── NavigationHelper.cs
│ ├── MultiLineEditService.cs
│ └── LoadingService.cs
├── Properties
│ └── launchSettings.json
├── CosmosSettings.cs
├── Program.cs
└── Startup.cs
├── Tests
├── Directory.Build.props
└── DomainTests
│ ├── ValidationStateTests.cs
│ ├── DomainTests.csproj
│ ├── AuthorTests.cs
│ ├── TagTests.cs
│ ├── DocumentTests.cs
│ ├── DocumentAuditTests.cs
│ ├── DocumentSummaryTests.cs
│ └── DocumentAuditSummaryTests.cs
├── PlanetaryDocs.Domain
├── PlanetaryDocs.Domain.csproj
├── IDocSummaries.cs
├── ValidationState.cs
├── Author.cs
├── Tag.cs
├── DocumentAudit.cs
├── DocumentSummary.cs
├── Document.cs
├── DocumentAuditSummary.cs
└── IDocumentService.cs
├── version.json
├── stylecop.json
├── PlanetaryDocs.DataAccess
└── PlanetaryDocs.DataAccess.csproj
├── PlanetaryDocsLoader
├── PlanetaryDocsLoader.csproj
├── Program.cs
├── FileSystemParser.cs
└── MarkdownParser.cs
├── .github
├── PULL_REQUEST_TEMPLATE.md
├── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
└── workflows
│ ├── tests.yml
│ └── dotnet.yml
├── LICENSE
├── Directory.Build.props
├── .gitattributes
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md
├── PlanetaryDocs.sln
├── README.md
└── .editorconfig
/PlanetaryDocs/Shared/DisabledNavLink.razor.css:
--------------------------------------------------------------------------------
1 | a:hover {
2 | cursor: not-allowed;
3 | }
--------------------------------------------------------------------------------
/Tests/Directory.Build.props:
--------------------------------------------------------------------------------
1 |
Sorry, there's nothing at this address.
8 |await SetSelectionAsync(result)">@result
31 | } 32 | } 33 |@Validation.Message
33 |
25 | Request ID: @Model.RequestId
26 |
31 | Swapping to the Development environment displays detailed information about the error that occurred. 32 |
33 |34 | The Development environment shouldn't be enabled for deployed applications. 35 | It can result in displaying sensitive information from exceptions to end users. 36 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 37 | and restarting the app. 38 |
39 |