Sync docs from master to gh-pages
This commit is contained in:
File diff suppressed because one or more lines are too long
29
index.html
29
index.html
@@ -115,6 +115,9 @@ $(addBlockSwitches);
|
||||
<div class="paragraph">
|
||||
<p><strong>2.2.0.BUILD-SNAPSHOT</strong></p>
|
||||
</div>
|
||||
<div id="index-link" class="paragraph">
|
||||
<p><a href="http://cloud.spring.io/spring-cloud-stream/" class="bare">http://cloud.spring.io/spring-cloud-stream/</a></p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p>The reference documentation consists of the following sections:</p>
|
||||
</div>
|
||||
@@ -122,34 +125,34 @@ $(addBlockSwitches);
|
||||
<table>
|
||||
<tr>
|
||||
<td class="hdlist1">
|
||||
<a href="spring-cloud-stream.html#spring-cloud-stream-reference">Reference Guide</a>
|
||||
<a href="spring-cloud-stream.html#spring-cloud-stream-reference">Overview</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>Spring Cloud Stream Reference</p>
|
||||
<p>History, Quick Start, Concepts, Architecture Overview, Binder Abstraction, and Core Features</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="hdlist1">
|
||||
<a href="http://cloud.spring.io/spring-cloud-static/spring-cloud-stream-binder-rabbit/2.2.0.BUILD-SNAPSHOT/">Rabbit MQ Binder</a>
|
||||
<a href="http://cloud.spring.io/spring-cloud-stream-binder-rabbit/spring-cloud-stream-binder-rabbit.html">Rabbit MQ Binder</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>Rabbit MQ Binder Reference</p>
|
||||
<p>Spring Cloud Stream binder reference for Rabbit MQ</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="hdlist1">
|
||||
<a href="http://cloud.spring.io/spring-cloud-static/spring-cloud-stream-binder-kafka/2.2.0.BUILD-SNAPSHOT/">Apache Kafka Binder</a>
|
||||
<a href="http://cloud.spring.io/spring-cloud-stream-binder-kafka/spring-cloud-stream-binder-kafka.html">Apache Kafka Binder</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>Apache Kafka Binder Reference</p>
|
||||
<p>Spring Cloud Stream binder reference for Apache Kafka</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="hdlist1">
|
||||
<a href="https://github.com/spring-cloud/spring-cloud-stream-samples/">Spring Cloud Stream Samples</a>
|
||||
<a href="http://cloud.spring.io/spring-cloud-stream-binder-kafka/spring-cloud-stream-binder-kafka.html#_kafka_streams_binder">Apache Kafka Streams Binder</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>Spring Cloud Stream Samples repository</p>
|
||||
<p>Spring Cloud Stream binder reference for Apache Kafka Streams</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -157,7 +160,15 @@ $(addBlockSwitches);
|
||||
<a href="binders.html#binders">Additional Binders</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>More Binders implementations</p>
|
||||
<p>A collection of Partner maintained binder implementations for Spring Cloud Stream (e.g., Azure Event Hubs, Google PubSub, Solace PubSub+)</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="hdlist1">
|
||||
<a href="https://github.com/spring-cloud/spring-cloud-stream-samples/">Spring Cloud Stream Samples</a>
|
||||
</td>
|
||||
<td class="hdlist2">
|
||||
<p>A curated collection of repeatable Spring Cloud Stream samples to walk through the features</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
10
js/toc.js
10
js/toc.js
@@ -16,7 +16,13 @@ if (toctitle != null) {
|
||||
});
|
||||
if (!path.endsWith("index.html") && !path.endsWith("/")) {
|
||||
var link = document.createElement("a");
|
||||
link.setAttribute("href", "index.html");
|
||||
if (document.getElementById('index-link')) {
|
||||
indexLinkElement = document.querySelector('#index-link > p > a');
|
||||
linkHref = indexLinkElement.getAttribute("href");
|
||||
link.setAttribute("href", linkHref);
|
||||
} else {
|
||||
link.setAttribute("href", "index.html");
|
||||
}
|
||||
link.innerHTML = "<span><i class=\"fa fa-chevron-left\" aria-hidden=\"true\"></i></span> Back to index";
|
||||
var block = document.createElement("div");
|
||||
block.setAttribute('class', 'back-action');
|
||||
@@ -104,4 +110,4 @@ var headerHtml = '<div id="header-spring">\n' +
|
||||
|
||||
var header = document.createElement("div");
|
||||
header.innerHTML = headerHtml;
|
||||
document.body.insertBefore(header, document.body.firstChild);
|
||||
document.body.insertBefore(header, document.body.firstChild);
|
||||
|
||||
Reference in New Issue
Block a user