You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2024/01/03 12:01:14 UTC

(camel) branch main updated: Update docs with more links to variables.

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 6a77266b1ac Update docs with more links to variables.
6a77266b1ac is described below

commit 6a77266b1ac8c06a97e63faf65f89bd2ff37a20a
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jan 3 13:01:00 2024 +0100

    Update docs with more links to variables.
---
 docs/main/modules/working-with-camel-core/pages/index.adoc | 11 +++++++++++
 docs/user-manual/modules/ROOT/nav.adoc                     |  1 +
 docs/user-manual/modules/ROOT/pages/index.adoc             |  1 +
 3 files changed, 13 insertions(+)

diff --git a/docs/main/modules/working-with-camel-core/pages/index.adoc b/docs/main/modules/working-with-camel-core/pages/index.adoc
index 4ce6e00653a..5d7409a0bd0 100644
--- a/docs/main/modules/working-with-camel-core/pages/index.adoc
+++ b/docs/main/modules/working-with-camel-core/pages/index.adoc
@@ -1,5 +1,12 @@
 = Working with Camel Core
 
+== Context
+
+The xref:manual::camelcontext.adoc[Camel Context] is the hearth of Apache Camel, which holds everything together.
+
+If you are not familiar with Apache Camel, then we recommend reading the xref:manual::camelcontext.adoc[Camel Context] first
+before coming back here.
+
 == Routes
 
 In Apache Camel, a _route_ is a set of processing steps that are applied to a message as it travels from a source to a destination. A route typically consists of a series of processing steps that are connected in a linear sequence.
@@ -10,6 +17,9 @@ In other words, a Camel _route_ is where the integration flow is defined. For ex
 
 If you have basic knowledge about _routes_, you can use the following guides to learn how to write them in different languages, handle errors, and customize them.
 
+* Content
+** xref:manual::camelcontext.adoc[Camel Context]: the hearth of Apache Camel
+
 * Routes (Basic + DSL)
 ** xref:manual::java-dsl.adoc[Java DSL]: the default language to write _routes_.
 ** xref:manual::dsl.adoc[DSL overview]: writing routes in other languages (XML, YAML, etc).
@@ -30,6 +40,7 @@ If you have basic knowledge about _routes_, you can use the following guides to
 ** xref:manual::Endpoint-dsl.adoc[Endpoint DSL]
 ** xref:manual::route-template.adoc[Route Template]
 ** xref:manual::using-propertyplaceholder.adoc[Using Property Placeholder]
+** xref:manual::variables.adoc[Using Variables]
 
 == Components
 
diff --git a/docs/user-manual/modules/ROOT/nav.adoc b/docs/user-manual/modules/ROOT/nav.adoc
index b7c39a2e0ec..d83bce43922 100644
--- a/docs/user-manual/modules/ROOT/nav.adoc
+++ b/docs/user-manual/modules/ROOT/nav.adoc
@@ -19,6 +19,7 @@
 ** xref:graceful-shutdown.adoc[Graceful Shutdown]
 ** xref:error-handler.adoc[Error handler]
 ** xref:using-propertyplaceholder.adoc[How to use Camel property placeholders]
+** xref:variables.adoc[How to use Variables]
 ** xref:testing.adoc[Testing]
 *** xref:test-infra.adoc[Test Infra]
 *** xref:notify-builder.adoc[NotifyBuilder]
diff --git a/docs/user-manual/modules/ROOT/pages/index.adoc b/docs/user-manual/modules/ROOT/pages/index.adoc
index b8cc36d6436..99c372f0ac0 100644
--- a/docs/user-manual/modules/ROOT/pages/index.adoc
+++ b/docs/user-manual/modules/ROOT/pages/index.adoc
@@ -53,6 +53,7 @@ For a deeper and better understanding of Apache Camel, an xref:faq:what-is-camel
 * xref:graceful-shutdown.adoc[Graceful Shutdown]
 * xref:error-handler.adoc[Error handler]
 * xref:using-propertyplaceholder.adoc[How to use Camel property placeholders]
+* xref:variables.adoc[How to use Variables]
 * xref:examples.adoc[Examples]
 * xref:testing.adoc[Testing]
 * xref:camel-maven-plugin.adoc[Camel Maven Plugin] for running Camel from a Maven goal