You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/03/17 00:45:47 UTC

[incubator-datasketches-website] 01/01: added CPC sketch to navigation

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch cpc_nav
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-website.git

commit 1045e1bdd2cc91bbd06d60365037d4f03cda5c45
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Mon Mar 16 17:45:25 2020 -0700

    added CPC sketch to navigation
---
 _includes/toc.html                 | 20 +++++++++++++++++++-
 docs/LargeScale.md                 |  6 +++---
 src/main/resources/docgen/toc.json | 14 ++++++++++++++
 3 files changed, 36 insertions(+), 4 deletions(-)

diff --git a/_includes/toc.html b/_includes/toc.html
index c916bcc..7a833e4 100644
--- a/_includes/toc.html
+++ b/_includes/toc.html
@@ -49,6 +49,23 @@
       <li><a href="{{site.docs_dir}}/DistinctCountFeaturesMatrix.html">Features Matrix</a></li>
       <li><a href="{{site.docs_dir}}/DistinctCountMeritComparisons.html">Figures-of-Merit Comparison</a></li>
 
+      <p id="cpc-sketches">
+        <a data-toggle="collapse" class="menu collapsed" href="#collapse_cpc_sketches">CPC Sketches</a>
+      </p>
+      <div class="collapse" id="collapse_cpc_sketches">
+        <li><a href="{{site.docs_dir}}/CPC/CPC.html">CPC Sketch</a></li>
+
+        <p id="cpc-examples">
+          <a data-toggle="collapse" class="menu collapsed" href="#collapse_cpc_examples">CPC Examples</a>
+        </p>
+        <div class="collapse" id="collapse_cpc_examples">
+          <li><a href="{{site.docs_dir}}/CPC/CpcJavaExample.html">CPC Sketch Java Example</a></li>
+          <li><a href="{{site.docs_dir}}/CPC/CpcCppExample.html">CPC Sketch C++ Example</a></li>
+          <li><a href="{{site.docs_dir}}/CPC/CpcPigExample.html">CPC Sketch Pig UDFs</a></li>
+          <li><a href="{{site.docs_dir}}/CPC/CpcHiveExample.html">CPC Sketch Hive UDFs</a></li>
+        </div>
+      </div>
+
       <p id="hyperloglog-sketches">
         <a data-toggle="collapse" class="menu collapsed" href="#collapse_hyperloglog_sketches">HyperLogLog Sketches</a>
       </p>
@@ -276,4 +293,5 @@
     <li><a href="{{site.docs_dir}}/Community/Research.html">Research</a></li>
   </div>
 </div>
-<!-- End _includes/toc.html -->
\ No newline at end of file
+<!-- End _includes/toc.html -->
+
diff --git a/docs/LargeScale.md b/docs/LargeScale.md
index ddc23d1..cbcb307 100644
--- a/docs/LargeScale.md
+++ b/docs/LargeScale.md
@@ -41,12 +41,12 @@ layout: doc_page
 
 ### Integration for Hive, Pig, Druid and Spark
 
-* <a href="https://github.com/apache/incubator-datasketches-hive">Hadoop / Hive Adaptors</a>.
+* <a href="https://github.com/apache/incubator-datasketches-hive">Apache Hive Adaptors</a>.
   
-* <a href="https://github.com/apache.incubator-datasketches-pig">Hadoop / Pig Adaptors</a>.
+* <a href="https://github.com/apache.incubator-datasketches-pig">Apache Pig Adaptors</a>.
   
 * <a href="https://github.com/apache/druid/tree/master/extensions-core/datasketches">Druid Adaptors</a>.
-  * For documentation navigate to <i>druid.io/docs/latest/development/extensions-core/datasketches-aggregators.html</i>
+  * For documentation see <a href="https://druid.apache.org/docs/latest/development/extensions-core/datasketches-extension.html">Druid Datasketches extension</a>
   
 * <a href="{{site.docs_dir}}/Theta/ThetaSparkExample.html">Spark Examples</a> 
 
diff --git a/src/main/resources/docgen/toc.json b/src/main/resources/docgen/toc.json
index 9540932..88099d8 100644
--- a/src/main/resources/docgen/toc.json
+++ b/src/main/resources/docgen/toc.json
@@ -37,6 +37,20 @@
             {"class":"Doc",  "desc" : "Features Matrix",             "dir" : "", "file": "DistinctCountFeaturesMatrix" },
             {"class":"Doc",  "desc" : "Figures-of-Merit Comparison", "dir" : "", "file": "DistinctCountMeritComparisons"},
             
+            { "class":"Dropdown", "desc" : "CPC Sketches", "array":
+              [
+                {"class":"Doc",  "desc" : "CPC Sketch",                               "dir" : "CPC", "file": "CPC" },
+                { "class":"Dropdown", "desc" : "CPC Examples", "array":
+                  [
+                    {"class":"Doc",  "desc" : "CPC Sketch Java Example",              "dir" : "CPC", "file": "CpcJavaExample" },
+                    {"class":"Doc",  "desc" : "CPC Sketch C++ Example",               "dir" : "CPC", "file": "CpcCppExample" },
+                    {"class":"Doc",  "desc" : "CPC Sketch Pig UDFs",                  "dir" : "CPC", "file": "CpcPigExample" },
+                    {"class":"Doc",  "desc" : "CPC Sketch Hive UDFs",                 "dir" : "CPC", "file": "CpcHiveExample" }
+                  ]
+                },
+              ]
+            },
+    
             { "class":"Dropdown", "desc" : "HyperLogLog Sketches", "array":
               [
                 {"class":"Doc",  "desc" : "HLL Sketch",                               "dir" : "HLL", "file": "HLL" },


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org