You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@solr.apache.org by GitBox <gi...@apache.org> on 2022/02/13 17:02:49 UTC

[GitHub] [solr] uschindler opened a new pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

uschindler opened a new pull request #631:
URL: https://github.com/apache/solr/pull/631


   See https://issues.apache.org/jira/browse/SOLR-15556?focusedCommentId=17491611&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17491611


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1039190301


   > These are supposed to be fine on Windows, though.
   
   Unfortunately no, to use symlinks in Windows 10, you need multiple stuff and it is not working out of box:
   - You need to enable Windows 10 developer mode. If you do this, also users are allowed to create symlinks, otherwise you need admin privileges. On the Jnekins server this is by default the case, this is why it works there.
   - When checking out the repository you have to pass command line parameters to "enable symlinks". Usual tools like TortoiseGit (I use that, does not do this). A global config property does not work, as GIT requires the property to be passed always when checking out. Once you have the checkout it works. But if you have no developer mode or admin access (and klick on the UAC prompt) it breaks again. So this is a pain! Microsoft misdesigned symlinks, because they were afraid of bad things done with them (like you place a symlink there pointing to temp directory with some häckidihickhack malware and nowbody would notice). So without developer mode and some extra settings and also extra command line options (because Git people did not want the git client to be forcefully executed with admin rights, so you need to opt-in) your hopeless.
   
   My proposal would be to have:
   - a simple list of files in the example directories
   - possibly a a "gitignore *.java" file in each
   - a Gradle build step that reads the file and copies the files over to the examples directory. The good thing with that: symlinks get quickly out of sync because nothing checks that they are still valid. The gradle task would fail if the example file was moved away and symlink not updated.
   
   Ideally the copied files would be below some build/examplefiles folder (if thats pssible the gitignore would not be needed)!
   
   Uwe
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038279478


   This still has a problem with the source_url, because on WIndows it does not start with "/". We need to convert it to a real URL instead of a plain file system path.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038290447


   I fixed the link to the Solr Javadocs page, it was not related to source_url, but extraArgs passed to NPN:
   
   ```groovy
     "--attribute", "page-solr-javadocs=${project(':solr:documentation').docroot.toURI().toASCIIString()}",
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038366508


   Oh, Windows does not allow symlinks, so in the git checkout are just files that contain the file name. No symlink.
   
   Why the hell do we have symlinks in the git checkout? Not even Github can display them: https://github.com/apache/solr/blob/main/solr/solr-ref-guide/modules/deployment-guide/examples/UsingSolrJRefGuideExamplesTest.java
   
   On my local window checkout files look exactly like this. Wouldn't it be better to copy the files on build to a temporary "examples" folder?
   
   I will open a separate issue, this looks like a problem with GIT.
   
   I will merge this PR to fix the build. I don't care about broken examples when building the refguide with windows.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038290447


   I fixed the link to the Solr Javadocs page, it was not related to source_url, but extraArgs passed to NPN. The link must be a valid URL, not some FS path.
   
   ```groovy
   "--attribute", "page-solr-javadocs=${project(':solr:documentation').docroot.toURI().toASCIIString()}",
   ```
   
   Now the link checker passes.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1039190301


   > These are supposed to be fine on Windows, though.
   
   Unfortunately no, to use symlinks in Windows 10, you need multiple stuff and it is not working out of box:
   - You need to enable Windows 10 developer mode. If you do this, also users are allowed to create symlinks, otherwise you need admin privileges. On the Jnekins server this is by default the case, this is why it works there.
   - When checking out the repository you have to pass command line parameters to "enable symlinks". Usual tools like TortoiseGit (I use that), do not do this. This leads to symlinks checked out as plain text files with the target path as file contents. A global config property does not work, as GIT requires the property to be passed always and explicit when checking out (so GUI users like I am are out). Once you have the checkout, it works somehow. But if you have no developer mode or admin access (and klick on the UAC prompt) it breaks again. So this is a pain! Microsoft misdesigned symlinks, because they were afraid of bad things done with them (like you place a symlink there pointing to temp directory with some häckidihickhack malware and nowbody would notice). So without developer mode and some extra settings and also extra command line options (because Git people did not want the git client to be forcefully executed with admin rights, so you need to opt-in) your hopeless.
   
   My proposal would be to have:
   - a simple list of files in the example directories
   - possibly a a "gitignore *.java" file in each
   - a Gradle build step that reads the file and copies the files over to the examples directory. The good thing with that: symlinks get quickly out of sync because nothing checks that they are still valid. The gradle task would fail if the example file was moved away and symlink not updated.
   
   Ideally the copied files would be below some build/examplefiles folder (if thats pssible the gitignore would not be needed)!
   
   Uwe
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038279478


   This still has a problem with the source_url, because on WIndows it does not start with "/". We need to convert it to a real URL instead of a plain file system path.
   
   Without that the link checker also breaks on Windows.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] ctargett commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
ctargett commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1039163795


   > Why the hell do we have symlinks in the git checkout?
   
   There are code examples in the Ref Guide which are from real tests, and these live in the source tree where tests belong. Antora is limited to only working with files which exist in its source tree (everything under where the `playbook.yaml` lives). Antora itself suggests using symlinks for this use case (https://docs.antora.org/antora/latest/symlinks). These are supposed to be fine on Windows, though.
   
   I'm not sure if a temp copy during the build is a better solution? The current solution is one I understood how to do, so I went with it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038291525


   While building the site on Windows it still produces a load of warnings in JSON format:
   
   Mainly messages like this: `"msg":"tag 'solrj-json-query-macro-expansion' not found in include file"`
   
   ```
   > Task :solr:solr-ref-guide:buildLocalAntoraSite
   {"level":"warn","time":1644773762720,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":142},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-baseurl' not found in include file"}
   {"level":"warn","time":1644773762725,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":150},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-zookeepernoroot' not found in include file"}
   {"level":"warn","time":1644773762727,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":155},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-zookeeperroot' not found in include file"}
   {"level":"warn","time":1644773762733,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":165},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-solrclient-timeouts' not found in include file"}
   {"level":"warn","time":1644773762738,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":193},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-with-raw-solrparams' not found in include file"}
   {"level":"warn","time":1644773762741,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":201},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-with-solrquery' not found in include file"}
   {"level":"warn","time":1644773762745,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":213},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-index-with-raw-solrinputdoc' not found in include file"}
   {"level":"warn","time":1644773762750,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":232},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-techproduct-value-type' not found in include file"}
   {"level":"warn","time":1644773762753,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":239},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-index-bean-value-type' not found in include file"}
   {"level":"warn","time":1644773762756,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":246},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-bean-value-type' not found in include file"}
   {"level":"warn","time":1644773762760,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":259},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-other-apis' not found in include file"}
   {"level":"warn","time":1644773763426,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\ZkConfigFilesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\zookeeper-file-management.adoc","line":66},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'zk-configset-upload' not found in include file"}
   {"level":"warn","time":1644773766259,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\examples\\IndexingNestedDocuments.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\pages\\indexing-nested-documents.adoc","line":216},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'nest-path' not found in include file"}
   {"level":"warn","time":1644773766281,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\examples\\IndexingNestedDocuments.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\pages\\indexing-nested-documents.adoc","line":410},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'anon-kids' not found in include file"}
   {"level":"warn","time":1644773769235,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":70},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-simple-terms-facet' not found in include file"}
   {"level":"warn","time":1644773769242,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":128},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-1' not found in include file"}
   {"level":"warn","time":1644773769250,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":185},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-terms-facet-2' not found in include file"}
   {"level":"warn","time":1644773769265,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":261},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769269,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":297},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-facet-expanded' not found in include file"}
   {"level":"warn","time":1644773769274,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":345},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-range-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769298,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiHeatmapFacetingTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":543},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-heatmap-facet-1' not found in include file"}
   {"level":"warn","time":1644773769309,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":623},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769313,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":663},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-expanded' not found in include file"}
   {"level":"warn","time":1644773769321,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":708},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-simple-terms-facet' not found in include file"}
   {"level":"warn","time":1644773769326,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":751},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-nested-cat-facet' not found in include file"}
   {"level":"warn","time":1644773769332,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":817},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-nested-cat-facet-sorted' not found in include file"}
   {"level":"warn","time":1644773769404,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":68},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-filtered-domain' not found in include file"}
   {"level":"warn","time":1644773769410,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":159},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-excludetags-domain' not found in include file"}
   {"level":"warn","time":1644773769417,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":206},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-query-domain' not found in include file"}
   {"level":"warn","time":1644773769447,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":58},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-basic' not found in include file"}
   {"level":"warn","time":1644773769451,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":83},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-1' not found in include file"}
   {"level":"warn","time":1644773769455,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":108},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-2' not found in include file"}
   {"level":"warn","time":1644773769458,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":138},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-3' not found in include file"}
   {"level":"warn","time":1644773769463,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":168},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-basic' not found in include file"}
   {"level":"warn","time":1644773769466,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":199},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-dsl-1' not found in include file"}
   {"level":"warn","time":1644773769470,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":234},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-dsl-2' not found in include file"}
   {"level":"warn","time":1644773769474,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":273},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool' not found in include file"}
   {"level":"warn","time":1644773769478,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":306},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool-condensed' not found in include file"}
   {"level":"warn","time":1644773769483,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":366},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool-filter' not found in include file"}
   {"level":"warn","time":1644773769489,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":441},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-tagged-query' not found in include file"}
   {"level":"warn","time":1644773769520,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":44},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-simple' not found in include file"}
   {"level":"warn","time":1644773769525,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":84},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-param-overrides' not found in include file"}
   {"level":"warn","time":1644773769530,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":111},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-param-overrides-equivalent' not found in include file"}
   {"level":"warn","time":1644773769534,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":135},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-all-query-params' not found in include file"}
   {"level":"warn","time":1644773769538,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":169},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-all-query-params-equivalent' not found in include file"}
   {"level":"warn","time":1644773769544,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":237},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-params-block' not found in include file"}
   {"level":"warn","time":1644773769551,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":276},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-macro-expansion' not found in include file"}
   
   > Task :solr:solr-ref-guide:buildLocalSite
   The generated local ref-guide can be found at:
           C:\Users\Uwe Schindler\Projects\lucene\solr\solr\solr-ref-guide\build/site/index.html
   ```
   
   But the link checker passes. Is this OK @ctargett ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler merged pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler merged pull request #631:
URL: https://github.com/apache/solr/pull/631


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038366508


   Oh, Windows does not allow symlinks, so in the git checkout are just files that contain the file name. No symlink.
   
   Why the hell do we have symlinks in the git checkout? Not even Github can display them: https://github.com/apache/solr/blob/main/solr/solr-ref-guide/modules/deployment-guide/examples/UsingSolrJRefGuideExamplesTest.java
   
   On my local window checkout files look exactly like this. Wouldn't it be better to copy the files on build to a temporary "examples" folder?
   
   I will open a separate issue, this looks like a problem with GIT.
   
   I will merge this PR to fi the build. I don't care about broken examples when building the refguide with windows.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038354645


   Ah I know where this comes from... I am looking for a fix. In short: All the example java files only contain the target path of the file. On linux the contents are there.
   
   How is `build/site-staging/.../examples/*.java` generated?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler edited a comment on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler edited a comment on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038279478






-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler merged pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler merged pull request #631:
URL: https://github.com/apache/solr/pull/631


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038279478






-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org


[GitHub] [solr] uschindler commented on pull request #631: Fix escaping in playbook/antora templates: Use single quotes and escape all single quotes by duplicating them

Posted by GitBox <gi...@apache.org>.
uschindler commented on pull request #631:
URL: https://github.com/apache/solr/pull/631#issuecomment-1038291525


   While building the site on Windows it still produces a load of warnings in JSON format:
   
   ```
   > Task :solr:solr-ref-guide:buildLocalAntoraSite
   {"level":"warn","time":1644773762720,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":142},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-baseurl' not found in include file"}
   {"level":"warn","time":1644773762725,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":150},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-zookeepernoroot' not found in include file"}
   {"level":"warn","time":1644773762727,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":155},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-cloudsolrclient-zookeeperroot' not found in include file"}
   {"level":"warn","time":1644773762733,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":165},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-solrclient-timeouts' not found in include file"}
   {"level":"warn","time":1644773762738,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":193},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-with-raw-solrparams' not found in include file"}
   {"level":"warn","time":1644773762741,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":201},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-with-solrquery' not found in include file"}
   {"level":"warn","time":1644773762745,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":213},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-index-with-raw-solrinputdoc' not found in include file"}
   {"level":"warn","time":1644773762750,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":232},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-techproduct-value-type' not found in include file"}
   {"level":"warn","time":1644773762753,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":239},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-index-bean-value-type' not found in include file"}
   {"level":"warn","time":1644773762756,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":246},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-query-bean-value-type' not found in include file"}
   {"level":"warn","time":1644773762760,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\UsingSolrJRefGuideExamplesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\solrj.adoc","line":259},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-other-apis' not found in include file"}
   {"level":"warn","time":1644773763426,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\examples\\ZkConfigFilesTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\deployment-guide\\pages\\zookeeper-file-management.adoc","line":66},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'zk-configset-upload' not found in include file"}
   {"level":"warn","time":1644773766259,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\examples\\IndexingNestedDocuments.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\pages\\indexing-nested-documents.adoc","line":216},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'nest-path' not found in include file"}
   {"level":"warn","time":1644773766281,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\examples\\IndexingNestedDocuments.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\indexing-guide\\pages\\indexing-nested-documents.adoc","line":410},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'anon-kids' not found in include file"}
   {"level":"warn","time":1644773769235,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":70},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-simple-terms-facet' not found in include file"}
   {"level":"warn","time":1644773769242,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":128},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-1' not found in include file"}
   {"level":"warn","time":1644773769250,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":185},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-terms-facet-2' not found in include file"}
   {"level":"warn","time":1644773769265,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":261},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769269,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":297},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-facet-expanded' not found in include file"}
   {"level":"warn","time":1644773769274,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":345},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-range-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769298,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiHeatmapFacetingTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":543},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-heatmap-facet-1' not found in include file"}
   {"level":"warn","time":1644773769309,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":623},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-simple' not found in include file"}
   {"level":"warn","time":1644773769313,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":663},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-metrics-facet-expanded' not found in include file"}
   {"level":"warn","time":1644773769321,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":708},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-simple-terms-facet' not found in include file"}
   {"level":"warn","time":1644773769326,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":751},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-nested-cat-facet' not found in include file"}
   {"level":"warn","time":1644773769332,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-facet-api.adoc","line":817},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-nested-cat-facet-sorted' not found in include file"}
   {"level":"warn","time":1644773769404,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":68},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-filtered-domain' not found in include file"}
   {"level":"warn","time":1644773769410,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":159},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-excludetags-domain' not found in include file"}
   {"level":"warn","time":1644773769417,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-faceting-domain-changes.adoc","line":206},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-query-domain' not found in include file"}
   {"level":"warn","time":1644773769447,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":58},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-basic' not found in include file"}
   {"level":"warn","time":1644773769451,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":83},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-1' not found in include file"}
   {"level":"warn","time":1644773769455,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":108},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-2' not found in include file"}
   {"level":"warn","time":1644773769458,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":138},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-dsl-3' not found in include file"}
   {"level":"warn","time":1644773769463,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":168},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-basic' not found in include file"}
   {"level":"warn","time":1644773769466,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":199},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-dsl-1' not found in include file"}
   {"level":"warn","time":1644773769470,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":234},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-boosted-dsl-2' not found in include file"}
   {"level":"warn","time":1644773769474,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":273},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool' not found in include file"}
   {"level":"warn","time":1644773769478,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":306},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool-condensed' not found in include file"}
   {"level":"warn","time":1644773769483,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":366},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-ipod-query-bool-filter' not found in include file"}
   {"level":"warn","time":1644773769489,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-query-dsl.adoc","line":441},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-tagged-query' not found in include file"}
   {"level":"warn","time":1644773769520,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":44},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-simple' not found in include file"}
   {"level":"warn","time":1644773769525,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":84},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-param-overrides' not found in include file"}
   {"level":"warn","time":1644773769530,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":111},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-param-overrides-equivalent' not found in include file"}
   {"level":"warn","time":1644773769534,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":135},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-all-query-params' not found in include file"}
   {"level":"warn","time":1644773769538,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":169},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-facet-all-query-params-equivalent' not found in include file"}
   {"level":"warn","time":1644773769544,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":237},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-params-block' not found in include file"}
   {"level":"warn","time":1644773769551,"name":"asciidoctor","file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\examples\\JsonRequestApiTest.java"},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"},"stack":[{"file":{"path":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr\\solr\\solr-ref-guide\\build\\site-staging\\modules\\query-guide\\pages\\json-request-api.adoc","line":276},"source":{"url":"https://gitbox.apache.org/repos/asf/solr.git","worktree":"C:\\Users\\Uwe Schindler\\Projects\\lucene\\solr","refname":"jira/SOLR-15556-escaping","startPath":"solr/solr-ref-guide/build/site-staging"}}],"msg":"tag 'solrj-json-query-macro-expansion' not found in include file"}
   
   > Task :solr:solr-ref-guide:buildLocalSite
   The generated local ref-guide can be found at:
           C:\Users\Uwe Schindler\Projects\lucene\solr\solr\solr-ref-guide\build/site/index.html
   ```
   
   But the link checker passes. Is this OK @ctargett ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org