You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2016/07/11 14:55:22 UTC

camel git commit: Added camel context docs to Gitbook

Repository: camel
Updated Branches:
  refs/heads/master 7c44110c6 -> f41e20eaf


Added camel context docs to Gitbook


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f41e20ea
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f41e20ea
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f41e20ea

Branch: refs/heads/master
Commit: f41e20eafe353ca7c2b074644ff99d30f2b8a891
Parents: 7c44110
Author: Andrea Cosentino <an...@gmail.com>
Authored: Mon Jul 11 16:53:07 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Mon Jul 11 16:53:07 2016 +0200

----------------------------------------------------------------------
 docs/user-manual/en/SUMMARY.md        |  2 +-
 docs/user-manual/en/camelcontext.adoc | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f41e20ea/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index 89600d2..85f0056 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -12,6 +12,7 @@
     * [BAM](bam.adoc)
     * [Batch Consumer](batch-consumer.adoc)
     * [BrowsableEndpoint](browsable-endpoint.adoc)
+    * [CamelContext](camelcontext.adoc)
     * [Dozer Type Conversion](dozer-type-conversion.adoc)
     * [Endpoint](endpoint.adoc)
     * [Exchange](exchange.adoc)
@@ -23,7 +24,6 @@
 
 <!--
     * [AOP](aop.adoc)
-    * [CamelContext](camelcontext.adoc)
     * [Camel-Core](camel-core.adoc)
     * [Debugger](debugger.adoc)
     * [Delay Interceptor](delay-interceptor.adoc)

http://git-wip-us.apache.org/repos/asf/camel/blob/f41e20ea/docs/user-manual/en/camelcontext.adoc
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/camelcontext.adoc b/docs/user-manual/en/camelcontext.adoc
new file mode 100644
index 0000000..cfcddc1
--- /dev/null
+++ b/docs/user-manual/en/camelcontext.adoc
@@ -0,0 +1,22 @@
+[[CamelContext-CamelContext]]
+CamelContext
+~~~~~~~~~~~~
+
+The
+http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/CamelContext.html[CamelContext]
+represents a single Camel routing rulebase. You use the CamelContext in
+a similar way to the link:spring.html[Spring]
+http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/context/ApplicationContext.html[ApplicationContext].
+
+See link:lifecycle.html[Lifecycle] to understand the overall lifecycle
+of the CamelContext.
+
+[[CamelContext-SeeAlso]]
+See Also
+^^^^^^^^
+
+* link:routebuilder.html[RouteBuilder]
+* link:routes.html[Routes]
+* link:lifecycle.html[Lifecycle]
+* link:architecture.html[Architecture]
+