This is an automated email from the ASF dual-hosted git repository. djencks pushed a commit to branch issue-14698-rearrange-adocs in repository https://gitbox.apache.org/repos/asf/camel.git
commit 4ab82aa05fb7921e3b65654a64ce3f5a07ed8bb3 Author: David Jencks <[email protected]> AuthorDate: Thu Mar 12 13:09:38 2020 -0700 fix component eip xrefs --- components/camel-bean/src/main/docs/bean-language.adoc | 2 +- components/camel-disruptor/src/main/docs/disruptor-component.adoc | 2 +- .../src/main/docs/elasticsearch-rest-component.adoc | 2 +- components/camel-groovy/src/main/docs/groovy-language.adoc | 2 +- components/camel-jms/src/main/docs/jms-component.adoc | 2 +- components/camel-mvel/src/main/docs/mvel-language.adoc | 2 +- components/camel-ognl/src/main/docs/ognl-language.adoc | 2 +- components/camel-saxon/src/main/docs/xquery-component.adoc | 2 +- components/camel-saxon/src/main/docs/xquery-language.adoc | 2 +- components/camel-spring/src/main/docs/spel-language.adoc | 4 ++-- components/camel-spring/src/main/docs/spring-event-component.adoc | 2 +- components/camel-xpath/src/main/docs/xpath-language.adoc | 2 +- docs/components/modules/ROOT/pages/bean-language.adoc | 2 +- docs/components/modules/ROOT/pages/disruptor-component.adoc | 2 +- docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc | 2 +- docs/components/modules/ROOT/pages/groovy-language.adoc | 2 +- docs/components/modules/ROOT/pages/jms-component.adoc | 2 +- docs/components/modules/ROOT/pages/mvel-language.adoc | 2 +- docs/components/modules/ROOT/pages/ognl-language.adoc | 2 +- docs/components/modules/ROOT/pages/spel-language.adoc | 4 ++-- docs/components/modules/ROOT/pages/spring-event-component.adoc | 2 +- docs/components/modules/ROOT/pages/xpath-language.adoc | 2 +- docs/components/modules/ROOT/pages/xquery-component.adoc | 2 +- docs/components/modules/ROOT/pages/xquery-language.adoc | 2 +- 24 files changed, 26 insertions(+), 26 deletions(-) diff --git a/components/camel-bean/src/main/docs/bean-language.adoc b/components/camel-bean/src/main/docs/bean-language.adoc index 3dc250a..27ce338 100644 --- a/components/camel-bean/src/main/docs/bean-language.adoc +++ b/components/camel-bean/src/main/docs/bean-language.adoc @@ -177,7 +177,7 @@ We have some test cases you can look at if it'll help is a JUnit test case showing the Java xref:manual::dsl.adoc[DSL] use of the bean expression being used in a filter * https://github.com/apache/camel/blob/master/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/aggregator.xml[aggregator.xml] -is a Spring XML test case for the xref:manual::aggregate-eip.adoc[Aggregator] which +is a Spring XML test case for the xref:manual:eips:aggregate-eip.adoc[Aggregator] which uses a bean method call to test for the completion of the aggregation. include::camel-spring-boot::page$bean-starter.adoc[] diff --git a/components/camel-disruptor/src/main/docs/disruptor-component.adoc b/components/camel-disruptor/src/main/docs/disruptor-component.adoc index c93540c..02a9e23 100644 --- a/components/camel-disruptor/src/main/docs/disruptor-component.adoc +++ b/components/camel-disruptor/src/main/docs/disruptor-component.adoc @@ -196,7 +196,7 @@ without incurring significant latency spikes. == Use of Request Reply -The Disruptor component supports using xref:manual::requestReply-eip.adoc[Request +The Disruptor component supports using xref:manual:eips:requestReply-eip.adoc[Request Reply], where the caller will wait for the Async route to complete. For instance: diff --git a/components/camel-elasticsearch-rest/src/main/docs/elasticsearch-rest-component.adoc b/components/camel-elasticsearch-rest/src/main/docs/elasticsearch-rest-component.adoc index e2aabca..fad0f99 100644 --- a/components/camel-elasticsearch-rest/src/main/docs/elasticsearch-rest-component.adoc +++ b/components/camel-elasticsearch-rest/src/main/docs/elasticsearch-rest-component.adoc @@ -275,7 +275,7 @@ try (ElasticsearchScrollRequestIterator response = template.requestBody("direct: } ---- -xref:manual::split-eip.adoc[Split EIP] can also be used. +xref:manual:eips:split-eip.adoc[Split EIP] can also be used. [source,java] ---- diff --git a/components/camel-groovy/src/main/docs/groovy-language.adoc b/components/camel-groovy/src/main/docs/groovy-language.adoc index f0cd1c7..edd06e5 100644 --- a/components/camel-groovy/src/main/docs/groovy-language.adoc +++ b/components/camel-groovy/src/main/docs/groovy-language.adoc @@ -17,7 +17,7 @@ To use a Groovy expression use the following Java code --------------------------------------- For example you could use the *groovy* function to create an -Predicate in a xref:manual::filter-eip.adoc[Message Filter] or as an Expression for a +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List == Groovy Options diff --git a/components/camel-jms/src/main/docs/jms-component.adoc b/components/camel-jms/src/main/docs/jms-component.adoc index 2a122b2..905c9cb 100644 --- a/components/camel-jms/src/main/docs/jms-component.adoc +++ b/components/camel-jms/src/main/docs/jms-component.adoc @@ -1207,7 +1207,7 @@ Transactions and [Request Reply] over JMS When using Request Reply over JMS you cannot use a single transaction; JMS will not send any messages until a commit is performed, so the server side won't receive anything at all until the -transaction commits. Therefore to use xref:manual::requestReply-eip.adoc[Request +transaction commits. Therefore to use xref:manual:eips:requestReply-eip.adoc[Request Reply] you must commit a transaction after sending the request and then use a separate transaction for receiving the response. diff --git a/components/camel-mvel/src/main/docs/mvel-language.adoc b/components/camel-mvel/src/main/docs/mvel-language.adoc index fff5070..3a4d44a 100644 --- a/components/camel-mvel/src/main/docs/mvel-language.adoc +++ b/components/camel-mvel/src/main/docs/mvel-language.adoc @@ -67,7 +67,7 @@ The MVEL language supports 1 options, which are listed below. == Samples -For example you could use Mvel inside a xref:manual::filter-eip.adoc[Message +For example you could use Mvel inside a xref:manual:eips:filter-eip.adoc[Message Filter] in XML [source,java] diff --git a/components/camel-ognl/src/main/docs/ognl-language.adoc b/components/camel-ognl/src/main/docs/ognl-language.adoc index fa4427a..9c78d45 100644 --- a/components/camel-ognl/src/main/docs/ognl-language.adoc +++ b/components/camel-ognl/src/main/docs/ognl-language.adoc @@ -71,7 +71,7 @@ The OGNL language supports 1 options, which are listed below. == Samples -For example you could use OGNL inside a xref:manual::filter-eip.adoc[Message +For example you could use OGNL inside a xref:manual:eips:filter-eip.adoc[Message Filter] in XML [source,java] diff --git a/components/camel-saxon/src/main/docs/xquery-component.adoc b/components/camel-saxon/src/main/docs/xquery-component.adoc index 7dbe8a7..8579381 100644 --- a/components/camel-saxon/src/main/docs/xquery-component.adoc +++ b/components/camel-saxon/src/main/docs/xquery-component.adoc @@ -11,7 +11,7 @@ Camel supports http://www.w3.org/TR/xquery/[XQuery] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XQuery to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List. == Options diff --git a/components/camel-saxon/src/main/docs/xquery-language.adoc b/components/camel-saxon/src/main/docs/xquery-language.adoc index 6204943..30a7e7d 100644 --- a/components/camel-saxon/src/main/docs/xquery-language.adoc +++ b/components/camel-saxon/src/main/docs/xquery-language.adoc @@ -7,7 +7,7 @@ Camel supports http://www.w3.org/TR/xquery/[XQuery] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XQuery to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List. diff --git a/components/camel-spring/src/main/docs/spel-language.adoc b/components/camel-spring/src/main/docs/spel-language.adoc index e0791c3..c78c0e9 100644 --- a/components/camel-spring/src/main/docs/spel-language.adoc +++ b/components/camel-spring/src/main/docs/spel-language.adoc @@ -118,8 +118,8 @@ can invoke the "bar" method on this bean like this: === SpEL in enterprise integration patterns -You can use SpEL as an expression for xref:manual::recipientList-eip.adoc[Recipient -List] or as a predicate inside a xref:manual::filter-eip.adoc[Message +You can use SpEL as an expression for xref:manual:eips:recipientList-eip.adoc[Recipient +List] or as a predicate inside a xref:manual:eips:filter-eip.adoc[Message Filter]: [source,xml] diff --git a/components/camel-spring/src/main/docs/spring-event-component.adoc b/components/camel-spring/src/main/docs/spring-event-component.adoc index fe00110..b44f1ca 100644 --- a/components/camel-spring/src/main/docs/spring-event-component.adoc +++ b/components/camel-spring/src/main/docs/spring-event-component.adoc @@ -12,7 +12,7 @@ The Spring Event component provides access to the Spring `ApplicationEvent` objects to a Spring `ApplicationContext` or to consume them. You can then use xref:manual::enterprise-integration-patterns.adoc[Enterprise Integration -Patterns] to process them such as xref:manual::filter-eip.adoc[Message +Patterns] to process them such as xref:manual:eips:filter-eip.adoc[Message Filter]. == URI format diff --git a/components/camel-xpath/src/main/docs/xpath-language.adoc b/components/camel-xpath/src/main/docs/xpath-language.adoc index 5677f5c..7e44fbd 100644 --- a/components/camel-xpath/src/main/docs/xpath-language.adoc +++ b/components/camel-xpath/src/main/docs/xpath-language.adoc @@ -7,7 +7,7 @@ Camel supports http://www.w3.org/TR/xpath[XPath] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XPath to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List. diff --git a/docs/components/modules/ROOT/pages/bean-language.adoc b/docs/components/modules/ROOT/pages/bean-language.adoc index 5a78c35..2866c5e 100644 --- a/docs/components/modules/ROOT/pages/bean-language.adoc +++ b/docs/components/modules/ROOT/pages/bean-language.adoc @@ -178,7 +178,7 @@ We have some test cases you can look at if it'll help is a JUnit test case showing the Java xref:manual::dsl.adoc[DSL] use of the bean expression being used in a filter * https://github.com/apache/camel/blob/master/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/aggregator.xml[aggregator.xml] -is a Spring XML test case for the xref:manual::aggregate-eip.adoc[Aggregator] which +is a Spring XML test case for the xref:manual:eips:aggregate-eip.adoc[Aggregator] which uses a bean method call to test for the completion of the aggregation. include::camel-spring-boot::page$bean-starter.adoc[] diff --git a/docs/components/modules/ROOT/pages/disruptor-component.adoc b/docs/components/modules/ROOT/pages/disruptor-component.adoc index 88c6ea4..398f433 100644 --- a/docs/components/modules/ROOT/pages/disruptor-component.adoc +++ b/docs/components/modules/ROOT/pages/disruptor-component.adoc @@ -197,7 +197,7 @@ without incurring significant latency spikes. == Use of Request Reply -The Disruptor component supports using xref:manual::requestReply-eip.adoc[Request +The Disruptor component supports using xref:manual:eips:requestReply-eip.adoc[Request Reply], where the caller will wait for the Async route to complete. For instance: diff --git a/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc b/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc index b670a66..264d9b4 100644 --- a/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc +++ b/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc @@ -276,7 +276,7 @@ try (ElasticsearchScrollRequestIterator response = template.requestBody("direct: } ---- -xref:manual::split-eip.adoc[Split EIP] can also be used. +xref:manual:eips:split-eip.adoc[Split EIP] can also be used. [source,java] ---- diff --git a/docs/components/modules/ROOT/pages/groovy-language.adoc b/docs/components/modules/ROOT/pages/groovy-language.adoc index 11cefac..7e177d4 100644 --- a/docs/components/modules/ROOT/pages/groovy-language.adoc +++ b/docs/components/modules/ROOT/pages/groovy-language.adoc @@ -18,7 +18,7 @@ To use a Groovy expression use the following Java code --------------------------------------- For example you could use the *groovy* function to create an -Predicate in a xref:manual::filter-eip.adoc[Message Filter] or as an Expression for a +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List == Groovy Options diff --git a/docs/components/modules/ROOT/pages/jms-component.adoc b/docs/components/modules/ROOT/pages/jms-component.adoc index bfce109..8128d22 100644 --- a/docs/components/modules/ROOT/pages/jms-component.adoc +++ b/docs/components/modules/ROOT/pages/jms-component.adoc @@ -1208,7 +1208,7 @@ Transactions and [Request Reply] over JMS When using Request Reply over JMS you cannot use a single transaction; JMS will not send any messages until a commit is performed, so the server side won't receive anything at all until the -transaction commits. Therefore to use xref:manual::requestReply-eip.adoc[Request +transaction commits. Therefore to use xref:manual:eips:requestReply-eip.adoc[Request Reply] you must commit a transaction after sending the request and then use a separate transaction for receiving the response. diff --git a/docs/components/modules/ROOT/pages/mvel-language.adoc b/docs/components/modules/ROOT/pages/mvel-language.adoc index c635c8f..642668e 100644 --- a/docs/components/modules/ROOT/pages/mvel-language.adoc +++ b/docs/components/modules/ROOT/pages/mvel-language.adoc @@ -68,7 +68,7 @@ The MVEL language supports 1 options, which are listed below. == Samples -For example you could use Mvel inside a xref:manual::filter-eip.adoc[Message +For example you could use Mvel inside a xref:manual:eips:filter-eip.adoc[Message Filter] in XML [source,java] diff --git a/docs/components/modules/ROOT/pages/ognl-language.adoc b/docs/components/modules/ROOT/pages/ognl-language.adoc index b968f84..30d9ba7 100644 --- a/docs/components/modules/ROOT/pages/ognl-language.adoc +++ b/docs/components/modules/ROOT/pages/ognl-language.adoc @@ -72,7 +72,7 @@ The OGNL language supports 1 options, which are listed below. == Samples -For example you could use OGNL inside a xref:manual::filter-eip.adoc[Message +For example you could use OGNL inside a xref:manual:eips:filter-eip.adoc[Message Filter] in XML [source,java] diff --git a/docs/components/modules/ROOT/pages/spel-language.adoc b/docs/components/modules/ROOT/pages/spel-language.adoc index f6c6268..f677b61 100644 --- a/docs/components/modules/ROOT/pages/spel-language.adoc +++ b/docs/components/modules/ROOT/pages/spel-language.adoc @@ -119,8 +119,8 @@ can invoke the "bar" method on this bean like this: === SpEL in enterprise integration patterns -You can use SpEL as an expression for xref:manual::recipientList-eip.adoc[Recipient -List] or as a predicate inside a xref:manual::filter-eip.adoc[Message +You can use SpEL as an expression for xref:manual:eips:recipientList-eip.adoc[Recipient +List] or as a predicate inside a xref:manual:eips:filter-eip.adoc[Message Filter]: [source,xml] diff --git a/docs/components/modules/ROOT/pages/spring-event-component.adoc b/docs/components/modules/ROOT/pages/spring-event-component.adoc index 774afc7..6e5fead 100644 --- a/docs/components/modules/ROOT/pages/spring-event-component.adoc +++ b/docs/components/modules/ROOT/pages/spring-event-component.adoc @@ -13,7 +13,7 @@ The Spring Event component provides access to the Spring `ApplicationEvent` objects to a Spring `ApplicationContext` or to consume them. You can then use xref:manual::enterprise-integration-patterns.adoc[Enterprise Integration -Patterns] to process them such as xref:manual::filter-eip.adoc[Message +Patterns] to process them such as xref:manual:eips:filter-eip.adoc[Message Filter]. == URI format diff --git a/docs/components/modules/ROOT/pages/xpath-language.adoc b/docs/components/modules/ROOT/pages/xpath-language.adoc index bc06df8..830468c 100644 --- a/docs/components/modules/ROOT/pages/xpath-language.adoc +++ b/docs/components/modules/ROOT/pages/xpath-language.adoc @@ -8,7 +8,7 @@ Camel supports http://www.w3.org/TR/xpath[XPath] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XPath to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List. diff --git a/docs/components/modules/ROOT/pages/xquery-component.adoc b/docs/components/modules/ROOT/pages/xquery-component.adoc index 03ce442..cb4a8e9 100644 --- a/docs/components/modules/ROOT/pages/xquery-component.adoc +++ b/docs/components/modules/ROOT/pages/xquery-component.adoc @@ -12,7 +12,7 @@ Camel supports http://www.w3.org/TR/xquery/[XQuery] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XQuery to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List. == Options diff --git a/docs/components/modules/ROOT/pages/xquery-language.adoc b/docs/components/modules/ROOT/pages/xquery-language.adoc index ee8505b..fd41773 100644 --- a/docs/components/modules/ROOT/pages/xquery-language.adoc +++ b/docs/components/modules/ROOT/pages/xquery-language.adoc @@ -8,7 +8,7 @@ Camel supports http://www.w3.org/TR/xquery/[XQuery] to allow an Expression or Predicate to be used in the DSL or xref:manual::xml-configuration.adoc[Xml Configuration]. For example you could use XQuery to create an -Predicate in a xref:manual::filter-eip.adoc[Message +Predicate in a xref:manual:eips:filter-eip.adoc[Message Filter] or as an Expression for a Recipient List.
