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

mwalch pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 9beeee4  Jekyll build from master:9729b41
9beeee4 is described below

commit 9beeee4bc3343d45755cbf8f15ddd986ea845cbf
Author: Mike Walch <[email protected]>
AuthorDate: Tue Jul 10 16:06:50 2018 -0400

    Jekyll build from master:9729b41
    
    Simplified custom liquid tags and created documentation (#94)
---
 README.md                                       | 14 ++++++++++++++
 docs/2.0/administration/caching.html            |  2 +-
 docs/2.0/administration/monitoring-metrics.html |  2 +-
 docs/2.0/administration/ssl.html                |  4 ++--
 docs/2.0/development/summaries.html             |  2 +-
 docs/2.0/troubleshooting/performance.html       |  2 +-
 feed.xml                                        |  4 ++--
 search_data.json                                |  2 +-
 8 files changed, 23 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 8db6b0e..fcbb75d 100644
--- a/README.md
+++ b/README.md
@@ -72,5 +72,19 @@ the given file into your `.git/hook` directory:
 
     cp ./_devtools/git-hooks/post-commit .git/hooks/
 
+## Custom liquid tags
+
+Custom liquid tags are used to make linking to javadocs, properties, and 
documents easier.
+The source for these tags is at [_plugins/links.rb](_plugins/links.rb).
+
+| Tag   | Description            | Options                                     
                                    | Examples                                  
           | 
+| ----- | ---------------------- | 
------------------------------------------------------------------------------- 
| ---------------------------------------------------- |
+| jlink | Creates Javadoc link   | Link text will be class name by default. 
Use `-f` for full package + class name | `{% jlink -f 
org.apache.accumulo.core.client.Connector %}` |
+| jurl  | Creates Javadoc URL    | None                                        
                                    | `{% jurl 
org.apache.accumulo.core.client.Connector %}`     |
+| plink | Creates Property link  | Assumes server property by default. Use 
`-c` to link to client properties       | `{% plink -c instance.name %}`        
                     |
+| purl  | Creates Property URL   | Default is servery property. Use `-c` to 
link to client properties              | `{% plink instance.volumes %}`         
                    |
+| dlink | Creates Documentation link | None                                    
                                        | `{% dlink getting-stared/clients %}`  
                 |
+| durl  | Creates Documentation URL  | None                                    
                                        | `{% durl troubleshooting/performance 
%}`                   |
+
 [Jekyll]: https://jekyllrb.com/
 [Bundler]: https://bundler.io/
diff --git a/docs/2.0/administration/caching.html 
b/docs/2.0/administration/caching.html
index 873468d..d1badac 100644
--- a/docs/2.0/administration/caching.html
+++ b/docs/2.0/administration/caching.html
@@ -377,7 +377,7 @@ their defaults by setting the following properties:</p>
 
 <ul>
   <li><a 
href="/docs/2.0/administration/properties#tserver_cache_data_size">tserver.cache.data.size</a></li>
-  <li><a 
href="/docs/2.0/administration/properties#tserver_cache_data_size">tserver.cache.index.size</a></li>
+  <li><a 
href="/docs/2.0/administration/properties#tserver_cache_index_size">tserver.cache.index.size</a></li>
 </ul>
 
 
diff --git a/docs/2.0/administration/monitoring-metrics.html 
b/docs/2.0/administration/monitoring-metrics.html
index 595600b..0542375 100644
--- a/docs/2.0/administration/monitoring-metrics.html
+++ b/docs/2.0/administration/monitoring-metrics.html
@@ -379,7 +379,7 @@ is strongly recommended that the Monitor is not exposed to 
any publicly-accessib
 
 <ul>
   <li><a 
href="/docs/2.0/administration/properties#monitor_ssl_keyStore">monitor.ssl.keyStore</a></li>
-  <li><a 
href="/docs/2.0/administration/properties#monitor_ssl_keystorePassword">monitor.ssl.keyStorePassword</a></li>
+  <li><a 
href="/docs/2.0/administration/properties#monitor_ssl_keyStorePassword">monitor.ssl.keyStorePassword</a></li>
   <li><a 
href="/docs/2.0/administration/properties#monitor_ssl_trustStore">monitor.ssl.trustStore</a></li>
   <li><a 
href="/docs/2.0/administration/properties#monitor_ssl_trustStorePassword">monitor.ssl.trustStorePassword</a></li>
 </ul>
diff --git a/docs/2.0/administration/ssl.html b/docs/2.0/administration/ssl.html
index 86d782c..0e52159 100644
--- a/docs/2.0/administration/ssl.html
+++ b/docs/2.0/administration/ssl.html
@@ -375,7 +375,7 @@ these files already exist.</p>
 </ul>
 
 <p>Optionally, SSL client-authentication (two-way SSL) can also be enabled by 
setting
-<code class="highlighter-rouge">instance.rpc.ssl.clientAuth=true</code> in 
<code class="highlighter-rouge">accumulo-site.xml</code>.
+<a 
href="/docs/2.0/administration/properties#instance_rpc_ssl_clientAuth">instance.rpc.ssl.clientAuth</a>
 <code class="highlighter-rouge">true</code> in <code 
class="highlighter-rouge">accumulo-site.xml</code>.
 This requires that each client has access to  valid certificate to set up a 
secure connection
 to the servers. By default, Accumulo uses one-way SSL which does not require 
clients to have
 their own certificate.</p>
@@ -393,7 +393,7 @@ the properties to connect to an Accumulo instance using 
SSL:</p>
   <li><a 
href="/docs/2.0/development/client-properties#ssl_truststore_password">ssl.truststore.password</a></li>
 </ul>
 
-<p>If two-way SSL is enabled for the Accumulo instance (by setting <a 
href="/docs/2.0/administration/properties#instance_rpc_ssl_clientAuth">instance.rpc.ssl.clientAuth</a>
 to <code class="highlighter-rouge">true</code> in <code 
class="highlighter-rouge">accumulo-site.xml</code>),
+<p>If two-way SSL is enabled for the Accumulo instance (by setting 
[instance.rpc.ssl.clientAuth] to <code class="highlighter-rouge">true</code> in 
<code class="highlighter-rouge">accumulo-site.xml</code>),
 Accumulo clients must also define their own certificate by setting the 
following properties:</p>
 
 <ul>
diff --git a/docs/2.0/development/summaries.html 
b/docs/2.0/development/summaries.html
index 588b5f3..dc458aa 100644
--- a/docs/2.0/development/summaries.html
+++ b/docs/2.0/development/summaries.html
@@ -386,7 +386,7 @@ information.</p>
   <li><a 
href="/docs/2.0/administration/properties#tserver_cache_summary_size">tserver.cache.summary.size</a></li>
   <li><a 
href="/docs/2.0/administration/properties#tserver_summary_partition_threads">tserver.summary.partition.threads</a></li>
   <li><a 
href="/docs/2.0/administration/properties#tserver_summary_remote_threads">tserver.summary.remote.threads</a></li>
-  <li><a 
href="/docs/2.0/administration/properties#tserver_summary_retreival_threads">tserver.summary.retrieval.threads</a></li>
+  <li><a 
href="/docs/2.0/administration/properties#tserver_summary_retrieval_threads">tserver.summary.retrieval.threads</a></li>
   <li><a 
href="/docs/2.0/administration/properties#table_summarizer_prefix">table.summarizer.*</a></li>
   <li><a 
href="/docs/2.0/administration/properties#table_file_summary_maxSize">table.file.summary.maxSize</a></li>
 </ul>
diff --git a/docs/2.0/troubleshooting/performance.html 
b/docs/2.0/troubleshooting/performance.html
index b0ea382..19ad771 100644
--- a/docs/2.0/troubleshooting/performance.html
+++ b/docs/2.0/troubleshooting/performance.html
@@ -370,7 +370,7 @@ the tree.</p>
 which can slow ingest.</p>
   </li>
   <li>
-    <p><a 
href="/docs/2.0//getting-started/table_configuration#pre-splitting-tables">Pre-split
 new tables</a> to distribute writes across multiple tablet servers.</p>
+    <p><a 
href="/docs/2.0/getting-started/table_configuration#pre-splitting-tables">Pre-split
 new tables</a> to distribute writes across multiple tablet servers.</p>
   </li>
   <li>
     <p>Ingest data using <a 
href="/docs/2.0/development/high_speed_ingest#multiple-ingest-clients">multiple 
clients</a> or <a 
href="/docs/2.0/development/high_speed_ingest#bulk-ingest">bulk ingest</a> to 
increase ingest throughput.</p>
diff --git a/feed.xml b/feed.xml
index 90e7169..aa818f2 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>https://accumulo.apache.org/</link>
     <atom:link href="https://accumulo.apache.org/feed.xml"; rel="self" 
type="application/rss+xml"/>
-    <pubDate>Tue, 10 Jul 2018 10:36:10 -0400</pubDate>
-    <lastBuildDate>Tue, 10 Jul 2018 10:36:10 -0400</lastBuildDate>
+    <pubDate>Tue, 10 Jul 2018 16:06:42 -0400</pubDate>
+    <lastBuildDate>Tue, 10 Jul 2018 16:06:42 -0400</lastBuildDate>
     <generator>Jekyll v3.7.3</generator>
     
     
diff --git a/search_data.json b/search_data.json
index 224d80c..9f25585 100644
--- a/search_data.json
+++ b/search_data.json
@@ -65,7 +65,7 @@
   
     "docs-2-0-administration-ssl": {
       "title": "SSL",
-      "content"         : "Accumulo, through Thrift’s TSSLTransport, provides 
the ability to encryptwire communication between Accumulo servers and clients 
using securesockets layer (SSL). SSL certificates signed by the same 
certificate authoritycontrol the “circle of trust” in which a secure connection 
can be established.Typically, each host running Accumulo processes would be 
given a certificatewhich identifies itself.Clients can optionally also be given 
a certificate, when client-auth is ena [...]
+      "content"         : "Accumulo, through Thrift’s TSSLTransport, provides 
the ability to encryptwire communication between Accumulo servers and clients 
using securesockets layer (SSL). SSL certificates signed by the same 
certificate authoritycontrol the “circle of trust” in which a secure connection 
can be established.Typically, each host running Accumulo processes would be 
given a certificatewhich identifies itself.Clients can optionally also be given 
a certificate, when client-auth is ena [...]
       "url": " /docs/2.0/administration/ssl",
       "categories": "administration"
     },

Reply via email to