This is an automated email from the ASF dual-hosted git repository. paulirwin pushed a commit to branch issue/911 in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 42120e2e8ab060a371dc426e585a67905c9b7077 Merge: f8c36f080 4278bf966 Author: Paul Irwin <[email protected]> AuthorDate: Sun Sep 15 09:18:30 2024 -0600 Merge nikcio-issue/911-more .../EnvironmentVariableProcessor.cs | 45 ++++++++ .../LuceneDocsPlugins/EnvironmentVariableUtil.cs | 41 ++++--- .../LuceneDocsPlugins/LuceneDfmEngineCustomizer.cs | 124 ++++++++++----------- src/docs/LuceneDocsPlugins/LuceneNoteBlockRule.cs | 82 +++++++------- src/docs/LuceneDocsPlugins/LuceneNoteBlockToken.cs | 74 ++++++------ .../LuceneNoteTokenRendererPart.cs | 90 +++++++-------- src/docs/LuceneDocsPlugins/RendererPartProvider.cs | 72 ++++++------ .../DefaultTemplateNoAssets/partials/_head.liquid | 10 +- .../DefaultTemplateNoAssets/partials/_logo.liquid | 6 +- .../partials/_scripts.liquid | 6 +- .../partials/head.tmpl.partial | 8 +- .../partials/logo.tmpl.partial | 4 +- .../partials/scripts.tmpl.partial | 6 +- .../LuceneTemplate/partials/logo.tmpl.partial | 2 +- websites/apidocs/docfx.analysis-common.json | 10 +- websites/apidocs/docfx.analysis-kuromoji.json | 12 +- websites/apidocs/docfx.analysis-morfologik.json | 14 ++- websites/apidocs/docfx.analysis-opennlp.json | 12 +- websites/apidocs/docfx.analysis-phonetic.json | 14 ++- websites/apidocs/docfx.analysis-smartcn.json | 14 ++- websites/apidocs/docfx.analysis-stempel.json | 14 ++- websites/apidocs/docfx.benchmark.json | 14 ++- websites/apidocs/docfx.classification.json | 14 ++- websites/apidocs/docfx.codecs.json | 16 +-- websites/apidocs/docfx.core.json | 12 +- websites/apidocs/docfx.demo.json | 16 +-- websites/apidocs/docfx.expressions.json | 18 +-- websites/apidocs/docfx.facet.json | 18 +-- websites/apidocs/docfx.global.subsite.json | 17 +-- websites/apidocs/docfx.grouping.json | 18 +-- websites/apidocs/docfx.highlighter.json | 16 +-- websites/apidocs/docfx.icu.json | 12 +- websites/apidocs/docfx.join.json | 16 +-- websites/apidocs/docfx.json | 6 +- websites/apidocs/docfx.memory.json | 16 +-- websites/apidocs/docfx.misc.json | 16 +-- websites/apidocs/docfx.queries.json | 16 +-- websites/apidocs/docfx.queryparser.json | 18 +-- websites/apidocs/docfx.replicator.json | 16 +-- websites/apidocs/docfx.sandbox.json | 18 +-- websites/apidocs/docfx.site.json | 16 ++- websites/apidocs/docfx.spatial.json | 16 +-- websites/apidocs/docfx.suggest.json | 18 +-- websites/apidocs/docfx.test-framework.json | 10 +- websites/apidocs/docs.ps1 | 2 + 45 files changed, 551 insertions(+), 464 deletions(-) diff --cc websites/apidocs/docfx.global.subsite.json index 55a1071a0,30838e720..f08744a58 --- a/websites/apidocs/docfx.global.subsite.json +++ b/websites/apidocs/docfx.global.subsite.json @@@ -1,19 -1,4 +1,4 @@@ { - "_rel": "https://lucenenet.apache.org/docs/4.8.0-beta00009/", + "_rel": "https://lucenenet.apache.org/docs/4.8.0-beta00009", "_api": "https://lucenenet.apache.org/docs/4.8.0-beta00016/" -} +} - - - - - - - - - - - - - - - diff --cc websites/apidocs/docs.ps1 index 21f8ff574,02f667a89..6f0642d18 --- a/websites/apidocs/docs.ps1 +++ b/websites/apidocs/docs.ps1 @@@ -197,9 -197,11 +197,11 @@@ if ($? -and $DisableBuild -eq $false) $DocFxLog = Join-Path -Path $ApiDocsFolder "obj\${proj}.build.log" + Start-Sleep -Seconds 1 + # build the output Write-Host "Building site output for $projFile..." - & docfx build $projFile --log "$DocFxLog" --logLevel $LogLevel --debug --disableGitFeatures + & docfx build $projFile --log "$DocFxLog" --logLevel $LogLevel --debug --maxParallelism 1 # Add the baseUrl to the output xrefmap, see https://github.com/dotnet/docfx/issues/2346#issuecomment-356054027 $projFileJson = Get-Content $projFile | ConvertFrom-Json
