This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new 8dfb4eb713 Update property doc generation for website 8dfb4eb713 is described below commit 8dfb4eb71351b856a398db7d0f75b8ddda85ce3a Author: Christopher Tubbs <ctubb...@apache.org> AuthorDate: Mon Dec 18 18:54:55 2023 -0500 Update property doc generation for website * Update generated docs code to produce files appropriate for current website documentation for 2.x and 3.x * Use "(2.x)" or "(3.x)" and ensure the order is correct, and 3.x docs have the "3" on the end of the filename --- .../main/java/org/apache/accumulo/core/conf/ClientConfigGenerate.java | 2 +- .../main/java/org/apache/accumulo/core/conf/ConfigurationDocGen.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/conf/ClientConfigGenerate.java b/core/src/main/java/org/apache/accumulo/core/conf/ClientConfigGenerate.java index d4d01d0786..0cd21758b1 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/ClientConfigGenerate.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/ClientConfigGenerate.java @@ -86,7 +86,7 @@ public class ClientConfigGenerate { @Override void pageHeader() { doc.println("---"); - doc.println("title: Client Properties"); + doc.println("title: Client Properties (2.x)"); doc.println("category: configuration"); doc.println("order: 3"); doc.println("---\n"); diff --git a/core/src/main/java/org/apache/accumulo/core/conf/ConfigurationDocGen.java b/core/src/main/java/org/apache/accumulo/core/conf/ConfigurationDocGen.java index 74e1bc58dd..51a6e24732 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/ConfigurationDocGen.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/ConfigurationDocGen.java @@ -62,9 +62,9 @@ public class ConfigurationDocGen { void pageHeader() { doc.println("---"); - doc.println("title: Server Properties"); + doc.println("title: Server Properties (2.x)"); doc.println("category: configuration"); - doc.println("order: 4"); + doc.println("order: 5"); doc.println("---\n"); doc.println("<!-- WARNING: Do not edit this file. It is a generated file" + " that is copied from Accumulo build (from core/target/generated-docs) -->\n");